/* -------------------------------------------------------------
   1. DIREÇÃO VISUAL E PALETA DE CORES (ATLAS VISUAL INFECTOLOGIA)
   100% Fiel à estrutura e estética de index.html
   ------------------------------------------------------------- */
:root {
  --azul-principal: #075D68;
  --azul-forte: #073B5C;
  --azul-escuro: #073B5C;
  --azul-claro: #19B7B0;
  --ciano: #19B7B0;
  --amarelo: #f8ca4f;
  --laranja: #078C8C;
  --creme: #DDF7F4;
  --branco: #ffffff;
  --texto-escuro: #263840;
  --texto-suave: #52677a;
  --verde-sucesso: #25a95b;
  --vermelho-erro: #dc4d4d;

  --borda-raio: 24px;
  --borda-raio-sm: 16px;
  --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: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #e8eef4;
  color: var(--texto-escuro);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* -------------------------------------------------------------
   2. CONFIGURAÇÃO MOBILE-FIRST
   ------------------------------------------------------------- */
.page-container {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  background-color: var(--branco);
  min-height: 100vh;
  box-shadow: 0 0 32px rgba(7, 59, 92, 0.15);
  position: relative;
  overflow-x: hidden;
  padding-top: 0;
}

/* Títulos e Tipografia */
h1,
h2,
h3,
h4 {
  font-weight: 900;
  color: var(--azul-escuro);
  line-height: 1.25;
}

p {
  color: var(--texto-suave);
  font-size: 0.92rem;
}

/* Estilo de Destaque Pincelado / Underline */
.hl-yellow,
.hl-cyan,
.hl-orange,
.hl-white {
  position: relative;
  display: inline-block;
  z-index: 1;
  font-weight: 900;
}

.hl-yellow::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 100%;
  height: 6px;
  background-color: var(--amarelo);
  z-index: -1;
  border-radius: 3px;
  opacity: 0.8;
}

.hl-cyan::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 100%;
  height: 6px;
  background-color: var(--ciano);
  z-index: -1;
  border-radius: 3px;
  opacity: 0.8;
}

.hl-orange::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 100%;
  height: 6px;
  background-color: var(--laranja);
  z-index: -1;
  border-radius: 3px;
  opacity: 0.8;
}

.hl-white::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 100%;
  height: 6px;
  background-color: var(--branco);
  z-index: -1;
  border-radius: 3px;
  opacity: 0.4;
}

/* Botão com Visual Cartonizado 2D */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 0 24px;
  border-radius: 27px;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  border: 3px solid var(--texto-escuro);
  cursor: pointer;
  box-shadow: 4px 4px 0px var(--texto-escuro);
  width: 100%;
  text-align: center;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
  box-sizing: border-box;
}

.btn:active {
  transform: translate(3px, 3px);
  box-shadow: 1px 1px 0px var(--texto-escuro);
}

.btn-laranja {
  background-color: var(--laranja);
  color: var(--branco);
}

.btn-laranja:hover {
  background-color: #08a3a3;
}

.btn-azul {
  background-color: var(--azul-principal);
  color: var(--branco);
}

.btn-azul:hover {
  background-color: var(--azul-forte);
}

.btn-amarelo {
  background-color: var(--amarelo);
  color: var(--texto-escuro);
}

.btn-amarelo:hover {
  background-color: #fbd672;
}

.btn-verde {
  background-color: var(--verde-sucesso);
  color: var(--branco);
}

.btn-verde:hover {
  background-color: #38c370;
}

/* Cards Estilo Desenho Animado */
.cartoon-card {
  background: var(--branco);
  border: 3px solid var(--texto-escuro);
  border-radius: var(--borda-raio);
  padding: 20px;
  box-shadow: 4px 4px 0px var(--texto-escuro);
  position: relative;
}

.section-spacing {
  padding: 44px 16px;
}

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

.section-title {
  font-size: 1.55rem;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 0.88rem;
  color: var(--texto-escuro);
  opacity: 0.85;
}

/* Elementos de Imagem Padrão */
img.responsive-img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: var(--borda-raio-sm);
  margin: 0 auto;
  border: 3px solid var(--texto-escuro);
  box-shadow: 4px 4px 0px var(--texto-escuro);
}

/* -------------------------------------------------------------
   3. BARRA FIXA NO TOPO COM CRONÔMETRO
   ------------------------------------------------------------- */
.top-bar {
  width: 100%;
  background-color: var(--azul-escuro);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  box-sizing: border-box;
  height: 52px;
}

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

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

.top-bar-timer {
  display: flex;
  align-items: center;
  gap: 3px;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 0.95rem;
  color: var(--texto-escuro);
  background-color: var(--branco);
  padding: 1px 8px;
  border: 2px solid var(--texto-escuro);
  border-radius: 8px;
  line-height: 1.1;
}

