/*
Theme Name: Pagina Vendas Jaque
Theme URI: https://example.com/
Author: Julia Rodrigues
Description: Tema WordPress gerado a partir de landing page HTML estática. Compatível com Elementor para criação/edição de páginas, com template estático da landing incluso.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: pagina-vendas-jaque
*/

:root {
  --pink-strong: #e6298a;
  --pink-mid: #ef6dad;
  --pink-soft: #f4b8d4;
  --pink-pale: #fae4ee;
  --pink-whisper: #fdf3f8;
  --cream: #faf6f2;
  --cream-deep: #f3ece5;
  --cream-warm: #f7ede2;
  --ink: #2a1a23;
  --ink-soft: #4d3a44;
  --ink-mute: #8a7782;
  --gold: #c7916a;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    radial-gradient(ellipse at 20% 10%, rgba(244, 184, 212, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(199, 145, 106, 0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(250, 228, 238, 0.15) 0%, transparent 70%);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

.btn-cta {
  display: inline-block;
  padding: 1.2rem 2.5rem;
  background: linear-gradient(180deg, var(--pink-strong) 0%, #c91879 100%);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(230, 41, 138, 0.3),
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(230, 41, 138, 0.4),
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s;
}

.btn-cta:hover::before { left: 100%; }

.btn-wrapper {
  text-align: center;
  padding: 2.5rem 1rem;
}

.btn-sub {
  display: block;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-style: italic;
}

/* HERO COMPOSTO */
.hero {
  padding: 1.5rem 1rem 3rem;
  position: relative;
}

.hero-frame {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
  /* Mais largo que alto pra caber na primeira dobra */
  aspect-ratio: 16 / 8;
  max-height: 78vh;
  min-height: 460px;
  background: var(--cream);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
  z-index: 1;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3% 0 3% 5%;
  width: 52%;
  text-align: center;
}

.hero-infos {
  width: 100%;
  max-width: 480px;
  margin-bottom: 1.4%;
  opacity: 0;
  animation: heroFadeUp 0.9s ease-out 0.2s forwards;
}

.hero-logo {
  width: 62%;
  max-width: 320px;
  margin: 0 auto 2.2%;
  opacity: 0;
  animation: heroFadeUp 0.9s ease-out 0.4s forwards;
}

.hero-promessa {
  width: 88%;
  max-width: 520px;
  margin-bottom: 2.2%;
  opacity: 0;
  animation: heroFadeUp 0.9s ease-out 0.6s forwards;
}

.hero-box-sub {
  width: 88%;
  max-width: 520px;
  margin-bottom: 3%;
  opacity: 0;
  animation: heroFadeUp 0.9s ease-out 0.8s forwards;
}

.hero-cta-wrap {
  width: 100%;
  text-align: center;
  opacity: 0;
  animation: heroFadeUp 0.9s ease-out 1s forwards;
}

.hero-cta-wrap .btn-cta {
  padding: 1rem 2rem;
  font-size: 0.95rem;
}

.hero-btn-sub {
  display: block;
  margin-top: 0.7rem;
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-style: italic;
}

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

.hero-bg-overlay {
  display: none;
}

/* Tablet — ajuste fino */
@media (max-width: 1000px) {
  .hero-frame {
    aspect-ratio: 16 / 9;
    min-height: 420px;
  }
  .hero-content {
    width: 56%;
    padding-left: 4%;
  }
  .hero-logo { max-width: 260px; }
}

/* Mobile — mesma composição, mas menor */
@media (max-width: 720px) {
  .hero {
    padding: 1rem 0.8rem 2rem;
  }
  .hero-frame {
    aspect-ratio: 9 / 11;
    max-height: none;
    min-height: 0;
    border-radius: 14px;
  }
  .hero-bg {
    /* No mobile, mostra a Jaque na parte direita-baixo */
    object-position: 75% center;
    /* Aplica um overlay sutil pra dar contraste com o texto */
  }
  .hero-bg-overlay {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
      180deg,
      rgba(250, 246, 242, 0.92) 0%,
      rgba(250, 246, 242, 0.85) 40%,
      rgba(250, 246, 242, 0.25) 70%,
      rgba(250, 246, 242, 0) 100%
    );
    pointer-events: none;
  }
  .hero-content {
    position: absolute;
    inset: 0;
    width: 100%;
    padding: 1.5rem 1.2rem 1.5rem;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
  }
  .hero-infos {
    max-width: 100%;
    margin-bottom: 0.6rem;
  }
  .hero-logo {
    max-width: 200px;
    width: 60%;
    margin: 0 auto 0.8rem;
  }
  .hero-promessa {
    max-width: 100%;
    width: 90%;
    margin-bottom: 0.8rem;
  }
  .hero-box-sub {
    max-width: 100%;
    width: 95%;
    margin-bottom: 1rem;
  }
  .hero-cta-wrap {
    text-align: center;
  }
  .hero-cta-wrap .btn-cta {
    padding: 0.9rem 1.6rem;
    font-size: 0.85rem;
    letter-spacing: 0.03em;
  }
  .hero-btn-sub {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .hero-frame {
    aspect-ratio: 4 / 5;
  }
  .hero-bg { object-position: 78% center; }
  .hero-logo { max-width: 165px; }
  .hero-content { padding: 1.2rem 1rem 1.2rem; }
}

/* CARROSSEL COVERFLOW */
.dores {
  padding: 4rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.dores-header {
  text-align: center;
  padding: 0 1.5rem;
  max-width: 900px;
  margin: 0 auto 3.5rem;
}

.dores-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.dores-hint {
  font-size: 0.9rem;
  color: var(--pink-strong);
  font-style: italic;
  letter-spacing: 0.02em;
  margin-top: 0.5rem;
}

.coverflow {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0 1.5rem;
  perspective: 1200px;
}

.coverflow-stage {
  position: relative;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
}

.cf-card {
  position: absolute;
  width: 320px;
  height: 320px;
  background: #fff;
  border: 1px solid var(--pink-pale);
  border-radius: 18px;
  padding: 2.2rem 1.8rem;
  box-shadow: 0 8px 24px rgba(230, 41, 138, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  backface-visibility: hidden;
}

.cf-card.active {
  opacity: 1;
  transform: translateX(0) scale(1) rotateY(0);
  z-index: 5;
  box-shadow: 0 25px 60px rgba(230, 41, 138, 0.18);
  pointer-events: auto;
}

.cf-card.prev {
  opacity: 0.45;
  transform: translateX(-340px) scale(0.85) rotateY(20deg);
  z-index: 3;
  pointer-events: auto;
  filter: blur(0.5px);
}

.cf-card.next {
  opacity: 0.45;
  transform: translateX(340px) scale(0.85) rotateY(-20deg);
  z-index: 3;
  pointer-events: auto;
  filter: blur(0.5px);
}

.cf-card.far-prev {
  opacity: 0.15;
  transform: translateX(-560px) scale(0.7) rotateY(30deg);
  z-index: 2;
  filter: blur(1.5px);
}

.cf-card.far-next {
  opacity: 0.15;
  transform: translateX(560px) scale(0.7) rotateY(-30deg);
  z-index: 2;
  filter: blur(1.5px);
}

.dor-number {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.8rem;
  color: var(--pink-strong);
}

.dor-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
}

.dor-text {
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.cf-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.cf-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--pink-pale);
  color: var(--pink-strong);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(230, 41, 138, 0.1);
}

.cf-arrow:hover {
  background: var(--pink-strong);
  color: #fff;
  border-color: var(--pink-strong);
  transform: translateY(-2px);
}

.cf-dots {
  display: flex;
  gap: 0.6rem;
  margin: 0 1rem;
}

.cf-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink-pale);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}

