/* ===========================
   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;
}

/* ===========================
   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: none;
  padding: 0;
  perspective: 800px;
}

.btn-front, .btn-back {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 17px;
    line-height: 24px;
    letter-spacing: 1px;
    padding: 28px 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;
}

.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;
}

@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.2);
  opacity: 1;
}

.btn-carousel-dark:hover {
  transform: scale(1.2);
  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;
}

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

/* Saída suave */
.btn-carousel:not(:hover),
.btn-carousel-dark:not(:hover),
.btn-carousel-dep:not(:hover) {
  transform: scale(1);
}
/* ===========================
   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: 28px;
  list-style: none; margin: 0; padding: 0;
}

.nav-links a {
    font-family: 'Lato', sans-serif;
    font-size: 17px;
    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: hidden;
    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: 380px;
}
.hero-price-label { font-family: 'Lato', sans-serif; font-size: 13px; line-height: 20px; color: rgba(255,255,255,0.75); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
.hero-price { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 32px; line-height: 40px; color: #fff;}
.hero-disclaimer { font-size: 13px; line-height: 20px; color: rgba(255,255,255,0.6); 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: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: arrowBounce 1s ease-in-out infinite;
  cursor: pointer;
}

.hero-arrow img {
  width: 50px;
  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: 80px 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: #1773b9; padding: 80px 0; overflow: hidden; }
.para-quem-title { font-size: 60px; line-height: 62px; color: #fff; margin-bottom: 10px; }

.para-quem-card { 
    display: flex; 
    align-items: center; 
    gap: 48px; 
    width: 100%;
}


@keyframes fadeCard {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

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

.card-desc {
    margin-bottom: 32px;
    color: #ffffff;
    font-size: 35px;
    line-height: 40px;
}

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: 14px 0px;
    padding: 28px 0;
}
.logo-item { display: flex; align-items: center; }

.logo-item img {
    /* max-height: 48px; */
    max-width: 210px;
    object-fit: contain;
    opacity: 1;
}
.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: 720px; object-fit: cover; border-radius: 14px; display: block; }

/* Ajuste para o badge-desconto para acomodar a imagem do selo */
.badge-desconto {
    position: absolute;
    bottom: -20px; /* Ajuste conforme necessário */
    right: 15px; /* Ajuste conforme necessário */
    width: 160px; /* Largura do selo */
    height: 160px; /* Altura do selo */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    /* box-shadow: 0 8px 24px rgba(0,0,0,0.25); */ /* Removido para usar a imagem diretamente */
}

.badge-desconto img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Garante que a imagem se ajuste sem cortar */
}

/* 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;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    text-align: center;
    padding: 10px 10px 28px;
}
.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: block; min-height: 18px; }
.parceiro-card .card-desconto {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 45px;
    line-height: 45px;
    color: #222;
    display: block;
    margin-top: 2px;
}

.descontos-controls { display: flex; align-items: center; justify-content: center; gap: 12px; 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; }

.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: #1773b9; margin-bottom: 12px; text-transform: uppercase; }
.depoimentos-desc {margin-bottom: 36px; }

/* 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: 12px; 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: 22px;
    line-height: 29px;
    color: #fff;
    padding: 24px 24px 0;
    flex: 1;
}
.beneficio-card .ben-text strong { font-weight: 700; color: #fff; }

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

#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: 44px;
  line-height: 54px;
  color: #1a2e4a;
  text-align: center;
  margin-bottom: 52px;
}

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

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

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

/* Selo melhor oferta */
.plano-selo {
  background: #1ab3d8;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  padding: 8px 0;
  border-radius: 12px 12px 0 0;
  margin: 0 -2px;
  width: calc(100% + 4px);
}

.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: 18px;
  line-height: 24px;
  color: #1a2e4a;
  text-align: center;
  margin-bottom: 16px;
}

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

/* Divisor */
.plano-divider {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 0 0 20px;
}

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

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

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

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

.plano-preco-por .valor {
  font-family: 'Poppins', 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: 14px;
  line-height: 20px;
  color: #1a2e4a;
  text-align: center;
  margin-bottom: 24px;
  display: block;
}

