/* ============================================
   VIVER DE PAPELARIA - STYLESHEET
   Eduarda Papel Criativo
   ============================================ */

:root {
  /* Paleta nude millennial pink + dourado suave */
  --bg: #FFF9F5;
  --bg-section: #FDF1EB;
  --bg-soft: #FAEAE0;
  --bg-dark: #2A1F23;
  --card: #FFFFFF;

  --pink: #E8839A;
  --pink-deep: #D26581;
  --pink-dark: #B14A66;
  --pink-soft: #F8D4DD;
  --pink-tint: #FCE8EE;
  --pink-bg: #FFF3F6;

  --gold: #D4A574;
  --gold-deep: #B8895A;
  --gold-soft: #E8C9A0;
  --gold-tint: #F5E6D3;

  --ink: #2C1F22;
  --ink-soft: #5C4850;
  --ink-mute: #8E7882;
  --line: #F0DDE2;

  --green: #6BA582;
  --green-dark: #5A946F;
  --green-shadow: #4F8463;
  --red-alert: #D14545;

  --display: 'Poppins', system-ui, sans-serif;
  --body: 'Quicksand', system-ui, sans-serif;

  --container: 1180px;
  --shadow-sm: 0 4px 14px rgba(178, 74, 102, 0.08);
  --shadow-md: 0 12px 32px rgba(178, 74, 102, 0.12);
  --shadow-lg: 0 24px 60px rgba(178, 74, 102, 0.18);
  --shadow-xl: 0 30px 80px rgba(178, 74, 102, 0.25);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4 {
  font-family: var(--display);
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 4vw, 2.8rem); font-weight: 800; }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 700; }

.highlight-pink { color: var(--pink-deep); }
.highlight-gold { color: var(--gold-deep); }

/* ============================================
   BUTTONS
   ============================================ */

.cta-wrap {
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 36px;
  background: linear-gradient(180deg, #6BB585, var(--green) 60%, var(--green-dark));
  color: #fff;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow:
    0 8px 0 var(--green-shadow),
    0 18px 30px -8px rgba(107, 165, 130, 0.5);
  transition: all 0.18s ease;
  text-transform: uppercase;
  position: relative;
  text-align: center;
  white-space: normal;
}
.btn:hover {
  transform: translateY(2px);
  box-shadow:
    0 6px 0 var(--green-shadow),
    0 14px 24px -6px rgba(107, 165, 130, 0.55);
}
.btn:active {
  transform: translateY(8px);
  box-shadow: 0 0 0 var(--green-shadow), 0 4px 8px rgba(107,165,130,0.3);
}

.btn-large {
  padding: 22px 36px;
  font-size: 1.1rem;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  display: flex;
}

.btn-pulse {
  animation: btn-pulse 2.2s ease-in-out infinite;
}

@keyframes btn-pulse {
  0%, 100% {
    box-shadow:
      0 8px 0 var(--green-shadow),
      0 18px 30px -8px rgba(107,165,130,0.5),
      0 0 0 0 rgba(107,165,130,0.55);
  }
  50% {
    box-shadow:
      0 8px 0 var(--green-shadow),
      0 18px 30px -8px rgba(107,165,130,0.5),
      0 0 0 18px rgba(107,165,130,0);
  }
}

.btn-pink {
  background: linear-gradient(180deg, var(--pink), var(--pink-deep) 60%, var(--pink-dark));
  box-shadow: 0 8px 0 var(--pink-dark), 0 18px 30px -8px rgba(210, 101, 129, 0.5);
}

.micro-cta {
  display: block;
  text-align: center;
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--ink-mute);
  font-weight: 500;
}
.micro-cta strong { color: var(--ink); }

/* ============================================
   TOP BAR + COUNTDOWN
   ============================================ */

.top-bar {
  background: linear-gradient(90deg, var(--pink-deep), var(--pink-dark));
  color: #fff;
  text-align: center;
  padding: 11px 16px;
  font-size: 0.86rem;
  font-weight: 600;
  font-family: var(--display);
  letter-spacing: 0.02em;
  position: relative;
  z-index: 100;
}
.top-bar strong { font-weight: 800; color: #FFE5C5; }
.top-bar .pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #FFE5C5;
  border-radius: 50%;
  margin-right: 8px;
  animation: pulse-dot 1.4s ease-in-out infinite;
  vertical-align: middle;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.4); }
}

