/* ============================================================
   ICP — Imersão Cabeleireiro PRO — Sales Page
   Identidade: azul-marinho (#0c1b33) + teal (#17a89a / #2dd4bf)
   Mobile-first | breakpoints: 600px, 1024px
   ============================================================ */

:root {
  --cor-navy: #0c1b33;
  --cor-navy-2: #0a1628;
  --cor-teal: #17a89a;
  --cor-teal-hover: #128577;
  --cor-teal-claro: #2dd4bf;
  --cor-claro: #f3f6f8;
  --cor-texto: #14202e;
  --cor-texto-suave: #54657a;
  --cor-fundo: #ffffff;
  --cor-borda: #e2e8ee;

  --esp-xs: 8px;
  --esp-sm: 16px;
  --esp-md: 24px;
  --esp-lg: 40px;
  --esp-xl: 56px;
  --esp-2xl: 56px;

  --radius-card: 14px;
  --radius-botao: 10px;
  --sombra-suave: 0 2px 12px rgba(12, 27, 51, 0.06);

  --fonte-base: 'Poppins', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--fonte-base);
  color: var(--cor-texto);
  background: var(--cor-fundo);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding-left: var(--esp-md);
  padding-right: var(--esp-md);
}

.container--estreito { max-width: 700px; }

/* ===== HERO ===== */
.hero {
  background: var(--cor-navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Foto de fundo suave no mobile (some no desktop onde aparece a foto real) */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('_images/outros/sobre-rafael.webp') center 15% / cover no-repeat;
  opacity: 0.10;
  pointer-events: none;
  z-index: 0;
}

.hero > * { position: relative; z-index: 1; }

.hero-topo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--esp-md);
  padding-bottom: var(--esp-md);
  flex-wrap: wrap;
  gap: var(--esp-sm);
}

.logo-hero { height: 40px; width: auto; }

.hero-badge {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 5px 14px;
  white-space: nowrap;
}

.hero-grade {
  display: flex;
  flex-direction: column;
  gap: var(--esp-md);
  padding-top: var(--esp-lg);
  padding-bottom: var(--esp-lg);
}

.hero-conteudo {
  display: flex;
  flex-direction: column;
  gap: var(--esp-sm);
}

.hero-rotulo {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-rotulo-tag {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--cor-teal-claro);
}

.hero-rotulo span:last-child {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}

.hero-headline {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #fff;
}

.hero-headline .destaque { color: var(--cor-teal-claro); }

.hero-intro {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
}

.hero-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--esp-xs);
}

.hero-bullets li {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.90);
  line-height: 1.6;
}

.barra-vagas-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--esp-xs);
}

.barra-vagas {
  height: 12px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  overflow: hidden;
}

.barra-vagas-fill {
  width: 87%;
  height: 100%;
  background: linear-gradient(90deg, var(--cor-teal-claro), var(--cor-teal));
  border-radius: 999px;
}

.vagas-texto {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}

.vagas-texto--clara { color: rgba(255, 255, 255, 0.75); }

.hero-imagem {
  display: none;
  line-height: 0;
  justify-content: center;
}

.hero-foto {
  width: 100%;
  max-width: 320px;
  max-height: 260px;
  object-fit: cover;
  object-position: top center;
  border-radius: 14px 14px 0 0;
  display: block;
}

/* ===== BOTÃO CTA (âncora interna → #oferta) ===== */
.botao-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cor-teal);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
  padding: 18px 28px;
  border-radius: var(--radius-botao);
  box-shadow: 0 8px 24px rgba(23, 168, 154, 0.35);
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0;
  white-space: nowrap;
  width: 100%;
}

.botao-cta:hover {
  background: var(--cor-teal-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(23, 168, 154, 0.45);
}

.botao-cta--hero { font-size: 14px; padding: 20px 32px; }

/* ===== BOTÃO OFERTA (checkout — ação primária) ===== */
.botao-oferta {
  display: block;
  background: var(--cor-teal);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
  padding: 22px 32px;
  border-radius: var(--radius-botao);
  box-shadow: 0 10px 30px rgba(23, 168, 154, 0.45);
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0;
  white-space: nowrap;
  width: 100%;
}

.botao-oferta:hover {
  background: var(--cor-teal-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(23, 168, 154, 0.55);
}

/* ===== BOTÃO WHATSAPP ===== */
.botao-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--esp-xs);
  background: #25d366;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.3;
  padding: 18px 32px;
  border-radius: var(--radius-botao);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transition: transform 0.15s ease, background 0.15s ease;
  text-align: center;
  white-space: nowrap;
  width: 100%;
}

