body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
}

/* ================= HEADER ================= */
.header-wrapper {
  background-color: #13436b;
  padding: 12px 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 999;
}
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.logo img {
  height: auto;
  max-width: 200px;
}
.buttons_planos {
  display: flex;
  gap: 16px;
  justify-content: center;
}
.buttons_planos a {
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  display: inline-block;
  white-space: nowrap;
  box-shadow: 5px 5px 10px rgba(0,0,0,0.5);
}
.buttons {
  display: flex;
  gap: 16px;
}
.buttons a {
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  display: inline-block;
  white-space: nowrap;
  box-shadow: 5px 5px 10px rgba(0,0,0,0.5);
}
.btn-entrar {
  background-color: #ffffff;
  color: #13436b;
  border: 1px solid #ffb446;
}
.btn-testar {
  background-color: #F5485D;
  color: white;
  border: 1px solid #F5485D;
}
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 12px;
  }
  .logo {
    display: none;
  }
  .buttons {
    justify-content: center;
  }
}

/* ================= HERO ================= */
.hero {
  background-color: #13436b;
  color: white;
  text-align: center;
  padding: 20px 20px;
}
.hero h1 {
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 36px;
}
.hero h1 .highlight {
  color: #F5485D;
}
.hero .subtext {
  font-size: 18px;
  margin-bottom: 30px;
}
.video-wrapper {
  max-width: 800px;
  margin: 0 auto 30px;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
  border-radius: 10px;
  overflow: hidden;
}
.video-wrapper video {
  width: 100%;
  height: auto;
}
.hero-btn {
  background-color: #F5485D;
  color: white;
  padding: 15px 30px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  box-shadow: 5px 5px 10px rgba(0,0,0,0.5);
}
.hero .banner {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.hero-banner-img {
  max-width: 800px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
@media (max-width: 768px) {
  .hero-banner-img {
    max-width: 90%;
  }
}

/* ================= SECTION PILOTO ================= */
.section-piloto {
  background-color: #f6f6f6;
  padding: 20px 20px 80px;
  position: relative;
  color: #000;
}
.section-piloto .content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}
.section-piloto h2 {
  font-size: 32px;
  line-height: 1.4;
  margin-bottom: 60px;
}
.section-piloto h2 span {
  color: #F5485D;
}
.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.card {
  background-color: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  padding: 20px;
  width: 100%;
  max-width: 360px;
  text-align: center;
  backdrop-filter: blur(4px);
}
.card img {
  height: 60px;
  margin-bottom: 15px;
}
.card h3 {
  margin-top: 0px;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.4;
}
.card p {
  font-size: 15px;
  line-height: 1.6;
}

/* ================= NOSSOS NÚMEROS ================= */
.nossos-numeros {
  background: #13436b;
  text-align: center;
  padding: 60px 20px;
}
.nossos-numeros h2 {
  font-size: 45px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 40px;
}
.nossos-numeros h2 span {
  color: #F5485D;
}
.numeros-container {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}
.numero-item {
  font-family: 'Montserrat', sans-serif;
  color: #fff;
}
.contador {
  font-size: 48px;
  font-weight: 600;
}
.numero-item p {
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .nossos-numeros h2 {
    font-size: 30px;
  }
  .contador {
    font-size: 36px;
  }
}

/* ================= MARCAS PARCEIRAS ================= */
.marcas-parceiras {
  background: #13436b;
  padding: 60px 20px;
  text-align: center;
}
.marcas-parceiras h2 {
  font-size: 45px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 30px;
}
.marcas-parceiras h2 span {
  color: #F5485D;
}
.carousel-wrapper {
  position: relative;
  max-width: 960px;
  height: 120px;
  margin: 0 auto;
  overflow: hidden;
}
.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.slide {
  flex: 0 0 25%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  padding: 0 10px;
  box-sizing: border-box;
}
.slide img {
  max-height: 60px;
  max-width: 100%;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}
.slide img:hover {
  filter: grayscale(0%);
}
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  z-index: 10;
}
.arrow.left { left: 0; }
.arrow.right { right: 0; }
@media (max-width: 600px) {
  .arrow { font-size: 30px; }
  .marcas-parceiras h2 { font-size: 28px; }
}