.countdown-bar {
  background: var(--bg-dark);
  color: #fff;
  padding: 18px 16px;
  text-align: center;
  font-family: var(--display);
}
.countdown-label {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 10px;
  font-weight: 600;
}
.countdown-timer {
  display: inline-flex;
  gap: 10px;
  font-weight: 800;
  font-size: 1.6rem;
  align-items: center;
  justify-content: center;
}
.countdown-timer .unit {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 14px;
  border-radius: 8px;
  min-width: 60px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.countdown-timer .num { color: #fff; line-height: 1; }
.countdown-timer .label-small {
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  color: var(--gold-soft);
  margin-top: 4px;
  font-weight: 600;
}
.countdown-timer .sep { color: var(--gold); align-self: flex-start; margin-top: 4px; }

/* ============================================
   HERO
   ============================================ */

.hero {
  padding: 50px 24px 70px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 50% at 80% 30%, var(--pink-tint), transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 80%, var(--gold-tint), transparent 65%),
    var(--bg);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pink-tint);
  color: var(--pink-dark);
  padding: 9px 18px;
  border-radius: 50px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid var(--pink-soft);
  margin-bottom: 22px;
}
.hero-tag .icon-circle {
  width: 16px; height: 16px;
  background: var(--pink);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
}

.hero h1 {
  margin-bottom: 18px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--pink-deep), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.hero-sub {
  font-size: 1.08rem;
  color: var(--ink-soft);
  margin-bottom: 28px;
  line-height: 1.65;
  max-width: 540px;
}
.hero-sub strong { color: var(--ink); font-weight: 700; }

.hero-bullets {
  list-style: none;
  margin-bottom: 32px;
}
.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.98rem;
  color: var(--ink);
  font-weight: 500;
}
.hero-bullets .check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 900;
  margin-top: 2px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px dashed var(--line);
}
.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-weight: 600;
}
.hero-trust svg {
  width: 18px;
  height: 18px;
  color: var(--gold-deep);
}

/* HERO PHOTO */
.hero-photo {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 460px;
  margin: 0 auto;
  width: 100%;
}
.hero-photo-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--pink-soft), var(--pink-tint) 60%, var(--gold-tint));
  box-shadow: var(--shadow-xl);
  border: 6px solid #fff;
}
.hero-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating badges */
.floating-badge {
  position: absolute;
  background: #fff;
  padding: 12px 18px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  font-family: var(--display);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
  border: 2px solid var(--pink-tint);
}
.floating-badge .badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--pink-deep));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.floating-badge .badge-icon svg { width: 18px; height: 18px; }
.floating-badge .badge-text { line-height: 1.15; }
.floating-badge .badge-num {
  font-size: 1rem;
  font-weight: 800;
  color: var(--pink-deep);
}
.floating-badge .badge-label {
  font-size: 0.7rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.badge-1 {
  top: 8%;
  left: -18px;
  animation: float1 4s ease-in-out infinite;
}
.badge-2 {
  top: 48%;
  right: -28px;
  animation: float2 4.5s ease-in-out infinite;
}
.badge-3 {
  bottom: 6%;
  left: 4%;
  animation: float3 5s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes float3 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ============================================
   SECTION COMMON
   ============================================ */

section.block { padding: 90px 24px; position: relative; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.section-eyebrow {
  display: inline-block;
  color: var(--pink-deep);
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-head h2 { margin-bottom: 16px; }
.section-head p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   DORES
   ============================================ */

.dores {
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}
.dores::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 250px; height: 250px;
  background: radial-gradient(circle, var(--pink-tint), transparent 70%);
  border-radius: 50%;
}

.dores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.dor-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}
.dor-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.dor-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--pink-tint);
  color: var(--pink-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.dor-icon svg { width: 28px; height: 28px; }
.dor-card h4 { margin-bottom: 10px; color: var(--ink); }
.dor-card p { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.55; }

.dor-resposta {
  background: linear-gradient(135deg, var(--pink-deep), var(--pink-dark));
  color: #fff;
  padding: 38px 36px;
  border-radius: 18px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.dor-resposta h3 { color: #fff; margin-bottom: 12px; font-size: 1.4rem; }
.dor-resposta p {
  color: rgba(255,255,255,0.92);
  font-size: 1.02rem;
  max-width: 620px;
  margin: 0 auto;
}

/* ============================================
   PARA QUEM
   ============================================ */

.para-quem { background: var(--bg); }

.para-quem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 920px;
  margin: 0 auto;
}

.para-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 24px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--pink);
  transition: transform 0.2s;
}
.para-item:hover { transform: translateX(4px); }

.para-check {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  box-shadow: 0 4px 10px rgba(107,165,130,0.35);
}

.para-item p {
  font-size: 0.98rem;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.5;
}

/* ============================================
   MÓDULOS
   ============================================ */

.modulos { background: var(--bg-section); }

.modulos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto;
}