.botao-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
}

/* ===== CTA CENTRALIZADO ===== */
.cta-centro {
  display: flex;
  justify-content: center;
  margin-top: var(--esp-lg);
}

/* ===== SEÇÕES ===== */
.secao { padding: var(--esp-2xl) 0; }
.secao--clara { background: var(--cor-claro); }
.secao--escura { background: var(--cor-navy); color: #fff; }

/* ===== TIPOGRAFIA ===== */
.titulo-secao {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: var(--esp-md);
  color: var(--cor-navy);
}

.titulo--centro { text-align: center; }
.titulo--claro { color: #fff; }

.texto-corpo {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: var(--esp-md);
  color: var(--cor-texto);
}

.texto--centro { text-align: center; }
.texto--claro { color: rgba(255, 255, 255, 0.90); }
.texto--suave { color: var(--cor-texto-suave); }

.frase-forte {
  font-size: 17px;
  font-weight: 600;
  color: var(--cor-navy);
  margin-bottom: var(--esp-md);
}

.frase-destaque {
  font-size: 18px;
  font-weight: 600;
  font-style: italic;
  color: rgba(255, 255, 255, 0.95);
  border-left: 4px solid var(--cor-teal-claro);
  padding: var(--esp-sm) var(--esp-md);
  margin: var(--esp-lg) 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
}

/* ===== LISTAS CHECK ===== */
.lista-check {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--esp-sm);
}

.lista-check li { font-size: 15px; line-height: 1.7; }
.lista-check--clara li { color: rgba(255, 255, 255, 0.90); }
.lista-check--centro { align-items: center; margin-bottom: var(--esp-lg); }

/* ===== VÍDEO ===== */
.video-wrap {
  margin: var(--esp-lg) 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  line-height: 0;
}

/* ===== PARA QUEM ===== */
.para-quem-grade {
  display: flex;
  flex-direction: column;
  gap: var(--esp-md);
}

.para-quem-card {
  border-radius: var(--radius-card);
  padding: var(--esp-lg);
  box-shadow: var(--sombra-suave);
}

.para-quem-card--nao {
  background: #fff5f5;
  border: 1px solid #fecaca;
}

.para-quem-card--sim {
  background: #f0faf8;
  border: 1px solid rgba(23, 168, 154, 0.25);
}

.para-quem-titulo {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: var(--esp-md);
}

.para-quem-titulo--nao { color: #dc2626; }
.para-quem-titulo--sim { color: var(--cor-teal-hover); }

.para-quem-lista {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--esp-xs);
}

.para-quem-lista li {
  font-size: 15px;
  line-height: 1.6;
  padding-left: var(--esp-sm);
  border-left: 2px solid var(--cor-borda);
}

.para-quem-card--nao .para-quem-lista li { border-left-color: #fca5a5; }
.para-quem-card--sim .para-quem-lista li { border-left-color: rgba(23, 168, 154, 0.35); }

/* ===== GRADE DORES ===== */
.grade-dores {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--esp-md);
}

.card-dor {
  background: var(--cor-fundo);
  border: 1px solid var(--cor-borda);
  border-radius: var(--radius-card);
  padding: var(--esp-md) var(--esp-lg);
  box-shadow: var(--sombra-suave);
  border-top: 3px solid var(--cor-navy);
}

.dor-titulo {
  font-size: 16px;
  font-weight: 700;
  color: var(--cor-navy);
  margin-bottom: var(--esp-xs);
}

.card-dor p {
  font-size: 15px;
  color: var(--cor-texto-suave);
  font-style: italic;
  line-height: 1.6;
}

/* ===== LISTA APRENDE ===== */
.lista-aprende {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--esp-md);
  margin-top: var(--esp-md);
}

.lista-aprende li {
  display: flex;
  align-items: flex-start;
  gap: var(--esp-sm);
  font-size: 16px;
  line-height: 1.7;
}

.check-teal {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(23, 168, 154, 0.12);
  color: var(--cor-teal-hover);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  margin-top: 2px;
}