.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, #ddf7f4 0%, var(--branco) 100%);
  padding: 24px 16px 36px 16px;
  text-align: center;
  position: relative;
}

.hero-tag {
  display: inline-block;
  font-size: 0.58rem;
  font-weight: 800;
  color: var(--azul-escuro);
  background: var(--branco);
  border: 1.5px solid var(--texto-escuro);
  padding: 3px 10px;
  border-radius: 14px;
  box-shadow: 2px 2px 0px var(--texto-escuro);
  margin-bottom: 12px;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 0.2px;
  max-width: 100%;
}

.hero-headline-1 {
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--azul-escuro);
  margin-bottom: 14px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.hero-headline-1 .hl-cyan {
  color: var(--texto-escuro);
  background-color: var(--ciano);
  padding: 2px 14px;
  border-radius: 14px;
  border: 3px solid var(--texto-escuro);
  box-shadow: 4px 4px 0px var(--texto-escuro);
  display: inline-block;
  margin-top: 4px;
}

.hero-headline-1 .hl-yellow {
  color: var(--texto-escuro);
  background-color: var(--amarelo);
  padding: 2px 14px;
  border-radius: 14px;
  border: 3px solid var(--texto-escuro);
  box-shadow: 4px 4px 0px var(--texto-escuro);
  display: inline-block;
  margin-top: 4px;
}

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

.hero-mockup-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto 24px auto;
  display: flex;
  justify-content: center;
}

.plan-mockup-wrapper {
  margin: 14px auto 20px auto;
  width: calc(100% + 16px);
  margin-left: -8px;
  margin-right: -8px;
  max-width: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-mockup-img,
.plan-mockup-img {
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  margin: 0 auto !important;
  object-fit: contain;
}

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

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

/* Faixa de Benefícios Rápidos */
.quick-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 20px 0;
}

.quick-benefit-card {
  background-color: var(--branco);
  border: 3px solid var(--texto-escuro);
  border-radius: var(--borda-raio-sm);
  padding: 12px 10px;
  text-align: center;
  box-shadow: 3px 3px 0px var(--texto-escuro);
}

.quick-benefit-icon {
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.quick-benefit-title {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--azul-escuro);
}

/* -------------------------------------------------------------
   5. SEÇÃO “PARA QUEM É ESTE MATERIAL”
   ------------------------------------------------------------- */
.audience-section {
  background-color: #ddf7f4;
}

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

.audience-card {
  background-color: var(--branco);
  border: 3px solid var(--texto-escuro);
  border-radius: var(--borda-raio-sm);
  padding: 24px 16px;
  text-align: center;
  box-shadow: 4px 4px 0px var(--texto-escuro);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: 6px 6px 0px var(--texto-escuro);
}

.audience-card-icon {
  width: 130px;
  height: 130px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  background: transparent;
  border: none;
  box-shadow: none;
}

.audience-card-icon img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

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

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

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

.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: 12px;
  width: max-content;
}

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

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

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

@keyframes scrollLeft {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(calc(-50% - 6px), 0, 0); }
}

.carousel-card-img {
  width: 260px;
  height: 368px;
  object-fit: cover;
  border: 3px solid var(--texto-escuro);
  border-radius: var(--borda-raio-sm);
  box-shadow: 4px 4px 0px var(--texto-escuro);
  flex-shrink: 0;
  display: block;
  background-color: var(--branco);
  box-sizing: border-box;
}

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

/* -------------------------------------------------------------
   7. SEÇÃO DOS 15 MÓDULOS
   ------------------------------------------------------------- */
.modules-section {
  background-color: #f4f8fa;
}

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

.module-card {
  background-color: var(--branco);
  border: 3px solid var(--texto-escuro);
  border-radius: var(--borda-raio-sm);
  padding: 16px;
  box-shadow: 4px 4px 0px var(--texto-escuro);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.module-num {
  width: 38px;
  height: 38px;
  background-color: var(--azul-escuro);
  color: var(--ciano);
  border-radius: 10px;
  border: 2px solid var(--texto-escuro);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.95rem;
  flex-shrink: 0;
  box-shadow: 2px 2px 0px var(--texto-escuro);
}

.module-info {
  flex: 1;
}

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

.module-desc {
  font-size: 0.75rem;
  color: var(--texto-suave);
  line-height: 1.35;
  margin-bottom: 6px;
}

.module-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--azul-escuro);
  background-color: var(--creme);
  padding: 2px 8px;
  border-radius: 8px;
  border: 1px solid var(--texto-escuro);
}

/* -------------------------------------------------------------
   8. SEÇÃO SEÇÃO DE BÔNUS EXCLUSIVOS
   ------------------------------------------------------------- */