.modulo-card {
  background: #fff;
  border-radius: 18px;
  padding: 26px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.modulo-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--pink-soft);
}

.modulo-num {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--pink), var(--pink-deep));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.3rem;
  box-shadow: 0 6px 14px rgba(210,101,129,0.3);
}

.modulo-content { flex: 1; }
.modulo-content h4 { margin-bottom: 6px; color: var(--ink); font-size: 1.08rem; }
.modulo-content p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.modulo-tag {
  display: inline-block;
  margin-top: 10px;
  background: var(--gold-tint);
  color: var(--gold-deep);
  padding: 4px 10px;
  border-radius: 6px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.modulo-card.featured {
  border: 2px solid var(--gold);
  background: linear-gradient(135deg, #fff, var(--gold-tint) 200%);
}
.modulo-card.featured::before {
  content: 'COM EDUARDO';
  position: absolute;
  top: 22px;
  right: -42px;
  background: var(--gold-deep);
  color: #fff;
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  padding: 5px 50px;
  transform: rotate(38deg);
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}
.modulo-card.featured .modulo-num {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep));
  box-shadow: 0 6px 14px rgba(184,137,90,0.35);
}

/* ============================================
   GALERIA - CARROSSEL
   ============================================ */

.galeria {
  background: var(--bg);
  overflow: hidden;
}

.gallery-carousel {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.gallery-viewport {
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--bg-soft);
  aspect-ratio: 1/1;
}

.gallery-track {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.6s cubic-bezier(.4,.2,.2,1);
}

.gallery-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
  background: linear-gradient(135deg, var(--pink-tint), var(--gold-tint));
}

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

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.gallery-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--pink-soft);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}
.gallery-dot:hover { background: var(--pink); }
.gallery-dot.active {
  background: var(--pink-deep);
  width: 32px;
  border-radius: 6px;
}

/* ============================================
   3 FORMAS DE LUCRAR
   ============================================ */

.formas {
  background: var(--bg);
  position: relative;
}

.formas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 50px;
}

.forma-card {
  background: #fff;
  border-radius: 20px;
  padding: 38px 30px 32px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 2px solid transparent;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.forma-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--pink), var(--gold));
}
.forma-card:hover {
  transform: translateY(-8px);
  border-color: var(--pink-soft);
  box-shadow: var(--shadow-lg);
}

.forma-num-big {
  font-family: var(--display);
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--pink-deep), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 14px;
  display: block;
}

.forma-card h3 { margin-bottom: 12px; color: var(--ink); font-size: 1.3rem; }
.forma-card p {
  color: var(--ink-soft);
  font-size: 0.93rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.forma-tag {
  display: inline-block;
  background: var(--pink-tint);
  color: var(--pink-deep);
  padding: 6px 14px;
  border-radius: 20px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================
   QUEM ENSINA
   ============================================ */

.quem { background: var(--bg-section); }

.quem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1080px;
  margin: 0 auto;
}

.pessoa-card {
  background: #fff;
  border-radius: 22px;
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 1px solid var(--line);
  position: relative;
}

.pessoa-photo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--pink-soft), var(--gold-soft));
  border: 5px solid #fff;
  box-shadow: 0 8px 20px rgba(210,101,129,0.25);
  position: relative;
}
.pessoa-photo.dourado {
  background: linear-gradient(135deg, var(--gold-soft), var(--pink-soft));
}
.pessoa-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pessoa-role {
  display: inline-block;
  background: var(--pink-tint);
  color: var(--pink-deep);
  padding: 6px 14px;
  border-radius: 20px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 12px 0 12px;
}
.pessoa-role.gold {
  background: var(--gold-tint);
  color: var(--gold-deep);
}

