/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 26px;
  color: #333;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Poppins', sans-serif; font-weight: 700; }
p {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
}

#mobileMenu {
    display: none;
    background: #000000;
    padding: 20px 0;
    margin: 14px;
    border-radius: 7px;
}

/* ===========================
   BOTÕES
=========================== */
.btn-orange {
  display: inline-block;
  background: linear-gradient(135deg, #ee6747, #cb5568);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 1px;
  padding: 16px 36px;
  border-radius: 6px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.btn-orange:hover { opacity: 0.88; color: #fff; }

.btn-blue {
  display: inline-block;
  background: #1773b9;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 1px;
  padding: 16px 48px;
  border-radius: 6px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.btn-blue:hover { opacity: 0.88; color: #fff; }

.btn-dark {
  display: inline-block;
  background: #1a2e4a;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 1px;
  padding: 16px 48px;
  border-radius: 6px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.btn-dark:hover { opacity: 0.85; color: #fff; }



/* ===========================
   VARIÁVEIS
=========================== */
:root {
  --elastic-ease-out: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===========================
   BTN WRAP
=========================== */

.btn-wrap {
    display: inline-block;
    position: relative;
    text-decoration: none;
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 0;
    perspective: 800px;
    min-width: 280px;
}

.btn-front, .btn-back {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 17px;
    line-height: 28px;
    letter-spacing: 1px;
    padding: 22px 36px;
    border-radius: 6px;
    text-align: center;
    white-space: nowrap;
}

.btn-front {
    background: #ee6747;
    color: #fff;
    position: relative;
    z-index: 1;
    transform: rotateX(0deg) translateY(0px);
    transform-origin: center bottom;
    transition: transform 0.45s var(--elastic-ease-out),
              opacity 0.25s ease;
    opacity: 1;
    text-transform: uppercase;
}

.btn-back {
    background: #111;
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transform: rotateX(-90deg) translateY(50%);
    transform-origin: center bottom;
    transition: transform 0.45s var(--elastic-ease-out),
              opacity 0.25s ease;
    opacity: 0;
    z-index: 0;
    text-transform: uppercase;    
}


.depoimentos-conteudo a.btn-wrap {
    width: 310px;
}

.nav-links .btn-wrap {
    min-width: 220px;
}

@media (hover: hover) and (pointer: fine) {
  .btn-wrap:is(:hover, :focus-visible) .btn-front {
    transform: rotateX(90deg) translateY(-50%);
    transform-origin: center top;
    opacity: 0;
  }

  .btn-wrap:is(:hover, :focus-visible) .btn-back {
    transform: rotateX(0deg) translateY(0%);
    opacity: 1;
  }
}

/* Variação azul */
.btn-wrap.btn-wrap-blue .btn-front {
  background: #1773b9;
}

/* Variação dark */
.btn-wrap.btn-wrap-dark .btn-front {
  background: #1a2e4a;
}

/* Variação largura total */
.btn-wrap.btn-wrap-full {
  display: block;
  width: 100%;
}

.btn-wrap.btn-wrap-full .btn-front,
.btn-wrap.btn-wrap-full .btn-back {
  width: 100%;
}



/* ===========================
   SETAS OWL — hover moderno
=========================== */
.btn-carousel,
.btn-carousel-dark,
.btn-carousel-dep {
  position: relative;
  overflow: hidden;
  transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
  z-index: 0;
}

/* Camada de fundo preto que entra com fade */
.btn-carousel::before,
.btn-carousel-dark::before,
.btn-carousel-dep::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #111;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.btn-carousel:hover,
.btn-carousel-dep:hover {
  transform: scale(1.07);
  opacity: 1;
}

.btn-carousel-dark:hover {
  transform: scale(1.07);
  opacity: 1;
}

.btn-carousel:hover::before,
.btn-carousel-dark:hover::before,
.btn-carousel-dep:hover::before {
  opacity: 1;
}

/* Seta interna acompanha suavemente */
.btn-carousel svg,
.btn-carousel-dark svg,
.btn-carousel-dep svg {
  position: relative;
  z-index: 1;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: block;
}

/* Saída suave */
.btn-carousel:not(:hover),
.btn-carousel-dark:not(:hover),
.btn-carousel-dep:not(:hover) {
  transform: scale(1);
}

/* HOVER APENAS PARA DESKTOP (Remove o hover preso no mobile) */
@media (hover: hover) and (pointer: fine) {
  .btn-carousel:hover,
  .btn-carousel-dep:hover,
  .btn-carousel-dark:hover {
    transform: scale(1.07);
    opacity: 1;
  }

  .btn-carousel:hover::before,
  .btn-carousel-dark:hover::before,
  .btn-carousel-dep:hover::before {
    opacity: 1;
  }

  .btn-carousel:hover svg,
  .btn-carousel-dark:hover svg,
  .btn-carousel-dep:hover svg {
    transform: scale(1.15);
  }
}


/* ===========================
   SUAVIZAÇÃO OWL CAROUSEL
=========================== */
.owl-carousel .owl-stage {
    /* Força uma curva de aceleração elegante (ease-out-quart) */
    transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1) !important;
}


/* ===========================
   ANIMAÇÃO SEÇÕES — estado inicial
=========================== */
.section-animate {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.section-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   MOBILE PADDING
=========================== */
@media (max-width: 767px) {
  .container { padding-left: 25px !important; padding-right: 25px !important; }
}

/* ===========================
   NAVBAR
=========================== */
.navbar-clube {
  background: transparent;
  padding: 20px 0;
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  z-index: 100;
}

.logo {
    width: 160px;
}

.nav-links {
  display: flex; align-items: center; gap: 22px;
  list-style: none; margin: 0; padding: 0;
}

.nav-links a {
    font-family: 'Lato', sans-serif;
    font-size: 19px;
    line-height: 22px;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s;
}

/* ===========================
   NAV FLIP — hover texto
=========================== */
.nav-link-flip {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  flex-direction: column;
  height: 1.2em;
  line-height: 1.2em;
  vertical-align: bottom;
}

.nav-front,
.nav-back {
  display: block;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
              opacity 0.35s ease;
  white-space: nowrap;
}

.nav-front {
  color: #fff;
  transform: translateY(0);
  opacity: 1;
}

.nav-back {
  color: #111;
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(0);
  opacity: 0;
}

@media (hover: hover) and (pointer: fine) {
  .nav-link-flip:hover .nav-front {
    transform: translateY(-100%);
    opacity: 0;
  }

  .nav-link-flip:hover .nav-back {
    transform: translateY(-100%);
    opacity: 1;
  }
}

/* ===========================
   HERO
=========================== */

.hero-section {
    background-color: #1773b9;
    background-image: url('logo-desconto.png');
    background-repeat: repeat;
    background-size: 160px auto;
    background-blend-mode: overlay;
    padding: 140px 0 20px 0px;
    position: relative;
    overflow: visible;
    display: flex;
    align-items: center;
}

/* Overlay para garantir legibilidade sobre o pattern */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(23,115,185,0.92) 0%, rgba(54,86,189,0.92) 100%);
  pointer-events: none;
  z-index: 0;
}

.hero-section .container { position: relative; z-index: 1; }

.hero-title { font-size: 52px; line-height: 60px; color: #fff; margin-bottom: 20px; }

/* ===========================
   HERO IMAGE — TILT 3D
=========================== */
.hero-img-wrap {
  perspective: 800px;
  display: inline-block;
}

.hero-img-wrap img {
  display: block;
  transform: rotateX(0deg) rotateY(0deg);
  transform-style: preserve-3d;
  transition: transform 0.1s ease-out;
  will-change: transform;
}

/* ===========================
   TEXTO ROTATIVO — HERO
=========================== */


.rotating-word-wrap {
  display: inline-block;
  vertical-align: bottom;
  overflow: visible;
  position: relative;
}

.rotating-word {
  display: inline-block;
  color: #ff7554;
  position: relative;
}

.rotating-word.slide-out {
  animation: wordOut 0.5s cubic-bezier(0.4, 0, 1, 1) forwards;
}

.rotating-word.slide-in {
  animation: wordIn 0.5s cubic-bezier(0, 0, 0.2, 1) forwards;
}

@keyframes wordOut {
  0%   { opacity: 1; transform: translateX(0); }
  100% { opacity: 0; transform: translateX(60px); }
}

@keyframes wordIn {
  0%   { opacity: 0; transform: translateX(60px); }
  100% { opacity: 1; transform: translateX(0); }
}


.hero-subtitle {
    font-size: 22px;
    line-height: 25px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 28px;
    max-width: 440px;
}
.hero-price-label {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
    font-weight: 600;
}
.hero-price {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 47px;
    line-height: 41px;
    color: #fff;
}
.hero-disclaimer { font-size: 13px; line-height: 20px; color: #ffffff; margin-top: 14px; }

/* Imagem única hero */
.hero-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.hero-img-wrap img {
  width: 120%;
  height: auto;
  max-width: none;
  display: block;
  border-radius: 0;
  box-shadow: none;
}


/* ===========================
   SETA HERO
=========================== */
.hero-arrow {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: arrowBounce 1s ease-in-out infinite;
  cursor: pointer;
}

.hero-arrow img {
    width: 70px;
    height: auto;
    display: block;
}

@keyframes arrowBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(10px); }
}

@media (max-width: 767px) {
  .hero-arrow { bottom: 33px; }
  .hero-arrow img { width: 28px; }
}

/* ===========================
   SUA ASSINATURA
=========================== */
.section-assinatura { background: #fff; padding: 55px 0; text-align: center; }
.section-assinatura .section-title {
    font-size: 60px;
    line-height: 62px;
    background: linear-gradient(90deg, #1773b9 0%, #3656bd 40%, #ee6747 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    padding-bottom: 10px;
}
.section-assinatura p {
    max-width: 540px;
    margin: 0 auto 36px;
}

/* ===========================
   PARA QUEM É
=========================== */

.section-para-quem {
    background: linear-gradient(135deg, #1773b9 0%, #5232d5 100%);
    padding: 80px 0;
}

.para-quem-title { 
    font-size: 60px; 
    line-height: 62px; 
    color: #fff; 
    background-color: transparent; /* Fundo sólido para os cards não aparecerem atrás do texto */
    padding-bottom: 10px;
    text-align: center;
}


.para-quem-title2 {
    font-size: 38px;
    line-height: 41px;
    color: #fff;
    margin-bottom: 30px;
}


/* Container que dá o espaço de scroll entre os cards */
.stacking-container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px; /* Define o tempo/distância de scroll antes do próximo card sobrepor */
    padding-bottom: 10px;
}




/* Removemos o top de dentro do card principal para não dar conflito */
.para-quem-card { 
    position: sticky; 
    background-color: #1773b9; /* Se você mudou para laranja em alguns, mantenha a sua cor aqui */
    display: flex; 
    align-items: center; 
    gap: 48px; 
    width: 100%;
    z-index: 1;
    border-radius: 32px; 
    padding: 40px; 
    border-top: 2px solid rgba(255, 255, 255, 0.2); 
    box-shadow: 0 -20px 40px -15px rgba(0, 0, 0, 0.35); 
}

/* Garantindo degraus de sobra (até 8 elementos) */
.stacking-container > div:nth-child(1) { top: 40px; }
.stacking-container > div:nth-child(2) { top: 60px; }
.stacking-container > div:nth-child(3) { top: 80px; }
.stacking-container > div:nth-child(4) { top: 100px; }
.stacking-container > div:nth-child(5) { top: 120px; }
.stacking-container > div:nth-child(6) { top: 140px; }
.stacking-container > div:nth-child(7) { top: 160px; }
.stacking-container > div:nth-child(8) { top: 180px; }

.card-laranja{background-color: #ee6747}


/* Esconde as setas do carrossel antigo, já que agora é por scroll */
.carousel-controls-pq {
    display: none !important;
}


.card-left {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-desc {
    margin-bottom: 22px;
    color: #ffffff;
    font-size: 28px;
    line-height: 34px;
    font-family: 'Poppins';
    font-weight: 400 !important;
}
hr {
    opacity: 0.5;
}

.logos-divider {
    border: none;
    border-top: 2px solid rgba(255,255,255,1);
    margin: 0;
}


.logos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px 1px;
    padding: 28px 0;
}


.logo-item { display: flex; align-items: center; }

.logo-item img {
    max-width: 180px;
    object-fit: contain;
    opacity: 1;
}

span.btn-front.gray {
    background: #959595;
}

.carousel-controls-pq { display: flex; gap: 12px; margin-top: 32px; }

.btn-carousel {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, #ee6747, #cb5568);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.2s; flex-shrink: 0;
}
.btn-carousel:hover { opacity: 0.85; }

.card-right { flex-shrink: 0; width: 45%; position: relative; }
.card-photo {
    width: 100%;
    height: 610px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}


/* Estilos para o Owl Carousel específico desta seção */
#carouselParaQuem .owl-stage-outer {
  padding-bottom: 20px; /* Espaço para os controles se necessário */
}

#carouselParaQuem .owl-nav,
#carouselParaQuem .owl-dots {
  display: none !important; /* Esconde navegação padrão do Owl Carousel */
}

/* Media queries para o badge-desconto em mobile */
@media (max-width: 767px) {
  .badge-desconto { right: 10px; bottom: 14px; width: 88px; height: 88px; }
}


/* ===========================
   DESCONTOS EM GRANDES MARCAS
=========================== */
.section-descontos { background: linear-gradient(135deg, #ee6747 0%, #cb5568 100%); padding: 80px 0; text-align: center; overflow: hidden; }
.section-descontos .sec-title {
    font-size: 60px;
    line-height: 62px;
    color: #fff;
    margin-bottom: 20px;
}
.section-descontos .sec-desc {color: #ffffff; max-width: 520px; margin: 0 auto 36px; }

.parceiro-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    padding: 10px 10px 28px;
    height: 369px;
}


@media (min-width: 1201px) and (max-width: 1400px) {
  .parceiro-card {
    height: 315px;
  }
}


.parceiro-card .card-img { width: 100%; display: block; }
.parceiro-card .card-logo-wrap { padding: 20px 20px 8px; min-height: 64px; display: flex; align-items: center; justify-content: center; }
.parceiro-card .card-logo {width: auto; object-fit: contain; }

.parceiro-card .card-ate { font-family: 'Lato', sans-serif; font-size: 13px; line-height: 18px; color: #888; display: none; min-height: 18px; }

.parceiro-card .card-desconto {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 45px;
    line-height: 45px;
    color: #222;
    display: none;
    margin-top: 2px;
}

.parceiro-card .desconto-texto {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 35px;
    color: #222;
    display: block;
    margin-top: 2px;
}

.descontos-controls { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 36px; }

.btn-carousel-dark {
  width: 44px; height: 44px; border-radius: 50%;
  background: #222; border: none; color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.2s; flex-shrink: 0;
}
.btn-carousel-dark:hover { opacity: 0.75; }

#carouselDescontos .owl-nav,
#carouselDescontos .owl-dots { display: none !important; }


/* ===========================
   DEPOIMENTOS
=========================== */
.section-depoimentos { background: #fff; padding: 80px 0; overflow: hidden; }
.section-depoimentos { background: linear-gradient(135deg, #ee6747 0%, #cb5568 100%); padding: 80px 0; text-align: center; overflow: hidden; }

.depoimentos-inner { display: flex; align-items: stretch; gap: 64px; }

.depoimentos-foto { flex: 0 0 50%; max-width: 50%; border-radius: 16px; overflow: hidden; order: 1; }
.depoimentos-foto img { width: 100%; height: 100%; min-height: 500px; object-fit: cover; object-position: center top; display: block; }

.depoimentos-conteudo { flex: 0 0 calc(50% - 64px); max-width: calc(50% - 64px); display: flex; flex-direction: column; justify-content: center; order: 2; }

.depoimentos-titulo { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 52px; line-height: 58px; color: #ffffff; margin-bottom: 12px; text-transform: uppercase; }
.depoimentos-desc {margin-bottom: 36px; color:#ffffff;}

/* Altura igual entre cards de depoimento */
#carouselDepoimentos .owl-item { display: flex; }
#carouselDepoimentos .owl-stage { display: flex !important; }
#carouselDepoimentos .owl-stage .owl-item { display: flex; flex: 1 0 auto; }

.depoimento-card {
  background: #1773b9; border-radius: 16px;
  padding: 32px 28px 28px;
  display: flex; flex-direction: column;
  width: 100%;
}
.depoimento-aspas {
    margin-bottom: 16px;
    display: block;
    width: 68px;
}

p.depoimento-texto {
    color: #ffffff;
}

.depoimento-nome {
    font-family: 'Lato', sans-serif;
    font-size: 17px;
    line-height: 20px;
    color: #ffffff;
}

.depoimento-texto strong { font-weight: 700; color: #fff; }
.depoimento-nome {
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    line-height: 20px;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
}

#carouselDepoimentos .owl-nav,
#carouselDepoimentos .owl-dots { display: none !important; }

.depoimentos-controls { display: flex; gap: 6px; margin-top: 28px; }

.btn-carousel-dep {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, #ee6747, #cb5568);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.2s; flex-shrink: 0;
}
.btn-carousel-dep:hover { opacity: 0.85; }

/* ===========================
   BENEFÍCIOS
=========================== */
.section-beneficios { background: linear-gradient(135deg, #1773b9 0%, #3656bd 100%); padding: 80px 0; text-align: center; overflow: hidden; }
.section-beneficios .sec-title { font-size: 48px; line-height: 56px; color: #fff; margin-bottom: 48px; }

/* Altura igual entre cards de benefício */
#carouselBeneficios .owl-stage { display: flex !important; }
#carouselBeneficios .owl-stage .owl-item { display: flex; flex: 1 0 auto; }


.beneficio-card {
    background: transparent;
    border: 3px solid #00000033;
    border-radius: 20px;
    overflow: visible;
    text-align: center;
    padding-bottom: 28px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.beneficio-card {
  overflow-y: visible;
}


.beneficio-card .ben-img-wrap { width: 100%; overflow: hidden; flex-shrink: 0; }
.beneficio-card .ben-img { display: block;}



.beneficio-card .ben-text {
    font-family: 'Lato', sans-serif;
    font-size: 20px;
    line-height: 28px;
    color: #fff;
    padding: 6px 24px 0;
    flex: 1;
}


.disponivel {
    font-size: 15px;
    line-height: 18px;
    color: #fff;
}


.beneficio-card .ben-text strong { font-weight: 700; color: #fff; }

.beneficios-controls { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 25px; }

#carouselBeneficios .owl-nav,
#carouselBeneficios .owl-dots { display: none !important; }


/* ===========================
   SEÇÃO PREÇOS
=========================== */
.section-precos {
  background: #fff;
  padding: 80px 0;
}


.precos-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 54px;
    line-height: 60px;
    background: linear-gradient(90deg, #1773b9 0%, #3656bd 40%, #ee6747 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-bottom: 10px;
    text-align: center;
    margin-bottom: 32px;
}

.precos-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 28px;
}

/* Card base */
.plano-card {
    background: #fff;
    border: 1.5px solid #000;
    border-radius: 16px;
    width: 100%;
    max-width: 380px;
    padding: 32px 18px 36px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 690px;
}

/* Card premium — borda azul e sem padding-top para o selo entrar */
.plano-card.premium {
  border-color: #000000;
  border-width: 1px;
  padding-top: 0;
}

/* Selo melhor oferta */
.plano-selo {
    background: #1773b9;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 13px;
    line-height: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-align: center;
    padding: 7px 0;
    border-radius: 10px;
    margin: 0 auto;
    width: 70%;
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.plano-card.premium .plano-inner {
  padding-top: 24px;
}

.plano-inner { width: 100%; }

/* Nome do plano */
.plano-nome {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 30px;
    color: #1a2e4a;
    text-align: center;
    margin-bottom: 16px;
}

.plano-card.premium .plano-nome {
  color: #00000;
}

.plano-divider {
    border: none;
    border-top: 1px solid #373737;
    margin: 0 0 20px;
}

/* Preço */
.plano-preco-de {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    line-height: 20px;
    color: #888;
    text-align: center;
    display: block;
    margin-bottom: 0px;
}

.plano-preco-de span {
  text-decoration: line-through;
  color: #e05a3a;
}

.plano-preco-por {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    margin-bottom: 6px;
}

.plano-preco-por .por-label {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    line-height: 18px;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-right: 2px;
}

.plano-preco-por .valor {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 64px;
    line-height: 64px;
    color: #1a2e4a;
}

.plano-preco-por .centavos-mes {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}

.plano-preco-por .centavos {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 28px;
  color: #1a2e4a;
}

.plano-preco-por .mes {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  line-height: 18px;
  color: #555;
}

.plano-periodo {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 20px;
  color: #000000;
  text-align: center;
  margin-bottom: 24px;
  display: block;
}


.plano-inner .btn-wrap {
    /* display: inline-block; */
    position: relative;
    text-decoration: none;
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 0;
    perspective: 800px;
    width: 90%;
    margin: 0 auto !important;
    /* text-align: center; */
    display: block;
}


/* Botão assine */
.btn-assine {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #ee6747, #cb5568);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 1px;
  padding: 16px 0;
  border-radius: 6px;
  border: none;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: opacity 0.3s ease;
  margin-bottom: 10px;
}
.btn-assine:hover { opacity: 0.88; color: #fff; }

.plano-cancele {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  line-height: 18px;
  color: #888;
  text-align: center;
  display: block;
  margin-bottom: 24px;
}

/* Lista de features */
.plano-features {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #373737;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.plano-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: 'Lato', sans-serif;
    font-size: 17px;
    line-height: 18px;
    color: #333;
}

.plano-features li img.feat-icon {
    width: 21px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Link tooltip */
.tooltip-link {
  color: #1773b9;
  text-decoration: underline;
  cursor: pointer;
  position: relative;
}

.tooltip-box {
  display: none;
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #000000;
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  line-height: 20px;
  padding: 12px 16px;
  border-radius: 8px;
  width: 240px;
  z-index: 200;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  pointer-events: none;
}

/* Seta do tooltip */
.tooltip-box::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #000000;
}

.tooltip-link:hover .tooltip-box,
.tooltip-link:focus .tooltip-box {
  display: block;
}

/* Responsivo preços */
@media (max-width: 767px) {
.precos-title {
    font-size: 41px;
    line-height: 39px;
    margin-bottom: 36px;
}
  .precos-grid { flex-direction: column; align-items: center; }
  .plano-card { max-width: 100%; }
  .plano-preco-por .valor { font-size: 52px; line-height: 52px; }
  .plano-preco-por .centavos { font-size: 24px; line-height: 24px; }
}

/* ===========================
   COMO FUNCIONA
=========================== */
.section-como-funciona { background: #1773b9; padding: 80px 0; text-align: center; }

.como-funciona-title { font-size: 48px; line-height: 56px; color: #fff; margin-bottom: 56px; }

.como-funciona-step {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.step-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, #ee6747, #cb5568);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; flex-shrink: 0;
}
.step-icon svg { width: 28px; height: 28px; }

.step-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 30px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.step-desc {
  color: rgba(255,255,255,0.85);
}

/* ===========================
   CTA / GARANTA ACESSO
=========================== */
.section-cta { background: #fff; padding: 80px 0; overflow: visible; }

.cta-box {
  background: linear-gradient(135deg, #ee6747 0%, #cb5568 100%);
  border-radius: 24px;
  display: flex;
  align-items: center;
  overflow: visible;
  position: relative;
  min-height: 340px;
}

.cta-img-col {
    /* flex: 0 0 45%; */
    /* max-width: 45%; */
    position: relative;
    align-self: stretch;
    overflow: visible;
}

.cta-img {
    position: absolute;
    bottom: -96px;
    /* left: -20px; */
    width: 100%;
    max-width: 590px;
    object-fit: contain;
    display: block;
}

.cta-content-col {
  flex: 1;
  padding: 60px 60px 60px 20px;
}

.cta-title {
  font-family: 'Poppins', sans-serif; font-weight: 700;
  font-size: 48px; line-height: 56px;
  color: #fff; margin-bottom: 32px;
}

/* ===========================
   DÚVIDAS FREQUENTES
=========================== */
.section-duvidas {
    background: #fff;
    padding: 35px 0 45px;
}

.duvidas-title {
  font-family: 'Poppins', sans-serif; font-weight: 700;
  font-size: 44px; line-height: 52px;
  color: #1773b9; text-transform: uppercase;
  text-align: center; margin-bottom: 76px;
}

.faq-list { list-style: none; margin: 0; padding: 0; }




.faq-item {
    padding: 0px 20px;
    border-radius: 10px;
    margin-bottom: 5px;
    background: #cccccc61;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    cursor: pointer;
    gap: 20px;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
}

.faq-question-text {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    line-height: 26px;
    color: #222;
    font-weight: 400;
    letter-spacing: 1px;
}

.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 17px;
    line-height: 1;
    transition: transform 0.3s ease, background 0.3s ease;
    font-family: 'Poppins', sans-serif;
    background: #1773b9;
    font-weight: 600;
}

.faq-item.open .faq-icon {
  background: #1773b9; color: #fff;
  transform: rotate(45deg);
}

.faq-answer { display: none; padding: 0 40px 22px 0; }
.faq-answer p {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    line-height: 24px;
    color: #555;
}

/* ===========================
   BANNER FIXO
=========================== */
#bannerFixo {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 350px;
  height: 111px;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
  padding: 4px;
}

#bannerFixo.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#bannerFixo img {
    width: 350px;
    height: 111px;
    display: block;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    cursor: pointer;
    background: #000000;
}


/* =========================================================================
   LEGAL SECTION
   ========================================================================= */
.legal-section {
    background-color: var(--green-primary);
    padding: 60px 0;
}

.legal-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.legal-content p {
    font-size: 0.7rem;
    line-height: 1rem;
    color: var(--black);
    font-weight: 400;
}

/* =========================================================================
   FOOTER
   ========================================================================= */
div#copyrights {
    background: #000;
}

#copyrights {
    padding: 50px 0;
    font-size: 0.875rem;
    line-height: 1.8;
}

footer p {
    color: #ffffff;
    font-size: 14px;
    line-height: 18px;
}

p.fone {
    margin: 0 0 6px;
    font-size: 20px;
}

footer h3 {
    color: #ffffff;
    font-size: 17px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 40px;
    line-height: 22px;
}

.icon-social {
    margin-right: 15px;
}

p.legal {
    font-size: 13px;
    line-height: 16px !important;
    margin-top: 35px !important;
    width: 70%;
}

.chat a {
    color: #ffffff;
}

/* ===========================
   RESPONSIVO
=========================== */
@media (max-width: 991px) {
  .para-quem-title { font-size: 34px; line-height: 42px; }
  .section-assinatura .section-title { font-size: 34px; line-height: 42px; }
  .card-right { width: 48%; }
  .card-photo { height: 420px; }
  .section-descontos .sec-title { font-size: 38px; line-height: 46px; }
  .depoimentos-titulo { font-size: 40px; line-height: 46px; }
  .depoimentos-inner { gap: 40px; }
  .depoimentos-conteudo { flex: 0 0 calc(50% - 40px); max-width: calc(50% - 40px); }
  .section-beneficios .sec-title { font-size: 38px; line-height: 46px; }
  .como-funciona-title { font-size: 38px; line-height: 46px; }
  .cta-title { font-size: 36px; line-height: 44px; }
  .duvidas-title { font-size: 34px; line-height: 42px; }
}

@media (max-width: 767px) {
.hero-section {
    padding: 125px 0 40px;
    min-height: auto;
    text-align: center;
}
.hero-title {
    font-size: 40px;
    line-height: 41px;
    margin-bottom: 10px;    
}
    
.hero-subtitle {
    font-size: 19px;
    line-height: 20px;
    margin-bottom: 18px;
}   
    
.hero-img-wrap {
    margin-top: -25px;
}    
    
.hero-img-wrap img {
    width: 110%;
}    
    
  .hero-price { font-size: 26px; line-height: 34px; }

  .nav-links { display: none; }
    
.section-assinatura {
     padding: 50px 0;
 }    
    
.section-assinatura .section-title {
    font-size: 43px;
    line-height: 39px;
}
.para-quem-title {
    font-size: 43px;
    line-height: 39px;
    margin-bottom: 28px;
}
    
    
.para-quem-card {
    flex-direction: column;
    gap: 16px;
    top: 20px;
    padding: 15px 15px;
}
    
.parceiro-card .desconto-texto {
    font-size: 20px;
    line-height: 18px;
}    
    
  .stacking-container {
      gap: 0px; /* Menos espaço de scroll no celular */
  }
  

    
.card-left {
    flex: 1;
    min-width: 0;
    order: 2;
}
    
.card-left {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 0;
}    
    
  .card-right { width: 100%; }

    
.section-para-quem, .section-descontos, .section-depoimentos, .section-depoimentos, .section-cta, .section-como-funciona {
    padding: 45px 0;
}    
    
.parceiro-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: none;
    text-align: center;
    padding: 10px 10px 28px;
    height: 215px;
}  
    
    
.desconto-texto {
    font-size: 22px;
    line-height: 22px;
}    
    
    
    
section#cta {
    text-align: center;
}    
    
    
.logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 7px;
}
    
.card-photo {
    height: 260px;
    object-position: 0px -50px;
}    
    
.card-desc {
    font-size: 18px;
    line-height: 20px;
}
    
.logos-grid {
    padding: 0px 0;
}   
    
    
.beneficio-card {
    height: 425px;
}    
    
    
.section-descontos .sec-title {
    font-size: 39px;
    line-height: 38px;
}
    
.section-descontos .sec-desc {
    font-size: 20px;
    line-height: 25px;
    margin: 0 auto 16px;    
}
    
.parceiro-card .card-desconto {
    font-size: 22px;
    line-height: 22px;
}
    
    
.depoimentos-controls {
    display: flex;
    gap: 3px;
    margin-top: 16px;
    justify-content: center;
}    
    
  .depoimentos-inner { flex-direction: column; gap: 40px; }
  .depoimentos-foto { flex: 0 0 100%; max-width: 100%; order: 2; }
  .depoimentos-foto img { min-height: 280px; height: 280px; }
  .depoimentos-conteudo { flex: 0 0 100%; max-width: 100%; order: 1; }
.depoimentos-titulo {
    font-size: 44px;
    line-height: 42px;
}
  .depoimento-card { padding: 24px 20px 20px; }
  .depoimento-aspas { font-size: 52px; line-height: 40px; }
.depoimento-texto {
    font-size: 26px;
    line-height: 29px;
}
    
.parceiro-card .card-ate {
    font-size: 13px;
    line-height: 18px;
    color: #000000;
}
    
img.card-logo {
    width: 140px !important;
}    
    
.section-beneficios .sec-title {
    font-size: 43px;
    line-height: 45px;
    margin-bottom: 32px;
}
    
.section-beneficios {
    padding: 50px 0;
}    
    
.beneficio-card .ben-text {
    font-size: 20px;
    line-height: 26px;
    padding: 10px 18px 0;
}
.como-funciona-title {
    font-size: 40px;
    line-height: 43px;
    margin-bottom: 36px;
}
  .como-funciona-step { margin-bottom: 20px; }
.cta-box {
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    min-height: auto;
    padding-top: 25px;
}
.cta-img-col {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
    height: 345px;
    order: 2;
}
.cta-img {
    position: relative;
    bottom: 56px;
    left: -25px;
    width: 100%;
    max-width: 100%;
    height: 423px;
    object-fit: contain;
    filter: none;
}
  .cta-content-col { padding: 16px 28px 40px; }
.cta-title {
    font-size: 34px;
    line-height: 33px;
    margin-bottom: 23px;
}
.duvidas-title {
    font-size: 43px;
    line-height: 40px;
    margin-bottom: 36px;
}
  .faq-question-text { font-size: 15px; line-height: 24px; }
    
    
    
footer h3 {
    margin: 0px 0 10px;
}    

  /* Banner fixo mobile — centralizado */
#bannerFixo {
    right: 50%;
    transform: translateX(50%) translateY(20px);
    bottom: 0px;
}
  #bannerFixo.visible {
    transform: translateX(50%) translateY(0);
  }
    
    
    
}

@media (max-width: 480px) {
    
.plano-card {
    order: 2;
}
    
.plano-card.premium {
 order:1;
}    
    
  #bannerFixo { width: 300px; }
  #bannerFixo img { width: 300px; height: auto; }
    
.logo-item img {
    max-width: 148px;
}   
 
    
.btn-carousel-dark {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #222;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
    flex-shrink: 0;
}    
    
    
.descontos-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    margin-top: 3px;
}    
    
#para-quem .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
}    
    
    
.para-quem-title {
    top: 0px;
    font-size: 43px;
    line-height: 46px;
    padding: 15px 0;
    padding: 20px 0 10px 0;
    margin-top: -20px;
    margin-bottom: 5px;
}

    /* Degraus extras para o mobile */
    .stacking-container > div:nth-child(1) { top: 10px; }
    .stacking-container > div:nth-child(2) { top: 20px; }
    .stacking-container > div:nth-child(3) { top: 25px; }
    .stacking-container > div:nth-child(4) { top: 30px; }
    .stacking-container > div:nth-child(5) { top: 35px; }
    .stacking-container > div:nth-child(6) { top: 40px; }
    .stacking-container > div:nth-child(7) { top: 45px; }
    .stacking-container > div:nth-child(8) { top: 50px; }
    
    
.logo {width: 85px;}   
nav .border-0 {
    border: 1px solid #ffffff !important;
    padding: 4px 8px 8px;
    border-radius: 4px;
}
    
.btn-front, .btn-back {
    line-height: 20px;
}    
    
.hero-price {
    font-size: 35px;
    line-height: 38px;
    margin-bottom: 10px;
}
    
.hero-disclaimer {
    font-size: 13px;
    line-height: 20px;
    color: #ffffff;
    margin-top: 3px;
}
    
.section-duvidas {
    background: #fff;
    padding: 0 0 45px;
}    
    
}