.cf-dot.active {
  background: var(--pink-strong);
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 720px) {
  .coverflow-stage { height: 320px; }
  .cf-card { width: 280px; height: 280px; padding: 1.8rem 1.5rem; }
  .cf-card.prev { transform: translateX(-180px) scale(0.78) rotateY(20deg); opacity: 0.3; }
  .cf-card.next { transform: translateX(180px) scale(0.78) rotateY(-20deg); opacity: 0.3; }
  .cf-card.far-prev, .cf-card.far-next { opacity: 0; }
  .dor-title { font-size: 1.3rem; }
}

/* CICLO DA DESPOLARIZAÇÃO — versão escura, atmosférica */
.virada {
  background:
    linear-gradient(180deg, transparent 0%, transparent 88%, var(--cream) 100%),
    linear-gradient(180deg, #2a0a18 0%, #3d0e22 50%, #2a0a18 100%);
  padding: 5rem 1.5rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff;
}

/* Vinheta + glow central */
.virada::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  max-width: 110%;
  background: radial-gradient(circle, rgba(230, 41, 138, 0.18) 0%, rgba(230, 41, 138, 0.05) 35%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* Vinheta nas bordas */
.virada::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
  z-index: 0;
}

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

.virada-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-style: italic;
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
  max-width: 800px;
  margin: 0 auto 1.5rem;
}

