/* ─── CORMORANT GARAMOND ITALIC (below-fold) ─── */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 300 700;
  font-display: swap;
  src: url('assets/fonts/cormorant-garamond-italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 300 700;
  font-display: swap;
  src: url('assets/fonts/cormorant-garamond-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

/* ─── SEÇÕES ─── */
.section { padding: 80px 24px; }
.section-inner { max-width: 860px; margin: 0 auto; }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  color: var(--ink);
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.2;
}
.section-title em {
  font-style: italic;
  color: var(--purple);
}
.section-sub {
  text-align: center;
  font-size: 15px;
  color: var(--muted);
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* ─── DOR ─── */
.dor-section { background: var(--white); }
.dor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.dor-card {
  background: #fdf8ff;
  border: 1px solid rgba(220,38,38,0.12);
  border-radius: 16px;
  padding: 24px;
  position: relative;
}
.dor-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(220,38,38,0.4), rgba(220,38,38,0.1));
  border-radius: 16px 16px 0 0;
}
.dor-icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}
.dor-title {
  font-size: 15px;
  font-weight: 600;
  color: #991b1b;
  margin-bottom: 8px;
}
.dor-desc {
  font-size: 13.5px;
  color: #666;
  line-height: 1.6;
}

/* ─── SOLUÇÃO ─── */
.solucao-section { background: var(--off); }
.solucao-demo {
  background: linear-gradient(145deg, var(--purple-deep), var(--purple-dark));
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 48px;
}
.solucao-demo::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(249,115,22,0.15), transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(34,211,238,0.1), transparent 50%);
}
.solucao-demo > * { position: relative; z-index: 1; }
.solucao-demo-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 600;
  color: white;
  margin-bottom: 8px;
}
.solucao-demo-title span {
  background: linear-gradient(135deg, var(--orange-light), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.solucao-demo-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
}

.demo-steps {
  display: flex;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.demo-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 100px;
  position: relative;
}
.demo-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -16px;
  top: 16px;
  color: rgba(255,255,255,0.2);
  font-size: 16px;
}
.demo-step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(139,92,246,0.4);
  background: rgba(139,92,246,0.15);
  color: var(--violet-light);
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  display: flex;
  align-items: center;
  justify-content: center;
}
.demo-step-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-align: center;
  max-width: 80px;
  line-height: 1.4;
}

.demo-resultado {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(139,92,246,0.3);
  border-radius: 16px;
  padding: 20px 24px;
  display: inline-block;
  min-width: 280px;
}
.demo-resultado-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 6px;
}
.demo-resultado-preco {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  background: linear-gradient(135deg, var(--orange-light), white, var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.demo-resultado-preco sup { font-size: 20px; vertical-align: super; }
.demo-resultado-tag {
  display: inline-block;
  margin-top: 8px;
  background: rgba(34,211,238,0.1);
  border: 1px solid rgba(34,211,238,0.25);
  color: var(--cyan);
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 50px;
}

/* ─── BENEFÍCIOS ─── */
.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.beneficio-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s;
}
.beneficio-card:hover {
  border-color: rgba(139,92,246,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(139,92,246,0.08);
}
.beneficio-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, rgba(139,92,246,0.12), rgba(249,115,22,0.08));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}
.beneficio-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.beneficio-desc {
  font-size: 14px;
  color: #888;
  line-height: 1.6;
}