/* ===== PASSOS NUMERADOS ===== */
.passos-num {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--esp-md);
  margin: var(--esp-lg) 0;
}

.passos-num li {
  display: flex;
  align-items: flex-start;
  gap: var(--esp-md);
  font-size: 16px;
  line-height: 1.7;
}

.passo-n {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cor-navy);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

/* ===== CRONOGRAMA ===== */
.cronograma {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: var(--esp-lg);
  margin-left: auto;
  margin-right: auto;
  max-width: 260px;
  border-left: 3px solid var(--cor-teal);
  padding-left: var(--esp-lg);
  position: relative;
}

.cronograma li {
  display: flex;
  align-items: baseline;
  gap: var(--esp-sm);
  padding: var(--esp-sm) 0;
  border-bottom: 1px solid var(--cor-borda);
  position: relative;
}

.cronograma li:last-child { border-bottom: none; }

.cronograma li::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--esp-lg) - 6px);
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cor-teal);
  border: 2px solid var(--cor-fundo);
  box-shadow: 0 0 0 2px var(--cor-teal);
}

.crono-hora {
  font-size: 18px;
  font-weight: 700;
  color: var(--cor-navy);
  min-width: 64px;
}

.crono-desc { font-size: 16px; color: var(--cor-texto); }

.nota {
  font-size: 13px;
  color: var(--cor-texto-suave);
  font-style: italic;
  margin-top: var(--esp-md);
}

/* ===== DEPOIMENTOS ===== */
.grade-depoimentos {
  margin-top: var(--esp-lg);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--esp-lg);
  justify-content: center;
}

.depoimento-video-wrap {
  position: relative;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--cor-claro);
}

@media (min-width: 600px) {
  .depoimento-video-wrap { max-width: 340px; }
}

.depoimento-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.frame-vazio {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--esp-sm);
  background: var(--cor-claro);
  border: 2px dashed var(--cor-borda);
  border-radius: var(--radius-card);
  padding: var(--esp-2xl) var(--esp-lg);
  color: var(--cor-texto-suave);
  text-align: center;
}

.frame-vazio span { font-size: 16px; font-weight: 600; }
.frame-vazio small { font-size: 13px; max-width: 40ch; line-height: 1.5; }

/* ===== COUNTDOWN (seção oferta) ===== */
.oferta-countdown-wrap {
  margin: var(--esp-xl) 0 var(--esp-md);
  text-align: center;
}

.countdown-label {
  font-size: 17px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--esp-md);
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 420px;
  margin: 0 auto;
}

.countdown-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(45, 212, 191, 0.25);
  border-radius: 14px;
  padding: var(--esp-sm) var(--esp-xs);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.countdown-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  color: var(--cor-teal-claro);
}

.countdown-unit {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.65);
}

.oferta-data {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.80);
  margin-bottom: var(--esp-lg);
}

.barra-vagas-wrap--oferta { margin-bottom: var(--esp-lg); }

/* ===== CARD DE OFERTA ===== */
.oferta-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-card);
  padding: var(--esp-lg);
  text-align: center;
  margin-bottom: var(--esp-lg);
}

.preco-de {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 4px;
}

.preco-de del { text-decoration: line-through; }

.preco-por-label {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.70);
  margin-bottom: 4px;
}

.preco-principal {
  font-size: 44px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: var(--esp-md);
}

.oferta-seguranca {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: var(--esp-sm);
}

.oferta-justificativa {
  max-width: 54ch;
  margin: 0 auto;
  font-size: 15px;
}

/* ===== GARANTIA ===== */
.garantia-bloco {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.garantia-emoji {
  font-size: 54px;
  margin-bottom: var(--esp-md);
  display: block;
}

/* ===== SOBRE ===== */
.sobre-grade {
  display: flex;
  flex-direction: column;
  gap: var(--esp-lg);
  margin-top: var(--esp-lg);
}

.sobre-foto-wrap { display: flex; justify-content: center; }

.sobre-foto {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: var(--radius-card);
  object-fit: cover;
  object-position: top center;
  box-shadow: var(--sombra-suave);
}

.sobre-nome {
  font-size: 22px;
  font-weight: 700;
  color: var(--cor-navy);
  margin-bottom: var(--esp-md);
}

.sobre-bio p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: var(--esp-sm);
  color: var(--cor-texto);
}