.virada-headline em {
  font-style: normal;
  color: var(--pink-mid);
  font-weight: 600;
}

.virada-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 700px;
  margin: 0 auto 4rem;
  line-height: 1.7;
}

/* Container do ciclo */
.ciclo-wrap {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  aspect-ratio: 1;
}

.ciclo-bg-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  animation: rotateSlow 80s linear infinite;
}

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Centro pulsante - agora vermelho-rosa intenso */
.ciclo-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ff4998 0%, var(--pink-strong) 50%, #9c1058 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.8rem;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 0 0 10px rgba(230, 41, 138, 0.18),
    0 0 0 22px rgba(230, 41, 138, 0.1),
    0 0 0 36px rgba(230, 41, 138, 0.05),
    0 20px 80px rgba(230, 41, 138, 0.5);
  z-index: 2;
  animation: pulseCenter 4s ease-in-out infinite;
}

@keyframes pulseCenter {
  0%, 100% {
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.1),
      0 0 0 10px rgba(230, 41, 138, 0.18),
      0 0 0 22px rgba(230, 41, 138, 0.1),
      0 0 0 36px rgba(230, 41, 138, 0.05),
      0 20px 80px rgba(230, 41, 138, 0.5);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.15),
      0 0 0 14px rgba(230, 41, 138, 0.25),
      0 0 0 28px rgba(230, 41, 138, 0.13),
      0 0 0 44px rgba(230, 41, 138, 0.07),
      0 24px 100px rgba(230, 41, 138, 0.7);
  }
}

.ciclo-center-icon {
  font-size: 2.2rem;
  margin-bottom: 0.4rem;
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.ciclo-center-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.4rem;
}

.ciclo-center-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}

/* Estágios escuros */
.estagio-orbit {
  position: absolute;
  width: 180px;
  background: rgba(42, 10, 24, 0.9);
  border: 1px solid rgba(230, 41, 138, 0.35);
  border-radius: 999px;
  padding: 0.7rem 1rem 0.7rem 0.7rem;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-align: left;
  z-index: 3;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.estagio-orbit:hover {
  transform: scale(1.04);
  box-shadow: 0 14px 32px rgba(230, 41, 138, 0.4);
  border-color: var(--pink-mid);
  z-index: 4;
}

.estagio-orbit-num {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-strong) 0%, #ff4998 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(230, 41, 138, 0.5);
}

.estagio-orbit-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.25;
}

/* Posicionamento desktop */
.e1 { top: 1%;            left: 50%; transform: translateX(-50%); }
.e2 { top: 18%;           right: 1%; }
.e3 { bottom: 22%;        right: 1%; }
.e4 { bottom: 1%;         right: 28%; }
.e5 { bottom: 1%;         left: 28%; }
.e6 { bottom: 22%;        left: 1%; }
.e7 { top: 18%;           left: 1%; }

.e1:hover { transform: translateX(-50%) scale(1.04); }

/* Mobile — mantém circular, só menor */
@media (max-width: 720px) {
  .ciclo-wrap {
    max-width: 380px;
  }
  .ciclo-center {
    width: 140px;
    height: 140px;
    padding: 0.8rem;
  }
  .ciclo-center-icon {
    font-size: 1.4rem;
    margin-bottom: 0.2rem;
  }
  .ciclo-center-label {
    font-size: 0.58rem;
    letter-spacing: 0.18em;
    margin-bottom: 0.2rem;
  }
  .ciclo-center-title {
    font-size: 1.05rem;
  }
  .estagio-orbit {
    width: 130px;
    padding: 0.45rem 0.65rem 0.45rem 0.45rem;
    gap: 0.45rem;
  }
  .estagio-orbit-num {
    width: 24px;
    height: 24px;
    min-width: 24px;
    font-size: 0.78rem;
  }
  .estagio-orbit-text {
    font-size: 0.7rem;
    line-height: 1.2;
  }
}