.pessoa-card h3 { margin-bottom: 8px; }
.pessoa-card p {
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.65;
  margin-bottom: 12px;
}
.pessoa-card p strong { color: var(--ink); font-weight: 700; }

.pessoa-stats {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px dashed var(--line);
}
.pessoa-stat { flex: 1; text-align: center; }
.pessoa-stat-num {
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.9rem;
  color: var(--pink-deep);
  line-height: 1;
}
.pessoa-stat-num.gold { color: var(--gold-deep); }
.pessoa-stat-label {
  font-size: 0.76rem;
  color: var(--ink-mute);
  margin-top: 4px;
  line-height: 1.3;
}

/* ============================================
   DEPOIMENTOS - MARQUEE INFINITO
   ============================================ */

.depoimentos {
  background: var(--bg);
  overflow: hidden;
}

.depoimentos-scroll {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 0 -24px;
  padding: 12px 0 8px;
}

/* Fade lateral via pseudo-elementos (mais compatível que mask-image) */
.depoimentos-scroll::before,
.depoimentos-scroll::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50px;
  z-index: 2;
  pointer-events: none;
}
.depoimentos-scroll::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg) 0%, rgba(255, 249, 245, 0) 100%);
}
.depoimentos-scroll::after {
  right: 0;
  background: linear-gradient(90deg, rgba(255, 249, 245, 0) 0%, var(--bg) 100%);
}

.depoimentos-track {
  display: flex;
  width: max-content;
  animation: marquee-infinite 35s linear infinite;
  will-change: transform;
  /* Garante que renderiza sempre */
  opacity: 1 !important;
  transform: translateX(0);
}

.depoimentos-scroll:hover .depoimentos-track,
.depoimentos-scroll.is-paused .depoimentos-track {
  animation-play-state: paused;
}

@keyframes marquee-infinite {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .depoimentos-track {
    animation: none;
  }
  .depoimentos-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.depoimento-card {
  flex: 0 0 300px;
  margin-right: 24px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  transition: transform 0.3s ease;
  /* Aspect ratio fixo evita layout shift enquanto imagens carregam */
  aspect-ratio: 2/3;
  min-height: 400px;
}
.depoimento-card:hover {
  transform: translateY(-4px);
}
.depoimento-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================
   BÔNUS
   ============================================ */

.bonus { background: var(--bg); }

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  max-width: 980px;
  margin: 0 auto;
}

.bonus-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  border: 2px dashed var(--gold);
  position: relative;
  overflow: hidden;
}
.bonus-card::before {
  content: 'BÔNUS';
  position: absolute;
  top: 18px; right: -38px;
  background: var(--gold-deep);
  color: #fff;
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  padding: 6px 42px;
  transform: rotate(36deg);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.bonus-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 16px rgba(184,137,90,0.3);
}
.bonus-icon-wrap svg { width: 32px; height: 32px; }

.bonus-card h3 { margin-bottom: 10px; color: var(--ink); }
.bonus-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 14px;
}

.bonus-card .price-strike {
  font-family: var(--display);
  font-weight: 700;
  color: var(--ink-mute);
}
.bonus-card .price-strike .old {
  text-decoration: line-through;
  color: var(--red-alert);
  margin-right: 8px;
}
.bonus-card .price-strike .new {
  color: var(--green);
  font-size: 1.05rem;
}

/* ============================================
   CARTA
   ============================================ */

.carta-section {
  background: linear-gradient(180deg, var(--bg-section), var(--pink-bg));
}

.carta-card {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border-radius: 22px;
  padding: 60px 56px 50px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  position: relative;
}
.carta-card::before {
  content: '';
  position: absolute;
  top: -2px; left: 30px; right: 30px;
  height: 6px;
  background: linear-gradient(90deg, var(--pink), var(--gold));
  border-radius: 3px 3px 0 0;
}

