/* -------------------------------------------------------------
   1. DIREÇÃO VISUAL E PALETA DE CORES EXTRAÍDA DA ARTE ILUSTRADA
   ------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Cores Fiéis Extraídas da Imagem */
  --azul-escuro: #132644;
  /* Títulos & Faixa Inferior Dark Ink Navy */
  --azul-principal: #132644;
  --rosa-destaque: #D9536F;
  /* Coral / Rosa Quente do (+30) e Destaques */
  --verde-sabio: #5E8B75;
  /* Verde Sábio da Faixa Bônus 1 */
  --verde-claro: #E9F3ED;
  /* Fundo Menta / Verde Suave */
  --ouro-amber: #C88C30;
  /* Dourado Ocre de (3. Funções) */
  --ouro-fundo: #FAF1DA;
  /* Fundo Âmbar Suave */
  --roxo-suave: #796DA6;
  /* Lavanda de (ILUSTRADOS) */
  --roxo-fundo: #EFEBF5;
  /* Fundo Lavanda Suave */

  --ciano: #5E8B75;
  /* Verde Sábio Principal */
  --creme: #F3EFE3;
  /* Creme Vintage */
  --branco: #FFFFFF;
  --fundo-pagina: #FAF6EE;
  /* Fundo Warm Cream da Imagem */
  --texto-escuro: #132644;
  /* Azul Escuro Grafite */
  --texto-suave: #475569;
  /* Texto Suave Legível */
  --vermelho-erro: #EF4444;
  --cinza-borda: #E8E2D5;
  /* Borda Creme Dourada */

  --borda-raio: 16px;
  --borda-raio-sm: 12px;
  --transicao: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset Geral */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 17.5px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #DCE3E6;
  color: var(--texto-escuro);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* -------------------------------------------------------------
   2. CONFIGURAÇÃO MOBILE-ONLY (ESTRUTURA 480PX COM BORDA ORNAMENTAL)
   ------------------------------------------------------------- */
.page-container {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  background-color: var(--fundo-pagina);
  min-height: 100vh;
  box-shadow: 0 0 40px rgba(19, 38, 68, 0.2);
  position: relative;
  overflow-x: hidden;
  padding-top: 0;
}

/* Títulos e Tipografia */
h1,
h2,
h3,
h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  color: var(--azul-escuro);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

p {
  color: var(--texto-suave);
  font-size: 0.96rem;
  line-height: 1.6;
}

/* Estilo de Destaque / Underline Traçado para Palavras dos Títulos */
.hl-pink,
.hl-cyan,
.hl-yellow,
.hl-orange {
  display: inline;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 3.5px;
  text-underline-offset: 4px;
}

.hl-pink {
  color: var(--rosa-destaque);
  /* Rosa Coral Quente */
  text-decoration-color: var(--rosa-destaque);
}

.hl-cyan {
  color: var(--verde-sabio);
  /* Verde Sábio */
  text-decoration-color: var(--verde-sabio);
}

.hl-yellow {
  color: var(--ouro-amber);
  /* Dourado Âmbar */
  text-decoration-color: var(--ouro-amber);
}

.hl-pink::after,
.hl-cyan::after,
.hl-yellow::after,
.hl-orange::after,
.hl-white::after {
  display: none !important;
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 24px;
  border-radius: 30px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 0.98rem;
  letter-spacing: 0.3px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(19, 38, 68, 0.18);
  width: 100%;
  text-align: center;
  transition: var(--transicao);
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  line-height: 1.3;
}

.btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: rotate(30deg);
  transition: 0.5s;
}

/* PLANO BÁSICO (EXATAMENTE IDÊNTICO À REFERÊNCIA ANEXADA) */
.plan-card-basic {
  background-color: #FFFFFF;
  border: 1px solid var(--cinza-borda);
  border-radius: 20px;
  padding: 24px 20px;
  box-shadow: none;
  text-align: left;
  position: relative;
  opacity: 1;
  display: flex;
  flex-direction: column;
}

.plan-card-basic:hover {
  transform: none;
  box-shadow: none;
}

.plan-card-basic .plan-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--azul-escuro);
  margin-bottom: 2px;
  text-align: left;
  width: 100%;
}