/* ===== FAQ ===== */
.faq-lista {
  display: flex;
  flex-direction: column;
  gap: var(--esp-xs);
  margin-top: var(--esp-md);
}

.faq-item {
  border: 1px solid var(--cor-borda);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--cor-fundo);
}

.faq-pergunta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--esp-md) var(--esp-lg);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  color: var(--cor-navy);
  gap: var(--esp-sm);
}

.faq-pergunta::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  flex-shrink: 0;
  color: var(--cor-teal);
  transition: transform 0.2s ease;
  line-height: 1;
}

.faq-item[open] .faq-pergunta::after { content: '−'; }
.faq-pergunta::-webkit-details-marker { display: none; }

.faq-resposta {
  padding: var(--esp-sm) var(--esp-lg) var(--esp-md);
  font-size: 15px;
  color: var(--cor-texto-suave);
  line-height: 1.75;
  border-top: 1px solid var(--cor-borda);
}

/* ===== SUPORTE ===== */
.suporte-titulo { margin-top: var(--esp-xl); }

/* ===== RODAPÉ ===== */
.rodape {
  background: var(--cor-navy-2);
  color: #fff;
  padding: var(--esp-xl) 0;
}

.rodape-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--esp-sm);
  text-align: center;
}

.logo-rodape { height: 44px; width: auto; margin-bottom: var(--esp-xs); }
.rodape-copyright { font-size: 14px; font-weight: 600; }
.rodape-contato { font-size: 13px; opacity: 0.80; }

.rodape-aviso {
  font-size: 12px;
  opacity: 0.50;
  max-width: 52ch;
  line-height: 1.6;
  margin-top: var(--esp-sm);
}

/* ============================================================
   TABLET (>= 600px)
   ============================================================ */
@media (min-width: 600px) {
  .container { padding-left: var(--esp-lg); padding-right: var(--esp-lg); }

  :root {
    --esp-xl: 64px;
    --esp-2xl: 72px;
  }

  .logo-hero { height: 48px; }

  .hero-headline { font-size: 24px; }

  .hero-imagem { display: flex; }

  .hero-foto {
    max-width: 360px;
    max-height: 300px;
  }

  .titulo-secao { font-size: 24px; }

  .para-quem-grade { flex-direction: row; }
  .para-quem-card { flex: 1; }

  .grade-dores { grid-template-columns: repeat(2, 1fr); }

  .botao-cta { font-size: 16px; width: auto; }
  .botao-cta--hero { width: 100%; }

  .botao-oferta { font-size: 17px; }

  .botao-whatsapp { width: auto; }

  .countdown { gap: var(--esp-sm); max-width: 500px; }
  .countdown-item { padding: var(--esp-md); }
  .countdown-num { font-size: 38px; }

  .preco-principal { font-size: 52px; }
}

/* ============================================================
   DESKTOP (>= 1024px)
   ============================================================ */
@media (min-width: 1024px) {
  :root {
    --esp-xl: 72px;
    --esp-2xl: 96px;
  }

  .hero::before { display: none; }

  .grade-depoimentos { grid-template-columns: repeat(2, 340px); }

  .hero-grade {
    flex-direction: row;
    align-items: center;
    gap: var(--esp-xl);
    padding-top: var(--esp-xl);
    padding-bottom: var(--esp-xl);
  }

  .hero-conteudo {
    flex: 1;
    padding-bottom: 0;
  }

  .hero-imagem {
    display: flex;
    flex-shrink: 0;
    width: 420px;
    align-self: center;
  }

  .hero-foto {
    max-width: 100%;
    width: 420px;
    max-height: none;
    height: auto;
    aspect-ratio: 3 / 4;
    border-radius: 20px;
    object-position: center top;
    object-fit: cover;
  }

  .hero-headline { font-size: 28px; }

  .titulo-secao { font-size: 28px; }

  .grade-dores { grid-template-columns: repeat(3, 1fr); }

  .sobre-grade { flex-direction: row; align-items: flex-start; }
  .sobre-foto-wrap { flex-shrink: 0; }
  .sobre-foto { max-width: 360px; }

  .countdown-num { font-size: 44px; }
  .preco-principal { font-size: 60px; }

  .oferta-card { padding: var(--esp-xl); }
}