@media (max-width: 420px) {
  .ciclo-wrap {
    max-width: 320px;
  }
  .ciclo-center {
    width: 115px;
    height: 115px;
  }
  .ciclo-center-title {
    font-size: 0.9rem;
  }
  .estagio-orbit {
    width: 108px;
    padding: 0.4rem 0.55rem 0.4rem 0.4rem;
    gap: 0.35rem;
  }
  .estagio-orbit-num {
    width: 22px;
    height: 22px;
    min-width: 22px;
    font-size: 0.72rem;
  }
  .estagio-orbit-text {
    font-size: 0.62rem;
  }
}

.virada-fechamento {
  margin-top: 5rem;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.5;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.virada-fechamento strong {
  color: var(--pink-mid);
  font-weight: 700;
}

/* DEPOIMENTOS — CARROSSEL */
.depoimento {
  padding: 4rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}

.dep-header {
  text-align: center;
  padding: 0 1.5rem;
  max-width: 900px;
  margin: 0 auto 2.5rem;
}

.dep-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 500;
  font-style: italic;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.dep-headline em {
  font-style: normal;
  color: var(--pink-strong);
  font-weight: 600;
}

.dep-hint {
  font-size: 0.85rem;
  color: var(--pink-strong);
  font-style: italic;
}

.dep-coverflow {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 0 1rem;
  perspective: 1200px;
}

.dep-stage {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
}

.dep-card {
  position: absolute;
  width: 380px;
  max-height: 500px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(230, 41, 138, 0.08);
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  backface-visibility: hidden;
  border: 1px solid var(--pink-pale);
}

.dep-card img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  display: block;
  background: #f4f4f4;
}

.dep-card.active {
  opacity: 1;
  transform: translateX(0) scale(1) rotateY(0);
  z-index: 5;
  box-shadow: 0 25px 60px rgba(230, 41, 138, 0.2);
  pointer-events: auto;
}

.dep-card.prev {
  opacity: 0.4;
  transform: translateX(-360px) scale(0.82) rotateY(20deg);
  z-index: 3;
  pointer-events: auto;
  filter: blur(0.5px);
}

.dep-card.next {
  opacity: 0.4;
  transform: translateX(360px) scale(0.82) rotateY(-20deg);
  z-index: 3;
  pointer-events: auto;
  filter: blur(0.5px);
}

.dep-card.far-prev {
  opacity: 0.12;
  transform: translateX(-580px) scale(0.65) rotateY(30deg);
  z-index: 2;
  filter: blur(1.5px);
}

.dep-card.far-next {
  opacity: 0.12;
  transform: translateX(580px) scale(0.65) rotateY(-30deg);
  z-index: 2;
  filter: blur(1.5px);
}

.dep-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1.2rem;
}

.dep-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--pink-pale);
  color: var(--pink-strong);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(230, 41, 138, 0.1);
}

.dep-arrow:hover {
  background: var(--pink-strong);
  color: #fff;
  border-color: var(--pink-strong);
  transform: translateY(-2px);
}

.dep-dots {
  display: flex;
  gap: 0.5rem;
  margin: 0 0.8rem;
}

.dep-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pink-pale);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}

.dep-dot.active {
  background: var(--pink-strong);
  width: 22px;
  border-radius: 4px;
}

@media (max-width: 720px) {
  .dep-stage { height: 480px; }
  .dep-card { width: 290px; max-height: 460px; }
  .dep-card img { max-height: 440px; }
  .dep-card.prev { transform: translateX(-170px) scale(0.74) rotateY(20deg); opacity: 0.25; }
  .dep-card.next { transform: translateX(170px) scale(0.74) rotateY(-20deg); opacity: 0.25; }
  .dep-card.far-prev, .dep-card.far-next { opacity: 0; }
}

@media (max-width: 420px) {
  .dep-stage { height: 440px; }
  .dep-card { width: 250px; max-height: 420px; }
  .dep-card img { max-height: 400px; }
  .dep-card.prev { transform: translateX(-140px) scale(0.72) rotateY(20deg); }
  .dep-card.next { transform: translateX(140px) scale(0.72) rotateY(-20deg); }
}

/* ENTREGAS — PIRÂMIDE INVERTIDA */
.entregas {
  background: linear-gradient(180deg, var(--cream-deep) 0%, var(--cream) 100%);
  padding: 5rem 1.5rem;
  text-align: center;
}