.plan-card-basic .plan-subheadline {
  font-size: 0.78rem;
  color: var(--texto-suave);
  margin-bottom: 20px;
  line-height: 1.35;
  text-align: left;
  width: 100%;
}

.plan-card-basic .plan-price-row {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 18px;
}

.plan-card-basic .price-currency {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--azul-escuro);
  margin-right: 2px;
}

.plan-card-basic .price-val-main {
  font-size: 2.3rem;
  font-weight: 900;
  color: var(--azul-escuro);
  line-height: 1;
}

.plan-card-basic .price-val-cents {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--azul-escuro);
}

.plan-card-basic .price-subtext {
  font-size: 0.72rem;
  color: var(--texto-suave);
  font-weight: 600;
  margin-left: 6px;
}

.plan-card-basic .plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  text-align: left;
}

.plan-card-basic .plan-features li {
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--azul-escuro);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.35;
}

.plan-card-basic .plan-features li::before {
  display: none !important;
}

.plan-card-basic .feat-check {
  color: #2E7D32;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.plan-card-basic .plan-features li.inactive {
  color: #94A3B8;
  text-decoration: line-through;
  opacity: 1;
}

.plan-card-basic .feat-cross {
  color: #94A3B8;
  font-weight: 600;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.btn-basic {
  width: 100%;
  height: 44px;
  background-color: #FFFFFF;
  border: 1px solid #D5C8B8;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 800;
  color: #765C48;
  box-shadow: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.btn-basic:hover {
  background-color: #FAF8F5;
  border-color: #765C48;
  color: #4D3A2C;
  transform: none;
  box-shadow: none;
}

.plan-secure-text {
  font-size: 0.7rem;
  color: #A3968A;
  font-weight: 500;
  text-align: center;
  margin-top: 12px;
}

.btn:hover::after {
  left: 100%;
}

.btn:active {
  transform: translateY(1px);
  box-shadow: 0 2px 8px rgba(19, 38, 68, 0.12);
}

.btn-laranja,
.btn-azul {
  background: linear-gradient(135deg, #132644 0%, #1D3A66 100%);
  color: var(--branco);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-laranja:hover,
.btn-azul:hover {
  background: linear-gradient(135deg, #D9536F 0%, #C4435F 100%);
  color: var(--branco);
  box-shadow: 0 8px 24px rgba(217, 83, 111, 0.35);
  transform: translateY(-2px);
}

.btn-amarelo,
.btn-verde {
  background: linear-gradient(135deg, #5E8B75 0%, #4D7662 100%);
  color: var(--branco);
  box-shadow: 0 6px 20px rgba(94, 139, 117, 0.3);
}

.btn-amarelo:hover,
.btn-verde:hover {
  background: linear-gradient(135deg, #132644 0%, #1D3A66 100%);
  box-shadow: 0 8px 24px rgba(19, 38, 68, 0.3);
  transform: translateY(-2px);
}

/* Section Spacing */
.section-spacing {
  padding: 40px 16px;
}

.section-header {
  text-align: center;
  margin-bottom: 24px;
}

.section-title {
  font-size: 1.65rem;
  margin-bottom: 10px;
  color: var(--azul-escuro);
}

.section-subtitle {
  font-size: 0.94rem;
  color: var(--texto-suave);
  line-height: 1.55;
}

/* Imagens */
img.responsive-img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: var(--borda-raio-sm);
  margin: 0 auto;
  border: 1px solid var(--cinza-borda);
  box-shadow: 0 4px 12px rgba(19, 38, 68, 0.06);
}

/* -------------------------------------------------------------
   3. BARRA FIXA NO TOPO COM CRONÔMETRO (DARK INK NAVY)
   ------------------------------------------------------------- */
.top-bar {
  width: 100%;
  position: sticky;
  top: 0;
  background: linear-gradient(90deg, #132644 0%, #1D3A66 100%);
  border-bottom: 2px solid var(--ouro-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  box-sizing: border-box;
  height: 52px;
  z-index: 1000;
  box-shadow: 0 4px 16px rgba(19, 38, 68, 0.15);
}

.top-bar-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.top-bar-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--branco);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.top-bar-timer {
  display: flex;
  align-items: center;
  gap: 3px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: #FCE7F3;
  background-color: rgba(255, 255, 255, 0.12);
  padding: 3px 12px;
  border: 1px solid rgba(217, 83, 111, 0.4);
  border-radius: 20px;
  line-height: 1.1;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.timer-sep {
  animation: blink 1s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

/* -------------------------------------------------------------
   4. SEÇÃO HERO
   ------------------------------------------------------------- */
.hero-section {
  background: linear-gradient(180deg, #FAF6EE 0%, #F5EFE0 100%);
  padding: 28px 16px 36px 16px;
  text-align: center;
  position: relative;
  border-bottom: 1px solid var(--cinza-borda);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--verde-claro);
  color: var(--verde-sabio);
  border: 1px solid rgba(94, 139, 117, 0.3);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.live-dot {
  width: 8px;
  height: 8px;
  background-color: var(--verde-sabio);
  border-radius: 50%;
  display: inline-block;
  animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(94, 139, 117, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(94, 139, 117, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(94, 139, 117, 0);
  }
}

.hero-headline-1 {
  font-size: 1.95rem;
  font-weight: 800;
  color: var(--azul-escuro);
  margin-bottom: 14px;
  line-height: 1.22;
}

.hero-headline-2 {
  font-size: 0.9rem;
  color: var(--texto-suave);
  line-height: 1.55;
  margin-bottom: 24px;
  padding: 0 4px;
}

.hero-mockup-wrapper {
  position: relative;
  max-width: 500px;
  margin: 0 auto 24px auto;
}

.hero-mockup-img,
.plan-mockup-img {
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  display: block !important;
  max-width: 100% !important;
  height: auto !important;
  margin: 0 auto !important;
  filter: drop-shadow(0 10px 20px rgba(19, 38, 68, 0.12));
}

.hero-cta-btn {
  margin-bottom: 10px;
}

.hero-cta-subtitle {
  font-size: 0.76rem;
  color: var(--texto-suave);
  font-weight: 500;
}

/* -------------------------------------------------------------
   5. SEÇÃO “PARA QUEM É ESTE MATERIAL” (CARDS VARIADOS)
   ------------------------------------------------------------- */
.audience-section {
  background-color: var(--fundo-pagina);
}

.audience-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.audience-card {
  background-color: var(--branco);
  border: 1.5px solid var(--cinza-borda);
  border-radius: var(--borda-raio);
  padding: 20px 18px;
  text-align: left;
  box-shadow: 0 4px 14px rgba(19, 38, 68, 0.04);
  transition: var(--transicao);
  position: relative;
  overflow: hidden;
}

/* Alternância elegante de cores nas bordas dos cards */
.audience-card:nth-child(1)::before {
  background: var(--verde-sabio);
}

.audience-card:nth-child(2)::before {
  background: var(--roxo-suave);
}

.audience-card:nth-child(3)::before {
  background: var(--ouro-amber);
}

.audience-card:nth-child(4)::before {
  background: var(--rosa-destaque);
}

.audience-card:nth-child(5)::before {
  background: var(--verde-sabio);
}

.audience-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  border-top-left-radius: var(--borda-raio);
  border-bottom-left-radius: var(--borda-raio);
}

.audience-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(19, 38, 68, 0.08);
}

.audience-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.audience-card:nth-child(1) .audience-card-icon {
  background: var(--verde-claro);
  color: var(--verde-sabio);
  border: 1px solid rgba(94, 139, 117, 0.25);
}

.audience-card:nth-child(2) .audience-card-icon {
  background: var(--roxo-fundo);
  color: var(--roxo-suave);
  border: 1px solid rgba(121, 109, 166, 0.25);
}

.audience-card:nth-child(3) .audience-card-icon {
  background: var(--ouro-fundo);
  color: var(--ouro-amber);
  border: 1px solid rgba(200, 140, 48, 0.25);
}

.audience-card:nth-child(4) .audience-card-icon {
  background: #FDE8EC;
  color: var(--rosa-destaque);
  border: 1px solid rgba(217, 83, 111, 0.25);
}

.audience-card:nth-child(5) .audience-card-icon {
  background: var(--verde-claro);
  color: var(--verde-sabio);
  border: 1px solid rgba(94, 139, 117, 0.25);
}

.svg-icon {
  width: 24px;
  height: 24px;
  display: block;
}

.audience-card-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--azul-escuro);
  margin-bottom: 4px;
}

.audience-card-desc {
  font-size: 0.82rem;
  color: var(--texto-suave);
  line-height: 1.48;
}

/* -------------------------------------------------------------
   6. SEÇÃO “O QUE VOCÊ VAI RECEBER” & CARROSSÉIS
   ------------------------------------------------------------- */
.receive-section {
  background-color: var(--branco);
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
  border-top: 1px solid var(--cinza-borda);
  border-bottom: 1px solid var(--cinza-borda);
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  margin-bottom: 14px;
  user-select: none;
  cursor: grab;
  position: relative;
  padding: 6px 0;
}

.marquee-container:active {
  cursor: grabbing;
}

.marquee-track {
  display: flex;
  gap: 14px;
  width: max-content;
}

.marquee-to-right {
  animation: scrollRight 32s linear infinite;
}

.marquee-to-left {
  animation: scrollLeft 32s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes scrollRight {
  0% {
    transform: translate3d(calc(-50% - 7px), 0, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes scrollLeft {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(calc(-50% - 7px), 0, 0);
  }
}

.carousel-card-img {
  width: 580px;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  border: none;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(19, 38, 68, 0.08);
  flex-shrink: 0;
  display: block;
  background: transparent;
  box-sizing: border-box;
}

.demo-info-text {
  font-size: 0.8rem;
  color: var(--texto-suave);
  text-align: center;
  margin-top: 12px;
  padding: 0 16px;
}

/* -------------------------------------------------------------
   7. SEÇÃO DE BÔNUS EXCLUSIVOS
   ------------------------------------------------------------- */
.bonus-section {
  background-color: rgba(217, 83, 111, 0.2);
}

.bonus-section .section-title {
  color: var(--azul-escuro);
}

.bonus-section .section-subtitle {
  color: var(--texto-suave);
}

.bonus-container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 22px;
}

.bonus-card {
  background: var(--branco);
  border: 2px solid var(--azul-escuro);
  border-radius: var(--borda-raio);
  padding: 24px 20px;
  box-shadow: 4px 6px 0px var(--azul-escuro);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bonus-card:hover {
  transform: translate(-2px, -3px);
  box-shadow: 6px 9px 0px var(--azul-escuro);
}

.bonus-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 10;
  background-color: var(--rosa-destaque);
  color: var(--branco);
  font-size: 0.72rem;
  font-weight: 900;
  padding: 6px 16px;
  border-radius: 20px;
  border: none;
  letter-spacing: 0.8px;
  box-shadow: 0 2px 6px rgba(217, 83, 111, 0.4);
}

.bonus-image-wrapper {
  width: calc(100% + 40px);
  margin-left: -20px;
  margin-right: -20px;
  margin-top: -24px;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
  margin-bottom: 16px;
  border-bottom: 2px solid var(--azul-escuro);
}

.bonus-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.bonus-card:hover .bonus-image-wrapper img {
  transform: scale(1.04);
}

.bonus-title {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--azul-escuro);
  margin-bottom: 6px;
  line-height: 1.3;
}

.bonus-desc {
  font-size: 0.84rem;
  line-height: 1.45;
  margin-bottom: 12px;
  color: var(--texto-suave);
}

.bonus-price {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--texto-suave);
}

.bonus-price span {
  text-decoration: line-through;
}

/* -------------------------------------------------------------
   8. RESUMO DOS BÔNUS
   ------------------------------------------------------------- */
.bonus-summary-box {
  background-color: var(--branco);
  color: var(--azul-escuro);
  border: 2.5px solid var(--azul-escuro);
  border-radius: 24px;
  padding: 24px 18px;
  box-shadow: 4px 6px 0px var(--azul-escuro);
  text-align: center;
  position: relative;
}

.bonus-summary-box::before {
  display: none !important;
}

.summary-title {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--azul-escuro);
  margin-bottom: 14px;
  text-transform: uppercase;
}

.summary-list {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 2px dashed var(--azul-escuro);
}

.summary-list li {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--azul-escuro);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.summary-list li .val-label {
  flex: 1;
  text-align: left;
  line-height: 1.35;
}

.summary-list li span:last-child {
  white-space: nowrap;
  font-weight: 800;
  color: var(--azul-escuro);
  text-align: right;
  flex-shrink: 0;
  font-size: 0.76rem;
}

.summary-total {
  font-size: 0.76rem;
  font-weight: 800;
  color: #475569;
  margin-bottom: 10px;
}

.summary-total span {
  text-decoration: line-through;
  color: #64748B;
  font-weight: 800;
}

.summary-highlight-title {
  font-size: 0.78rem;
  font-weight: 900;
  color: var(--azul-escuro);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.summary-free-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background-color: #22C55E;
  color: var(--branco);
  border: 2px solid var(--azul-escuro);
  border-radius: 16px;
  padding: 6px 28px;
  margin-top: 2px;
  box-shadow: 2px 3px 0px var(--azul-escuro);
}

.summary-free-val {
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
}

.summary-free-tag {
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 1px;
  margin-top: 2px;
}

/* -------------------------------------------------------------
   9. SEÇÃO DE PLANOS
   ------------------------------------------------------------- */
.plans-section {
  background-color: var(--branco);
}

.section-tag {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--verde-sabio);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.plans-timer-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--azul-escuro);
  margin-top: 14px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plans-timer-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}

.plans-timer-card {
  background: linear-gradient(135deg, #132644 0%, #1D3A66 100%);
  border-radius: var(--borda-raio-sm);
  width: 74px;
  height: 74px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(19, 38, 68, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.plans-timer-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.55rem;
  font-weight: 900;
  color: #FF577F;
  line-height: 1.1;
}

.plans-timer-unit {
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--branco);
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.plans-timer-sep {
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--azul-escuro);
  margin-bottom: 8px;
}

.plans-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.plan-card {
  background: var(--branco);
  border: 1.5px solid var(--cinza-borda);
  border-radius: var(--borda-raio);
  padding: 24px 18px;
  box-shadow: 0 6px 18px rgba(19, 38, 68, 0.05);
  position: relative;
  text-align: center;
  transition: var(--transicao);
}

.plan-title {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--azul-escuro);
  margin-bottom: 4px;
}

.plan-subheadline {
  font-size: 0.8rem;
  color: var(--texto-suave);
  margin-bottom: 16px;
}

.plan-price-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--texto-suave);
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.plan-price {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--azul-escuro);
  line-height: 1.1;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plan-price span {
  font-size: 1.1rem;
  font-weight: 700;
  margin-right: 2px;
}

.plan-price-subtext {
  font-size: 0.78rem;
  color: var(--texto-suave);
  font-weight: 600;
  margin-left: 6px;
}

.plan-features {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.plan-features li {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--texto-escuro);
  display: flex;
  align-items: flex-start;
}

.plan-features li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background-color: var(--verde-sabio);
  color: var(--branco);
  font-size: 0.62rem;
  border-radius: 50%;
  margin-right: 8px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.plan-features li.inactive {
  opacity: 0.45;
  text-decoration: line-through;
}

.plan-features li.inactive::before {
  content: '✕';
  background-color: var(--vermelho-erro);
}

/* PLANO BÁSICO ESTILOS COMPLETADOS */

.plan-card-featured {
  border: 2px solid var(--verde-sabio);
  box-shadow: 0 10px 32px rgba(94, 139, 117, 0.2);
  background: linear-gradient(180deg, #FFFFFF 0%, #F5F9F7 100%);
}

.plan-card-featured .plan-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 20px;
}

.plan-card-featured .price-currency {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--azul-escuro);
  margin-right: 2px;
}

.plan-card-featured .price-val-main {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--azul-escuro);
  line-height: 1;
}

.plan-card-featured .price-val-cents {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--azul-escuro);
}