.bonus-section {
  background-color: var(--azul-principal);
}

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

.bonus-section .section-title .hl-orange {
  color: #96f2ff;
}

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

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

.bonus-card {
  background: var(--branco);
  border: 3px solid var(--texto-escuro);
  border-radius: var(--borda-raio);
  padding: 0;
  box-shadow: 4px 4px 0px var(--texto-escuro);
  position: relative;
  display: flex;
  flex-direction: column;
}

.bonus-badge {
  position: absolute;
  top: -12px;
  left: 16px;
  background-color: var(--laranja);
  color: var(--branco);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 10px;
  border: 2px solid var(--texto-escuro);
  box-shadow: 2px 2px 0px var(--texto-escuro);
  z-index: 15;
}

.bonus-image-wrapper {
  width: 100%;
  height: auto;
  border-bottom: 3px solid var(--texto-escuro);
  overflow: hidden;
  margin: 0;
  max-width: 100%;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.bonus-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  margin: 0 !important;
}

.bonus-title,
.bonus-desc,
.bonus-price {
  margin-left: 20px;
  margin-right: 20px;
}

.bonus-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--azul-escuro);
  margin-top: 18px;
  margin-bottom: 6px;
}

.bonus-desc {
  font-size: 0.78rem;
  line-height: 1.35;
  margin-bottom: 12px;
}

.bonus-price {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--texto-suave);
  margin-bottom: 20px;
}

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

.bonus-price strong {
  color: var(--verde-sucesso);
  font-size: 0.95rem;
}

/* -------------------------------------------------------------
   9. RESUMO DOS BÔNUS
   ------------------------------------------------------------- */
.bonus-summary-box {
  background-color: var(--branco);
  border: 3px solid var(--texto-escuro);
  border-radius: var(--borda-raio);
  padding: 20px;
  box-shadow: 4px 4px 0px var(--texto-escuro);
  text-align: center;
}

.summary-title {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--texto-suave);
  margin-bottom: 14px;
}

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

.summary-list li {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--texto-escuro);
  display: flex;
  justify-content: space-between;
}

.summary-list li span.val-label {
  max-width: 75%;
}

.summary-total {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--texto-suave);
  margin-bottom: 12px;
}

.summary-total span {
  text-decoration: line-through;
}

.summary-highlight-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--azul-escuro);
  margin-bottom: 4px;
}

.summary-free-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--verde-sucesso);
  color: var(--branco);
  border: 2px solid var(--texto-escuro);
  border-radius: var(--borda-raio-sm);
  padding: 6px 20px;
  box-shadow: 3px 3px 0px var(--texto-escuro);
  margin-top: 4px;
}

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

.summary-free-tag {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1px;
}

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

.section-tag {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--laranja);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

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

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

.plans-timer-card {
  background-color: var(--azul-escuro);
  border: 3px solid var(--texto-escuro);
  border-radius: var(--borda-raio-sm);
  width: 76px;
  height: 76px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 3px 3px 0px var(--texto-escuro);
}

.plans-timer-num {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--ciano);
  line-height: 1.1;
}

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

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

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

.plan-card {
  background: var(--branco);
  border: 3px solid var(--texto-escuro);
  border-radius: var(--borda-raio);
  padding: 24px 16px;
  box-shadow: 4px 4px 0px var(--texto-escuro);
  position: relative;
  text-align: center;
}

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

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

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

.plan-price {
  margin-bottom: 20px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 8px;
  text-align: center;
}

.plan-price-amount {
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--texto-escuro);
  line-height: 1.1;
  white-space: nowrap;
  display: inline-flex;
  align-items: baseline;
}

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

.plan-price-subtext {
  font-size: 0.75rem;
  color: var(--texto-suave);
  font-weight: 700;
  white-space: nowrap;
  display: inline-block;
}

.plan-card-featured .plan-price-amount {
  color: var(--branco);
}

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

.plan-features li {
  font-size: 0.8rem;
  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-sucesso);
  color: var(--branco);
  font-size: 0.6rem;
  border-radius: 50%;
  border: 1px solid var(--texto-escuro);
  margin-right: 8px;
  font-weight: 800;
  flex-shrink: 0;
}

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

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

.plan-card-featured {
  background-color: var(--azul-principal);
  border-color: var(--texto-escuro);
  color: var(--branco);
  transform: scale(1.01);
  box-shadow: 6px 6px 0px var(--texto-escuro);
}

.plan-card-featured .plan-title {
  color: var(--branco);
}

.plan-card-featured .plan-subheadline,
.plan-card-featured .plan-price-label,
.plan-card-featured .plan-price-subtext {
  color: var(--creme);
}

.plan-card-featured .plan-price {
  color: var(--branco);
}