.entregas-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.entregas-sub {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 660px;
  margin: 0 auto 3.5rem;
  line-height: 1.7;
}

.entregas-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.entregas-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 720px) {
  .entregas-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .entregas-row-bottom {
    grid-template-columns: repeat(2, 1fr);
    max-width: 740px;
    margin: 0 auto;
  }
}

.entrega-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.2rem 1.8rem;
  text-align: left;
  border: 1px solid var(--pink-pale);
  box-shadow: 0 8px 24px rgba(230, 41, 138, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.entrega-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(230, 41, 138, 0.12);
}

.entrega-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-pale), var(--pink-whisper));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
}

.entrega-titulo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--pink-strong);
  margin-bottom: 0.7rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.entrega-texto {
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* JAQUE */
.jaque { padding: 5rem 1.5rem; }

.jaque-headline {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 3rem;
}

.jaque-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 800px) {
  .jaque-grid {
    grid-template-columns: 1fr 1.3fr;
    gap: 3.5rem;
  }
}

.jaque-foto {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(230, 41, 138, 0.18);
  aspect-ratio: 3/4;
}

.jaque-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.jaque-bio { display: flex; flex-direction: column; gap: 1.2rem; }

.jaque-nome {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--pink-strong);
}

.jaque-credenciais {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.jaque-credenciais li {
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.55;
  padding-left: 1.4rem;
  position: relative;
}

.jaque-credenciais li::before {
  content: '✶';
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--pink-strong);
}

.jaque-fala {
  margin-top: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(135deg, var(--pink-pale) 0%, var(--cream-deep) 100%);
  border-radius: 18px;
  padding: 2.2rem 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink);
  line-height: 1.6;
  text-align: center;
  border: 1px solid var(--pink-soft);
}

.jaque-fala p { margin-bottom: 1rem; }
.jaque-fala p:last-child { margin-bottom: 0; }

.jaque-assinatura {
  display: block;
  margin-top: 1.5rem;
  font-family: 'Dancing Script', cursive;
  font-style: normal;
  font-size: 2.6rem;
  color: var(--pink-strong);
  line-height: 1;
  font-weight: 600;
}

/* NÃO É */
.nao-e {
  background: var(--cream-deep);
  padding: 5rem 1.5rem;
}

.nao-e-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.nao-e-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 1.2rem;
}

.nao-e-intro {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.nao-e-lista {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
  max-width: 680px;
  margin: 0 auto;
}

.nao-e-item {
  background: #fff;
  border-radius: 12px;
  padding: 1.2rem 1.4rem 1.2rem 3rem;
  position: relative;
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.55;
  border: 1px solid var(--pink-pale);
}

.nao-e-item::before {
  content: '✗';
  position: absolute;
  left: 1.2rem;
  top: 1.2rem;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--pink-strong);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
}

.nao-e-fechamento {
  margin-top: 2.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink);
  line-height: 1.6;
}

/* INVESTIMENTO */
.investimento { padding: 5rem 1.5rem; text-align: center; }

.invest-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4.5vw, 2.4rem);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.3;
}

.preco-bloco { margin: 2rem auto 2rem; }

.preco-numero {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 12vw, 6rem);
  font-weight: 700;
  color: var(--pink-strong);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.preco-confirmacao {
  font-size: 1rem;
  color: var(--ink-soft);
  font-style: italic;
}

.invest-intro {
  max-width: 700px;
  margin: 2rem auto 2.5rem;
  font-size: 1.02rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

.invest-motivos {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: left;
}

.motivo {
  background: #fff;
  border-radius: 14px;
  padding: 1.6rem 1.8rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  border: 1px solid var(--pink-pale);
  box-shadow: 0 6px 18px rgba(230, 41, 138, 0.05);
}

.motivo-num {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--pink-pale);
  color: var(--pink-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.2rem;
}

.motivo-text {
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.motivo-text strong { color: var(--ink); }

/* BÔNUS */
.bonus {
  background: linear-gradient(135deg, var(--pink-pale) 0%, var(--cream-deep) 100%);
  padding: 5rem 1.5rem;
  text-align: center;
}

.bonus-headline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}

.bonus-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  max-width: 640px;
  margin: 0 auto;
  border: 2px solid var(--pink-strong);
  box-shadow: 0 20px 50px rgba(230, 41, 138, 0.18);
  position: relative;
}