.plan-card-featured .price-subtext {
  font-size: 0.78rem;
  color: var(--texto-suave);
  font-weight: 600;
  margin-left: 6px;
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #5E8B75 0%, #4D7662 100%);
  color: var(--branco);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 18px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(94, 139, 117, 0.35);
}

.plan-bonus-box {
  border: 2px dashed #3D7A5A;
  background-color: #D8ECE0;
  padding: 14px 12px;
  border-radius: var(--borda-raio-sm);
  margin: 16px 0;
  text-align: left;
}

.plan-bonus-box-title {
  font-size: 0.8rem;
  font-weight: 900;
  color: #1B442E;
  margin-bottom: 10px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.plan-bonus-item {
  background-color: var(--branco);
  border: 1px solid rgba(61, 122, 90, 0.3);
  border-radius: 8px;
  padding: 8px 12px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 8px rgba(61, 122, 90, 0.06);
}

.plan-bonus-item:last-child {
  margin-bottom: 0;
}

.plan-bonus-name {
  font-size: 0.8rem;
  font-weight: 800;
  color: #1B442E;
  line-height: 1.35;
}

/* -------------------------------------------------------------
   10. MODAL PROMOCIONAL DO PLANO BÁSICO
   ------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(19, 38, 68, 0.85);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  padding: 20px 16px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background-color: var(--branco);
  border-radius: var(--borda-raio);
  width: 100%;
  max-width: 390px;
  box-shadow: 0 16px 40px rgba(19, 38, 68, 0.25);
  padding: 26px 18px 20px 18px;
  text-align: center;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--texto-suave);
  cursor: pointer;
}

.modal-title {
  font-size: 1.15rem;
  color: var(--azul-escuro);
  margin-bottom: 10px;
}

.modal-text {
  font-size: 0.84rem;
  color: var(--texto-suave);
  margin-bottom: 20px;
  line-height: 1.45;
}

.modal-price-box {
  background-color: var(--verde-claro);
  padding: 14px;
  border: 1px dashed var(--verde-sabio);
  border-radius: var(--borda-raio-sm);
  margin-bottom: 20px;
}

.modal-price-label {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--texto-suave);
}

.modal-price-val {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--verde-sabio);
}

.modal-btn {
  margin-bottom: 14px;
}

.modal-link {
  font-size: 0.78rem;
  color: var(--texto-suave);
  text-decoration: underline;
  cursor: pointer;
}

/* -------------------------------------------------------------
   11. SEÇÃO DE GARANTIA DE SETE DIAS
   ------------------------------------------------------------- */
.warranty-section {
  background-color: var(--branco);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 44px 20px;
  border-top: 1px solid var(--cinza-borda);
}

.warranty-badge-img {
  width: 320px;
  height: 320px;
  max-width: 85%;
  object-fit: contain;
  margin-bottom: -55px;
  filter: drop-shadow(0 10px 30px rgba(19, 38, 68, 0.14));
}

.warranty-subtitle {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--verde-sabio);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.warranty-title {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--azul-escuro);
  margin-bottom: 14px;
  line-height: 1.25;
}