.plano-card.premium .plano-periodo {
  color: #1ab3d8;
}

/* 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 #e0e0e0;
  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: 14px;
  line-height: 22px;
  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: #1a2e4a;
  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: #1a2e4a;
}

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

/* Responsivo preços */
@media (max-width: 767px) {
  .precos-title { font-size: 28px; line-height: 36px; 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: left; }

.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: -45px;
    /* left: -20px; */
    width: 110%;
    max-width: 610px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
}

.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: 80px 0; }

.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 { border-bottom: 1px solid #ddd; }
.faq-item:first-child { border-top: 1px solid #ddd; }

.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 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%;
    border: 3px solid #1773b9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1773b9;
    font-size: 17px;
    line-height: 1;
    transition: transform 0.3s ease, background 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.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: 15px; line-height: 26px; 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;
}

#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;
    padding: 4px;
}


/* =========================================================================
   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.8rem;
    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%;
}

.social-icons {
    margin-bottom: 40px;
}

.chat a {
    color: #ffffff;
}

/* ===========================
   RESPONSIVO
=========================== */
@media (max-width: 991px) {
  .hero-title { font-size: 38px; line-height: 46px; }
  .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: 130px 0 40px; min-height: auto; }
.hero-title {
    font-size: 38px;
    line-height: 40px;
}
    
.hero-subtitle {
    font-size: 21px;
    line-height: 23px;
    margin-bottom: 18px;
}    
    
.hero-img-wrap {
    margin-top: -25px;
}    
    
  .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;
}
    
    

    
.card-left {
    flex: 1;
    min-width: 0;
    order: 2;
}
    
  .card-right { width: 100%; }
  .card-photo { height: 300px; }
  .badge-desconto { right: 10px; bottom: 14px; width: 88px; height: 88px; }
  .badge-desconto .b-percent { font-size: 20px; line-height: 22px; }
  .logos-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 16px; }
  .card-desc { font-size: 16px; line-height: 26px; }
    
    
    
  .section-descontos .sec-title { font-size: 30px; line-height: 38px; }
  .section-descontos .sec-desc { font-size: 15px; line-height: 26px; }
  .parceiro-card .card-desconto { font-size: 24px; line-height: 30px; }
  .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: 32px; line-height: 38px; }
  .depoimento-card { padding: 24px 20px 20px; }
  .depoimento-aspas { font-size: 52px; line-height: 40px; }
  .depoimento-texto { font-size: 15px; line-height: 24px; }
  .section-beneficios .sec-title { font-size: 28px; line-height: 36px; margin-bottom: 32px; }
    
.section-beneficios {
    padding: 50px 0;
    margin-top: -108px;
}    
    
  .beneficio-card .ben-img-wrap { height: 180px; }
  .beneficio-card .ben-text { font-size: 15px; line-height: 24px; padding: 20px 18px 0; }
  .como-funciona-title { font-size: 28px; line-height: 36px; margin-bottom: 36px; }
  .como-funciona-step { margin-bottom: 40px; }
  .cta-box { flex-direction: column; border-radius: 16px; overflow: hidden; min-height: auto; }
  .cta-img-col { flex: 0 0 auto; max-width: 100%; width: 100%; height: 300px; overflow: hidden; }
  .cta-img { position: relative; bottom: auto; left: auto; width: 100%; max-width: 100%; height: 300px; object-fit: cover; filter: none; }
  .cta-content-col { padding: 36px 28px 40px; }
  .cta-title { font-size: 28px; line-height: 36px; margin-bottom: 24px; }
  .duvidas-title { font-size: 26px; line-height: 34px; margin-bottom: 36px; }
  .faq-question-text { font-size: 15px; line-height: 24px; }

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

@media (max-width: 480px) {
  #bannerFixo { width: 300px; }
  #bannerFixo img { width: 300px; height: auto; }
    
.logo-item img {
    /* max-height: 48px; */
    max-width: 161px;
}    
    
    
.logo {
    width: 100px;
}    
}