.bonus-tag {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pink-strong);
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bonus-icone {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: bounce-soft 3s ease-in-out infinite;
}

@keyframes bounce-soft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.bonus-titulo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1rem;
}

.bonus-texto {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.bonus-destaque {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--pink-strong);
  font-weight: 600;
}

/* FECHAMENTO */
.fechamento {
  background: var(--ink);
  color: #fff;
  padding: 5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.fechamento::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(230, 41, 138, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(244, 184, 212, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.fechamento-inner {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(230,41,138,0.08) 100%);
  border: 1px solid rgba(230,41,138,0.3);
  border-radius: 20px;
  padding: 3rem 2rem;
}

.fechamento-titulo {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 500;
  margin-bottom: 0.6rem;
  letter-spacing: 0.02em;
}

.fechamento-titulo em {
  font-style: italic;
  color: var(--pink-soft);
}

.fechamento-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.fechamento-info {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
  font-size: 0.98rem;
}

.fechamento-info-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.9);
}

.fechamento-preco {
  font-family: 'Cormorant Garamond', serif;
  margin: 1.5rem 0 0.5rem;
}

.fechamento-preco-label {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.fechamento-preco-valor {
  font-size: 4rem;
  font-weight: 700;
  color: var(--pink-soft);
  line-height: 1;
}

.fechamento-preco-detalhe {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  font-style: italic;
}

.fechamento .btn-cta { margin-top: 1rem; }

.garantia {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.55;
}

.garantia strong {
  display: block;
  color: var(--pink-soft);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* FAQ */
.faq { padding: 5rem 1.5rem; }

.faq-headline {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4.5vw, 2.4rem);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 3rem;
}

.faq-lista {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--pink-pale);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item[open] {
  box-shadow: 0 10px 30px rgba(230, 41, 138, 0.1);
}

.faq-pergunta {
  cursor: pointer;
  padding: 1.4rem 1.6rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  list-style: none;
}

.faq-pergunta::-webkit-details-marker { display: none; }

.faq-pergunta::after {
  content: '+';
  font-family: 'Inter', sans-serif;
  color: var(--pink-strong);
  font-size: 1.5rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-pergunta::after {
  transform: rotate(45deg);
}

.faq-resposta {
  padding: 0 1.6rem 1.4rem;
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* CTA FINAL */
.cta-final {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
  padding: 5rem 1.5rem;
  text-align: center;
}

.cta-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 2.5rem;
  letter-spacing: 0.01em;
}

.cta-headline span { color: var(--pink-strong); }

.cta-texto {
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--ink);
  line-height: 1.7;
  font-style: italic;
}

.cta-texto p { margin-bottom: 1rem; }
.cta-texto p:last-child { margin-bottom: 0; }

.cta-destaque {
  font-style: normal;
  font-weight: 700;
  color: var(--pink-strong);
}

.cta-info-final {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 2.5rem auto;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--ink);
}

.cta-info-final-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.cta-assinatura {
  margin-top: 3rem;
  font-family: 'Dancing Script', cursive;
  font-size: 3rem;
  color: var(--pink-strong);
  line-height: 1;
  font-weight: 600;
}

/* RODAPÉ */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.65);
  padding: 2.5rem 1.5rem;
  text-align: center;
  font-size: 0.85rem;
}

.footer-grid {
  max-width: 800px;
  margin: 0 auto 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
}

@media (min-width: 700px) {
  .footer-grid {
    flex-direction: row;
    justify-content: center;
    gap: 2.5rem;
  }
}

.footer-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .ciclo-orbit-line { animation: none; }
  .bonus-icone { animation: none; }
}

@media (max-width: 540px) {
  .dep-box { padding: 1.8rem 1.3rem 1.8rem 1.8rem; }
  .dep-quote { font-size: 4rem; }
  .jaque-fala { padding: 1.8rem 1.4rem; font-size: 1.05rem; }
  .jaque-assinatura { font-size: 2.2rem; }
  .fechamento-inner { padding: 2.5rem 1.5rem; }
  .fechamento-preco-valor { font-size: 3.2rem; }
  .bonus-card { padding: 2rem 1.4rem; }
  .preco-numero { font-size: 4.2rem; }
  .cta-assinatura { font-size: 2.4rem; }
}
