* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

/* ================== TEMAS ================== */
body.dark {
  background: #0b0f14;
  color: #ffffff;
}

body.light {
  background: #f5f5f5;
  color: #000000;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ================== HEADER ================== */
.header {
  background: #000;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

body.light .header {
  background: #ffffff;
}

.header-flex {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
}


.company-name {
  font-weight: 600;
}

.nav {
  display: flex;
  gap: 15px;
}

.nav-btn {
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  background: #111;
  color: #fff;
  transition: 0.3s;
}

body.light .nav-btn {
  background: #e0e0e0;
  color: #000;
}

.nav-btn:hover {
  background: #00bfff;
  color: #000;
  box-shadow: 0 0 15px #00bfff;
}

.destaque {
  background: #00bfff;
  color: #000;
}

/* BOTÃO TEMA */
.theme-btn {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: inherit;
}

/* ================== SLIDER ================== */
.slider {
  margin-top: 90px;
  height: 80vh;
  position: relative;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s ease, transform 1s ease;
  background-size: cover;
  background-position: center;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

.slide-content {
  height: 100%;
  background: rgba(0,0,0,0.55);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* TEXTO DO SLIDE */
.slide-content h1 {
  color: #eaf6ff; /* azul bem claro, não é branco puro */
}

.slide-content p {
  color: #dbeeff;
}


/* BOTÕES */
.btn {
  padding: 14px 28px;
  background: #00bfff;
  color: #000;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  box-shadow: 0 0 20px #00bfff;
  transform: translateY(-2px);
}

/* ================== GALERIA ================== */
.gallery {
  padding: 80px 0;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 20px;
  margin-top: 30px;
}

.gallery-item img {
  width: 100%;
  border-radius: 14px;
  transition: 0.3s;
}

.gallery-item img:hover {
  box-shadow: 0 0 20px #00bfff;
}

/* ================== SOBRE ================== */
.about {
  padding: 90px 0;
  background: #ffffff;
}

body.dark .about {
  background: #0b0f14;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
  gap: 60px;
}

.about-text p {
  line-height: 1.7;
  color: #555;
}

body.dark .about-text p {
  color: #cccccc;
}

.why-cards {
  display: grid;
  gap: 15px;
}

.why-card {
  background: #f5f5f7;
  padding: 18px;
  border-radius: 10px;
  transition: 0.3s;
}

body.dark .why-card {
  background: #111;
}

.why-card:hover {
  box-shadow: 0 0 15px rgba(0,113,227,0.4);
  transform: translateY(-4px);
}

/* ================== AVALIAÇÕES ================== */
.reviews {
  padding: 90px 0;
}

.reviews-title {
  text-align: center;
  font-size: 26px;
  margin-bottom: 50px;
}

.reviews-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

.reviews-carousel {
  overflow: hidden;
  width: 100%;
}

.reviews-track {
  display: flex;
  gap: 25px;
  transition: transform 0.6s ease;
}

.review-card {
  min-width: 320px;
  background: #ffffff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

body.dark .review-card {
  background: #111;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-info strong {
  font-size: 14px;
}

.review-info span {
  font-size: 12px;
  color: #777;
}

body.dark .review-info span {
  color: #aaa;
}

.google-icon {
  width: 18px;
  margin-left: auto;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4285f4, #34a853);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.stars {
  color: #fbbc04;
  margin: 10px 0;
}

.review-card p {
  font-size: 14px;
  line-height: 1.5;
  color: #333;
}

body.dark .review-card p {
  color: #ddd;
}

/* SETAS */
.arrow {
  background: #ffffff;
  border: none;
  font-size: 32px;
  cursor: pointer;
  padding: 5px 12px;
  border-radius: 50%;
}

body.dark .arrow {
  background: #111;
  color: #fff;
}

/* ================== FAQ ================== */
/* FAQ */
.faq {
  padding: 90px 0;
  background: #f5f5f7;
}

.faq-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 50px;
  font-weight: 700;
}

.faq-item {
  max-width: 900px;
  margin: 0 auto 15px;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question span {
  font-size: 22px;
  transition: transform 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: #555;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 15px 20px 20px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

/* DARK MODE */
body.dark .faq {
  background: #0b0f14;
}

body.dark .faq-item {
  background: #111;
  color: #fff;
}

body.dark .faq-answer {
  color: #ccc;
}


/* ================== CONTATO ================== */
.contact {
  padding: 100px 0;
  background: linear-gradient(135deg, #0b5cff, #003a8f);
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-form {
  background: #ffffff;
  color: #333;
  padding: 40px;
  border-radius: 16px;
}

body.dark .contact-form {
  background: #111;
  color: #fff;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

body.dark .contact-form input,
body.dark .contact-form textarea {
  background: #1a1a1a;
  border: 1px solid #333;
  color: #fff;
}
.contact-form button {
  width: 100%;
  padding: 14px;
  margin-top: 20px; /* 👈 AFASTA DO TEXTO */
  border: none;
  border-radius: 30px;
  background: #0b5cff;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

/* ================== WHATS FLUTUANTE ================== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: #fff;
  padding: 15px;
  border-radius: 50%;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 0 20px #25d366;
}

/* ================== MOBILE ================== */
@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .logo-img {
    width: 220px;
  }

  .slide-content h1 {
    font-size: 28px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* MARCAS PARCEIRAS */
.brands {
  padding: 80px 0;
  background: #f5f5f7;
}

.brands-title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 50px;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 35px;
  align-items: center;
}

.brand-card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.brand-card img {
  max-width: 100%;
  max-height: 90px;
  filter: grayscale(100%);
  transition: 0.3s;
}

.brand-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(0,113,227,0.4);
}

.brand-card:hover img {
  filter: grayscale(0%);
}

/* DARK MODE */
body.dark .brands {
  background: #0b0f14;
}

body.dark .brand-card {
  background: #111;
}

body.dark .brands-title {
  background: #111;
  color: #fff;
}


/* FAQ - CORES POR TEMA */
.faq-question {
  color: #222;
}

body.dark .faq-question {
  color: #fff;
}

.faq-answer {
  color: #555;
}

body.dark .faq-answer {
  color: #ccc;
}

/* TEXTO DO CONTATO */
.contact-text {
  margin-bottom: 35px; /* ESPAÇO REAL ENTRE TEXTO E BOTÃO */
  line-height: 1.6;
}

/* BOTÃO WHATSAPP CONTATO */
.whatsapp-contact-btn {
  display: inline-block;
  margin-top: 0; /* evita colapso */
  background: #00e5ff;
  color: #003a8f;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 16px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

/* CONTATO PREMIUM */
.contact {
  padding: 140px 0;
  background: linear-gradient(135deg, #0b5cff, #002f6c);
  color: #fff;
}

.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LADO ESQUERDO */
.contact-left h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.contact-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 20px;
}

.contact-text {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 35px;
  max-width: 480px;
}

/* BOTÃO WHATSAPP */
.whatsapp-contact-btn {
  display: inline-block;
  background: #00e5ff;
  color: #003a8f;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-contact-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.35);
}

/* LADO DIREITO */
.contact-right h3 {
  font-size: 24px;
  margin-bottom: 25px;
}

/* FORMULÁRIO */
.contact-form {
  background: #fff;
  color: #333;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 15px;
}

.contact-form textarea {
  min-height: 120px;
  resize: none;
}

.contact-form button {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 30px;
  background: #0b5cff;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #003a8f;
}

/* DARK MODE */
body.dark .contact-form {
  background: #111;
  color: #fff;
}

body.dark .contact-form input,
body.dark .contact-form textarea {
  background: #1a1a1a;
  color: #fff;
  border: 1px solid #333;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .contact-box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-text {
    margin-left: auto;
    margin-right: auto;
  }
}