/* ================= PLANOS ================= */
.planos-fiel {
  background-color: #13436b;
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}
.planos-fiel h2 {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 40px;
  text-transform: uppercase;
}
.planos-fiel h2 span {
  color: #F5485D;
}
.planos-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.card {
  background-color: #fff;
  color: #333;
  border-radius: 15px;
  padding: 0 20px;
  width: 320px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.card h3 {
  color: #39187B;
  font-size: 22px;
  margin-bottom: 10px;
}
.card .preco {
  font-size: 22px;
  font-weight: bold;
  color: #39187B;
  margin-bottom: 20px;
}
.card ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: 20px;
}
.card li {
  margin-bottom: 10px;
  font-size: 15px;
}
.card li i {
  color: #F5485D;
  margin-right: 8px;
}
.card .btn {
  background-color: #F5485D;
  color: white;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
}
.card .icon {
  font-size: 36px;
  color: #F5485D;
  margin-bottom: 10px;
}
.card .destaque-icon {
  font-size: 40px;
}
.card.destaque {
  border: 3px solid #F5485D;
}
.card .selo {
  position: absolute;
  top: -10px;
  background-color: #F5485D;
  color: white;
  font-size: 12px;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 10px;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .planos-fiel h2 {
    font-size: 32px;
  }
  .card {
    width: 100%;
    max-width: 320px;
  }
}

/* ================= CLIENTES ================= */
.clientes-section {
  position: relative;
  background: #f6f6f6;
  padding: 70px 20px 100px;
  font-family: 'Montserrat', sans-serif;
  overflow: hidden;
}
.clientes-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(246, 246, 246, 0.88);
  z-index: 1;
}
.clientes-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.clientes-container h2 {
  font-size: 40px;
  font-weight: 800;
  color: #414141;
  margin-bottom: 40px;
}
.clientes-container h2 span {
  color: #F5485D;
}
.clientes-carousel {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
  will-change: transform;
}
.clientes-slide {
  flex: 0 0 80%;
  margin: 0 auto;
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.06);
}
.clientes-slide p {
  font-size: 18px;
  margin-bottom: 20px;
}
.clientes-slide img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 10px;
}
.clientes-slide h4 {
  color: #13436b;
  font-weight: 600;
  font-size: 16px;
}
.clientes-controls {
  margin-top: 20px;
}
.clientes-controls button {
  font-size: 36px;
  background: none;
  border: none;
  color: #13436b;
  cursor: pointer;
}
@media (min-width: 768px) {
  .clientes-slide { flex: 0 0 33.3333%; }
}

/* ================= FAQ ================= */
.faq {
  padding: 60px 20px;
  background-color: #ffffff;
  max-width: 900px;
  margin: 0 auto;
}
.faq h2 {
  font-size: 40px;
  font-weight: 900;
  font-family: 'Montserrat', sans-serif;
  color: #414141;
  text-align: left;
  margin-bottom: 40px;
}
.faq h2 span {
  color: #F5485D;
}
.faq-item {
  margin-bottom: 16px;
}
.faq-question {
  width: 100%;
  background-color: #ffffff;
  color: #13436b;
  border: 2px solid #13436b;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  padding: 14px 20px;
  font-size: 16px;
  text-align: left;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}
.faq-question:hover {
  background-color: #f0f0f0;
}
.faq-answer {
  display: none;
  padding: 12px 20px;
  background-color: #ffffff;
  border-left: 4px solid #F5485D;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  margin-top: 8px;
  border-radius: 0 0 8px 8px;
}
.faq-item.active .faq-answer {
  display: block;
}

/* ================= RODAPÉ ================= */
.rodape {
  background-color: #13436b;
  padding: 50px 20px;
  text-align: center;
}
.rodape-container {
  max-width: 1000px;
  margin: 0 auto;
}
.rodape img {
  width: 200px;
  margin-bottom: 20px;
}
.rodape p {
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 100;
  margin: 0 0 20px;
}
.redes-sociais a {
  color: #ffffff;
  font-size: 20px;
  margin: 0 10px;
  text-decoration: none;
  transition: color 0.3s;
}
.redes-sociais a:hover {
  color: #F5485D;
}

footer c {
  color: #fff;
}

/* ================= WHATSAPP FLOAT ================= */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  font-size: 36px;
  padding: 20px;
  border-radius: 50%;
  text-align: center;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}
.whatsapp-float:hover {
  background-color: #1ebe5d;
}

/* ================= ICON TOP (centralizado) ================= */
.icon-top {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

/* ================= AJUSTE DO TÍTULO LEMBRETE ZAP ================= */
.lembrete_zap h2 {
  font-size: 9px !important;  /* tamanho menor */
  font-weight: 700;
  color: #fff;
  text-align: center; /* opcional: centraliza */
  margin: 10px 0;
}

@media (max-width: 768px) {
  .lembrete_zap h2 {
    font-size: 10px !important; /* ainda menor no celular */
  }
}