.carta-eyebrow {
  display: block;
  text-align: center;
  margin-bottom: 14px;
}
.carta-card h2 { text-align: center; margin-bottom: 30px; }
.carta-card p {
  font-size: 1.02rem;
  color: var(--ink-soft);
  line-height: 1.85;
  margin-bottom: 18px;
}
.carta-card p.first::first-letter {
  font-family: var(--display);
  font-size: 3.4rem;
  font-weight: 900;
  float: left;
  line-height: 0.9;
  margin: 6px 12px 0 0;
  color: var(--pink-deep);
}

.carta-signature {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px dashed var(--line);
  text-align: right;
}
.carta-signature .name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--pink-deep);
}
.carta-signature .role {
  font-size: 0.86rem;
  color: var(--ink-mute);
}

/* ============================================
   OFERTA
   ============================================ */

.oferta {
  background: var(--bg-section);
  padding: 80px 24px;
}

.oferta-card {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
}

.oferta-header {
  background: linear-gradient(135deg, var(--pink-deep), var(--pink-dark));
  color: #fff;
  padding: 36px 40px 30px;
  text-align: center;
  position: relative;
}
.oferta-header::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
}
.oferta-header .label {
  display: inline-block;
  background: var(--gold);
  color: var(--bg-dark);
  padding: 6px 16px;
  border-radius: 20px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.oferta-header h2 {
  color: #fff;
  margin-bottom: 8px;
  font-size: clamp(1.5rem, 3.2vw, 2rem);
}
.oferta-header p {
  color: rgba(255,255,255,0.92);
  font-size: 0.96rem;
}

.oferta-body { padding: 40px; }

.oferta-list {
  list-style: none;
  margin-bottom: 30px;
}
.oferta-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.96rem;
}
.oferta-list li:last-child { border-bottom: none; }

.oferta-list .check-circle {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.78rem;
}

.oferta-list span:nth-child(2) {
  flex: 1;
  color: var(--ink);
  font-weight: 500;
}

.oferta-list .price-tag {
  flex-shrink: 0;
  font-family: var(--display);
  font-weight: 700;
  color: var(--ink-mute);
  font-size: 0.85rem;
  text-decoration: line-through;
}

/* PRICE BOX - FIXED ALIGNMENT */
.oferta-price-box {
  background: linear-gradient(180deg, var(--pink-bg), #fff);
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;
  margin-bottom: 24px;
  border: 2px dashed var(--pink-soft);
}

.oferta-price-box .total-value {
  font-family: var(--display);
  font-size: 0.9rem;
  color: var(--ink-mute);
  margin-bottom: 6px;
}
.oferta-price-box .total-value strong {
  text-decoration: line-through;
  color: var(--red-alert);
  font-weight: 700;
}

.oferta-price-box .por {
  font-family: var(--display);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 700;
  margin: 14px 0 8px;
}

.preco-principal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--display);
  font-weight: 900;
  color: var(--pink-deep);
  line-height: 1;
}

.preco-principal .parcelas {
  font-size: 1.6rem;
  font-weight: 800;
  margin-right: 4px;
  align-self: center;
}

.preco-principal .moeda {
  font-size: 1.6rem;
  font-weight: 800;
  align-self: flex-start;
  margin-top: 6px;
}

.preco-principal .num {
  font-size: clamp(3.2rem, 8vw, 4.8rem);
  font-weight: 900;
  line-height: 1;
}

.preco-principal .cents {
  font-size: 1.6rem;
  font-weight: 800;
  align-self: flex-start;
  margin-top: 6px;
}

.oferta-price-box .pix-line {
  font-family: var(--display);
  font-weight: 700;
  color: var(--ink);
  margin-top: 12px;
  font-size: 0.98rem;
}
.oferta-price-box .pix-line .pix-tag {
  display: inline-block;
  background: var(--green);
  color: #fff;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 0.76rem;
  margin-left: 6px;
  letter-spacing: 0.06em;
}

.oferta-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 22px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.oferta-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  color: var(--ink-soft);
  font-weight: 600;
}
.oferta-trust-row svg {
  width: 16px;
  height: 16px;
  color: var(--green);
}