.warranty-text {
  font-size: 0.9rem;
  color: var(--texto-suave);
  line-height: 1.55;
  max-width: 420px;
  margin: 0 auto;
}

/* -------------------------------------------------------------
   12. SEÇÃO DE PERGUNTAS FREQUENTES (FAQ)
   ------------------------------------------------------------- */
.faq-section {
  background-color: var(--fundo-pagina);
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1.5px solid var(--cinza-borda);
  border-radius: var(--borda-raio-sm);
  overflow: hidden;
  background-color: var(--branco);
  box-shadow: 0 2px 8px rgba(19, 38, 68, 0.03);
  transition: var(--transicao);
}

.faq-item:hover {
  border-color: rgba(94, 139, 117, 0.4);
}

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--azul-escuro);
  text-align: left;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--verde-sabio);
  margin-left: 10px;
  transition: transform 0.25s ease;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  background-color: var(--branco);
}

.faq-content-inner {
  padding: 16px;
  font-size: 0.82rem;
  color: var(--texto-suave);
  line-height: 1.55;
  border-top: 1px dashed var(--cinza-borda);
}

.faq-item.active .faq-content {
  max-height: 600px;
  transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* -------------------------------------------------------------
   13. FOOTER (DARK INK NAVY)
   ------------------------------------------------------------- */
.footer {
  width: 100%;
  background: linear-gradient(180deg, #132644 0%, #0D1B30 100%);
  color: var(--branco);
  padding: 32px 20px;
  text-align: center;
  border-top: 3px solid var(--ouro-amber);
}

.footer-copyright {
  font-size: 0.78rem;
  color: #94A3B8;
  margin: 0;
}

/* Fade in Scroll */
.fade-in-element {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.fade-in-element.visible {
  opacity: 1;
  transform: translateY(0);
}