.plan-card-featured .plan-features li {
  color: var(--branco);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--laranja);
  color: var(--branco);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 12px;
  border: 2px solid var(--texto-escuro);
  box-shadow: 2px 2px 0px var(--texto-escuro);
  white-space: nowrap;
}

.plan-bonus-box {
  border: 2px dashed rgba(255, 255, 255, 0.4);
  background-color: var(--azul-escuro);
  padding: 14px;
  border-radius: 18px;
  margin: 20px 0;
  text-align: left;
}

.plan-bonus-box-title {
  font-size: 0.72rem;
  font-weight: 900;
  color: var(--branco);
  margin-bottom: 12px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plan-bonus-item {
  background-color: var(--branco);
  border: 2px solid var(--texto-escuro);
  box-shadow: 3px 3px 0px var(--texto-escuro);
  border-radius: 20px;
  padding: 8px 12px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.plan-bonus-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--texto-escuro);
  background-color: var(--amarelo);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.plan-bonus-name {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--texto-escuro);
  line-height: 1.25;
}

/* -------------------------------------------------------------
   11. POP-UP PROMOCIONAL DO PLANO BÁSICO (MODAL)
   ------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(7, 59, 92, 0.9);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  padding: 20px 16px;
  overflow-y: auto;
  box-sizing: border-box;
}

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

.modal-card {
  background-color: var(--branco);
  border: 3px solid var(--texto-escuro);
  border-radius: var(--borda-raio);
  width: 100%;
  max-width: 390px;
  box-shadow: 6px 6px 0px var(--texto-escuro);
  padding: 24px 16px 18px 16px;
  text-align: center;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  margin: auto;
}

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

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--texto-suave);
  cursor: pointer;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

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

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

.modal-price-box {
  background-color: var(--creme);
  padding: 12px;
  border: 2px dashed var(--texto-escuro);
  border-radius: var(--borda-raio-sm);
  margin-bottom: 20px;
}

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

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

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

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

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

.warranty-badge-img {
  width: 240px;
  max-width: 85%;
  height: auto;
  object-fit: contain;
  margin: 0 auto 20px auto;
  display: block;
}

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

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

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

/* -------------------------------------------------------------
   13. SEÇÃO DE PERGUNTAS FREQUENTES (FAQ ACCORDION)
   ------------------------------------------------------------- */
.faq-section {
  background-color: var(--branco);
}

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

.faq-item {
  border: 3px solid var(--texto-escuro);
  border-radius: var(--borda-raio-sm);
  overflow: hidden;
  box-shadow: 3px 3px 0px var(--texto-escuro);
  background-color: var(--branco);
}

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

.faq-icon {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--azul-principal);
  margin-left: 10px;
  transition: transform 0.2s ease;
}

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

.faq-content-inner {
  padding: 14px 16px;
  font-size: 0.78rem;
  color: var(--texto-escuro);
  line-height: 1.4;
  border-top: 2px dashed var(--texto-escuro);
}

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

/* -------------------------------------------------------------
   14. FOOTER
   ------------------------------------------------------------- */
.footer {
  background-color: var(--azul-escuro);
  color: var(--branco);
  padding: 24px 20px;
  text-align: center;
}

.footer-copyright {
  font-size: 0.72rem;
  color: var(--branco);
  margin: 0;
  padding: 0;
}

.footer-disclaimer {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 12px;
  line-height: 1.35;
}

/* -------------------------------------------------------------
   ANIMAÇÃO DE SCROLL (FADE IN CARDS)
   ------------------------------------------------------------- */
.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);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-delay: -1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    background-attachment: initial !important;
    scroll-behavior: auto !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
  }

  .marquee-to-right,
  .marquee-to-left {
    animation: none !important;
  }

  .fade-in-element {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* -------------------------------------------------------------
   RESPONSIVIDADE MOBILE (SMARTPHONES E TELAS PEQUENAS)
   ------------------------------------------------------------- */
@media (max-width: 480px) {
  .plan-card {
    padding: 20px 12px;
  }

  .plan-mockup-wrapper {
    width: calc(100% + 24px);
    margin-left: -12px;
    margin-right: -12px;
  }

  .hero-headline-1 {
    font-size: 1.8rem;
  }

  .plans-timer-container {
    gap: 6px;
  }

  .plans-timer-card {
    width: 68px;
    height: 68px;
  }

  .plans-timer-num {
    font-size: 1.4rem;
  }
}

@media (max-width: 375px) {
  .plan-price-amount {
    font-size: 1.8rem;
  }

  .plans-timer-card {
    width: 62px;
    height: 62px;
  }

  .plans-timer-num {
    font-size: 1.25rem;
  }

  .btn {
    padding: 14px 16px;
    font-size: 0.88rem;
  }

  .hero-tag {
    font-size: 0.52rem;
    padding: 3px 8px;
  }
}