/* ============================================
   GARANTIA
   ============================================ */

.garantia {
  background: var(--bg);
  padding: 80px 24px;
}

.garantia-inner {
  max-width: 880px;
  margin: 0 auto;
  background: linear-gradient(135deg, #fff, var(--pink-bg));
  border-radius: 22px;
  padding: 48px 44px;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: center;
  border: 1px solid var(--line);
}

.seal {
  width: 200px;
  height: 200px;
}

.garantia-text h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: var(--ink);
}
.garantia-text h3 em {
  font-style: normal;
  color: var(--pink-deep);
}
.garantia-text p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
}

/* ============================================
   FAQ
   ============================================ */

.faq {
  background: var(--bg-section);
  padding: 80px 24px;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: 14px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.faq-item[open] {
  box-shadow: var(--shadow-md);
  border-color: var(--pink-soft);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.4;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--pink-deep); }

.faq-toggle {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--pink-tint);
  color: var(--pink-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  transition: transform 0.3s, background 0.3s, color 0.3s;
}
.faq-item[open] .faq-toggle {
  transform: rotate(45deg);
  background: var(--pink-deep);
  color: #fff;
}

.faq-answer {
  padding: 0 26px 22px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.75;
}
.faq-answer p + p { margin-top: 10px; }

/* ============================================
   CTA FINAL
   ============================================ */

.cta-final {
  background: linear-gradient(135deg, var(--pink-deep), var(--pink-dark));
  color: #fff;
  padding: 90px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before, .cta-final::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
}
.cta-final::before { top: -100px; left: -100px; width: 400px; height: 400px; }
.cta-final::after { bottom: -100px; right: -100px; width: 400px; height: 400px; }

.cta-final-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

.cta-final .eyebrow {
  color: var(--gold-soft);
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: inline-block;
}
.cta-final h2 {
  color: #fff;
  margin-bottom: 22px;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
}
.cta-final h2 em {
  font-style: normal;
  color: var(--gold-soft);
}
.cta-final p {
  color: rgba(255,255,255,0.92);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-final .price-line {
  font-family: var(--display);
  font-weight: 600;
  margin-top: 18px;
  color: rgba(255,255,255,0.92);
  font-size: 0.92rem;
}
.cta-final .price-line strong {
  color: var(--gold-soft);
  font-weight: 800;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.6);
  padding: 50px 24px 30px;
  text-align: center;
  font-size: 0.85rem;
}
footer .footer-brand {
  font-family: var(--display);
  font-weight: 800;
  color: var(--pink-soft);
  font-size: 1.4rem;
  margin-bottom: 8px;
}
footer a { color: var(--gold-soft); text-decoration: none; }
footer a:hover { color: var(--pink-soft); }
footer .footer-meta {
  margin-top: 14px;
  font-size: 0.74rem;
  opacity: 0.5;
}

/* ============================================
   SCROLL REVEAL
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.2,.7,.3,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */

@media (max-width: 960px) {
  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
    text-align: center;
    align-items: center;
  }

  /* Mobile: foto entre subtítulo e bullets pra conexão emocional antes do CTA */
  .hero-content { display: contents; }
  .hero-tag { order: 1; margin-bottom: 0; }
  .hero h1 { order: 2; margin-bottom: 0; }
  .hero-sub { order: 3; margin: 0 auto; }
  .hero-photo { order: 4; max-width: 360px; margin: 0 auto; }
  .hero-bullets {
    order: 5;
    margin-bottom: 0;
    display: inline-block;
    text-align: left;
  }
  .hero-content > .cta-wrap { order: 6; }
  .hero-trust {
    order: 7;
    justify-content: center;
    margin-top: 0;
    padding-top: 22px;
  }

  .dores-grid { grid-template-columns: 1fr; }
  .para-quem-grid { grid-template-columns: 1fr; }
  .modulos-grid { grid-template-columns: 1fr; }
  .formas-grid { grid-template-columns: 1fr; }
  .quem-grid { grid-template-columns: 1fr; }
  .bonus-grid { grid-template-columns: 1fr; }

  .garantia-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }
  .seal { margin: 0 auto; }
  .garantia-text { text-align: center; }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */

@media (max-width: 640px) {
  body { font-size: 16px; }

  /* Smaller text sizes for mobile */
  h1 { font-size: 1.85rem; line-height: 1.2; }
  h2 { font-size: 1.55rem; line-height: 1.2; }
  h3 { font-size: 1.2rem; }
  h4 { font-size: 1.02rem; }

  .container { padding: 0 18px; }

  /* Top bar */
  .top-bar {
    font-size: 0.74rem;
    padding: 9px 12px;
    line-height: 1.4;
  }

  /* Countdown */
  .countdown-bar { padding: 14px 12px; }
  .countdown-label { font-size: 0.7rem; margin-bottom: 8px; }
  .countdown-timer { font-size: 1.2rem; gap: 6px; }
  .countdown-timer .unit {
    padding: 5px 10px;
    min-width: 48px;
  }
  .countdown-timer .label-small { font-size: 0.55rem; }

  /* Hero */
  .hero { padding: 36px 18px 50px; }
  .hero-photo { max-width: 300px; }
  .hero-tag {
    font-size: 0.66rem;
    padding: 7px 14px;
    margin-bottom: 18px;
  }
  .hero-sub { font-size: 0.98rem; margin-bottom: 22px; }
  .hero-bullets li { font-size: 0.92rem; padding: 6px 0; }
  .hero-trust { gap: 12px; }
  .hero-trust span { font-size: 0.78rem; }

  /* Floating badges - smaller on mobile */
  .floating-badge {
    padding: 9px 12px;
    border-radius: 12px;
  }
  .floating-badge .badge-icon { width: 28px; height: 28px; }
  .floating-badge .badge-icon svg { width: 14px; height: 14px; }
  .floating-badge .badge-num { font-size: 0.85rem; }
  .floating-badge .badge-label { font-size: 0.62rem; }

  .badge-1 { left: -8px; top: 5%; }
  .badge-2 { right: -8px; top: 50%; }
  .badge-3 { left: 4%; bottom: 5%; }

  /* Sections - padding mais enxuto pra eliminar espaços grotescos */
  section.block { padding: 50px 18px; }
  .section-head { margin-bottom: 32px; }
  .section-eyebrow { font-size: 0.74rem; }
  .section-head p { font-size: 0.98rem; }

  /* Buttons */
  .btn {
    padding: 16px 24px;
    font-size: 0.95rem;
  }
  .btn-large {
    padding: 18px 24px;
    font-size: 1rem;
    max-width: 100%;
  }

  /* Cards more compact */
  .dor-card { padding: 26px 22px; }
  .dor-icon { width: 50px; height: 50px; margin-bottom: 14px; }
  .dor-icon svg { width: 24px; height: 24px; }
  .dor-resposta { padding: 30px 22px; }
  .dor-resposta h3 { font-size: 1.2rem; }
  .dor-resposta p { font-size: 0.95rem; }

  .para-item { padding: 18px 18px; gap: 12px; }
  .para-item p { font-size: 0.94rem; }
  .para-check { width: 30px; height: 30px; font-size: 0.85rem; }

  .modulo-card {
    padding: 22px 20px;
    gap: 16px;
    flex-direction: row;
    align-items: flex-start;
  }
  .modulo-num { width: 46px; height: 46px; font-size: 1.15rem; }
  .modulo-content h4 { font-size: 1rem; }
  .modulo-content p { font-size: 0.88rem; }
  .modulo-card.featured::before {
    font-size: 0.55rem;
    padding: 4px 42px;
    right: -38px;
    top: 18px;
    letter-spacing: 0.04em;
  }

  /* Galeria carrossel */
  .gallery-viewport { border-radius: 18px; }
  .gallery-dots { gap: 8px; margin-top: 20px; }
  .gallery-dot { width: 10px; height: 10px; }
  .gallery-dot.active { width: 26px; }

  /* Formas */
  .forma-card { padding: 30px 24px 26px; }
  .forma-num-big { font-size: 3rem; }
  .forma-card h3 { font-size: 1.18rem; }

  /* Quem */
  .pessoa-card { padding: 32px 22px; }
  .pessoa-photo { width: 110px; height: 110px; }
  .pessoa-card p { font-size: 0.93rem; }
  .pessoa-stats { gap: 8px; padding-top: 18px; margin-top: 18px; }
  .pessoa-stat-num { font-size: 1.6rem; }
  .pessoa-stat-label { font-size: 0.7rem; }

  /* Depoimentos - cards menores no mobile, animação mais rápida */
  .depoimento-card {
    flex: 0 0 240px;
    margin-right: 14px;
    min-height: 360px;
  }
  .depoimentos-track {
    animation-duration: 28s;
  }
  .depoimentos-scroll::before,
  .depoimentos-scroll::after {
    width: 30px;
  }

  /* Bônus */
  .bonus-card { padding: 28px 24px; }
  .bonus-icon-wrap { width: 54px; height: 54px; }
  .bonus-icon-wrap svg { width: 26px; height: 26px; }

  /* Carta */
  .carta-card { padding: 40px 24px 36px; }
  .carta-card p { font-size: 0.96rem; }
  .carta-card p.first::first-letter { font-size: 2.8rem; }
  .carta-signature { text-align: center; }
  .carta-signature .name { font-size: 1.15rem; }

  /* Oferta */
  .oferta { padding: 50px 18px; }
  .oferta-header { padding: 28px 24px 22px; }
  .oferta-header h2 { font-size: 1.4rem; }
  .oferta-header p { font-size: 0.88rem; }
  .oferta-body { padding: 28px 22px; }

  .oferta-list li {
    flex-wrap: wrap;
    font-size: 0.9rem;
    padding: 10px 0;
  }
  .oferta-list .price-tag {
    margin-left: auto;
    font-size: 0.78rem;
  }

  .oferta-price-box {
    padding: 22px 16px;
  }
  .oferta-price-box .total-value { font-size: 0.84rem; }
  .oferta-price-box .por { font-size: 0.7rem; letter-spacing: 0.14em; }

  .preco-principal {
    gap: 4px;
    flex-wrap: wrap;
  }
  .preco-principal .parcelas {
    font-size: 1.3rem;
    margin-right: 2px;
  }
  .preco-principal .moeda {
    font-size: 1.2rem;
    margin-top: 4px;
  }
  .preco-principal .num { font-size: 3rem; }
  .preco-principal .cents {
    font-size: 1.2rem;
    margin-top: 4px;
  }
  .oferta-price-box .pix-line { font-size: 0.92rem; }

  .oferta-trust-row {
    gap: 10px 16px;
    margin-top: 18px;
    padding-top: 18px;
  }
  .oferta-trust-row span { font-size: 0.74rem; }

  /* Garantia */
  .garantia { padding: 50px 18px; }
  .garantia-inner { padding: 36px 24px; }
  .seal { width: 160px; height: 160px; }
  .garantia-text h3 { font-size: 1.3rem; }
  .garantia-text p { font-size: 0.95rem; }

  /* FAQ */
  .faq { padding: 50px 18px; }
  .faq-item summary {
    padding: 18px 20px;
    font-size: 0.94rem;
    gap: 12px;
  }
  .faq-toggle { width: 28px; height: 28px; font-size: 1rem; }
  .faq-answer { padding: 0 20px 20px; font-size: 0.9rem; }

  /* CTA Final */
  .cta-final { padding: 60px 18px; }
  .cta-final p { font-size: 0.98rem; margin-bottom: 28px; }
  .cta-final .price-line { font-size: 0.86rem; }

  /* Footer */
  footer { padding: 40px 18px 24px; }
  footer .footer-brand { font-size: 1.2rem; }
  footer { font-size: 0.8rem; }
  footer .footer-meta { font-size: 0.7rem; line-height: 1.6; }
}

@media (max-width: 380px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.4rem; }

  .preco-principal .num { font-size: 2.6rem; }
  .preco-principal .parcelas, .preco-principal .moeda, .preco-principal .cents {
    font-size: 1.05rem;
  }

  .countdown-timer { font-size: 1rem; gap: 4px; }
  .countdown-timer .unit { padding: 4px 8px; min-width: 42px; }

  .oferta-list li { font-size: 0.86rem; }

  .depoimento-card { flex: 0 0 230px; }
}