/* ─── PARA QUEM É ─── */
.paraquem-section { background: white; }
.paraquem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.paraquem-col { border-radius: 16px; padding: 28px; }
.paraquem-col.sim {
  background: #f0fdf4;
  border: 1px solid rgba(22,163,74,0.2);
}
.paraquem-col.nao {
  background: #fef2f2;
  border: 1px solid rgba(220,38,38,0.15);
}
.paraquem-col-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.paraquem-col.sim .paraquem-col-title { color: #166534; }
.paraquem-col.nao .paraquem-col-title { color: #991b1b; }
.paraquem-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13.5px;
  color: #444;
  line-height: 1.5;
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.paraquem-item:last-child { border-bottom: none; }
.paraquem-check { flex-shrink: 0; font-size: 14px; margin-top: 1px; }

/* ─── O QUE ESTÁ INCLUSO ─── */
.incluso-section { background: var(--off); }
.incluso-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-bottom: 40px;
}
.incluso-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
}
.incluso-card-icon { font-size: 32px; margin-bottom: 12px; display: block; }
.incluso-card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.incluso-card-desc { font-size: 13px; color: #888; line-height: 1.5; }
.incluso-card-bonus {
  border-color: rgba(249,115,22,0.35);
  background: linear-gradient(135deg, #fffaf5, #fff8f0);
}
.badge-bonus {
  display: inline-block;
  background: linear-gradient(135deg, var(--orange), #ff6b00);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 2px 7px;
  border-radius: 50px;
  vertical-align: middle;
  margin-left: 4px;
  text-transform: uppercase;
}

/* ─── PROVA SOCIAL ─── */
.prova-section { background: white; }
.depos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.depo-card {
  background: #faf8ff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}
.depo-stars { color: var(--orange); font-size: 14px; margin-bottom: 12px; }
.depo-text {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}
.depo-author { display: flex; align-items: center; gap: 10px; }
.depo-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--violet));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
}
.depo-name { font-size: 14px; font-weight: 600; color: var(--ink); }
.depo-role { font-size: 12px; color: var(--muted); }

/* ─── OFERTA ─── */
.oferta-section {
  background: linear-gradient(160deg, var(--purple-deep), var(--purple-dark));
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.oferta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(249,115,22,0.12), transparent 55%),
    radial-gradient(ellipse at 85% 50%, rgba(34,211,238,0.08), transparent 55%);
}
.oferta-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.oferta-tag {
  display: inline-block;
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.35);
  color: var(--orange-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.oferta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  color: white;
  line-height: 1.2;
  margin-bottom: 32px;
}
.oferta-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 40px 32px;
  margin-bottom: 24px;
}
.oferta-de {
  font-size: 14px;
  color: rgba(255,255,255,0.35);
  text-decoration: line-through;
  margin-bottom: 4px;
}
.oferta-por {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.oferta-preco {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 300;
  background: linear-gradient(135deg, var(--orange-light), white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}
.oferta-preco sup { font-size: 28px; vertical-align: super; margin-right: 4px; }
.oferta-parcela {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 28px;
}
.oferta-lista {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}
.oferta-lista li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  line-height: 1.4;
}
.oferta-lista li:last-child { border-bottom: none; }
.oferta-check { color: #4ade80; flex-shrink: 0; margin-top: 1px; }
.oferta-garantia {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-top: 16px;
}

/* ─── FAQ ─── */
.faq-section { background: var(--off); }
.faq-list { max-width: 680px; margin: 0 auto; }
.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-question {
  padding: 18px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
}
.faq-question:hover { background: #faf8ff; }
.faq-arrow {
  color: var(--violet);
  font-size: 18px;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  font-size: 13.5px;
  color: #666;
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer-inner { padding: 0 20px 18px; }

/* ─── FOOTER ─── */
.footer {
  background: var(--purple-deep);
  padding: 40px 24px;
  text-align: center;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: white;
  margin-bottom: 8px;
}
.footer-brand span { color: var(--orange-light); }
.footer-text { font-size: 13px; color: rgba(255,255,255,0.3); line-height: 1.6; }
.footer-eco {
  margin-top: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.2);
}

/* ─── VÍDEO HERO ─── */
.hero-video-wrap {
  margin-bottom: 36px;
  animation: fadeDown 0.6s 0.35s ease both;
}
.hero-video-box {
  max-width: 320px;
  margin: 0 auto;
}
.hero-video-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
}
.hero-video-frame {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(139,92,246,0.3);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  background: var(--purple-deep);
}
.hero-video-frame iframe {
  width: 100%;
  aspect-ratio: 9/16;
  display: block;
  border: none;
}
.hero-video-placeholder {
  aspect-ratio: 9/16;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(135deg, rgba(45,24,84,0.8), rgba(74,40,120,0.6));
}
.hero-video-play {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #ff6b00);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
  padding-left: 4px;
  box-shadow: 0 8px 24px rgba(249,115,22,0.4);
}
.hero-video-placeholder-text {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.5px;
}

/* ─── FACADE DO VÍDEO ─── */
.hero-video-facade {
  cursor: pointer;
  position: relative;
}
.hero-video-facade img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}
.hero-video-facade .hero-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.2s, box-shadow 0.2s;
}
.hero-video-facade:hover .hero-video-play {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 12px 32px rgba(249,115,22,0.55);
}
.hero-video-facade iframe {
  width: 100%;
  aspect-ratio: 9/16;
  display: block;
  border: none;
  border-radius: 20px;
}

/* ─── ANIMAÇÃO BELOW-FOLD ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── MOBILE ─── */
@media (max-width: 600px) {
  .demo-steps { gap: 20px; }
  .demo-step:not(:last-child)::after { display: none; }
  .paraquem-grid { grid-template-columns: 1fr; }
  .oferta-preco { font-size: 56px; }
  .section { padding: 60px 20px; }
  .solucao-demo { padding: 32px 20px; }
}
