@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg-primary: #0a0c10;
  --bg-secondary: #0d1017;
  --bg-card: rgba(255,255,255,0.03);
  --bg-card-hover: rgba(255,255,255,0.05);
  --text-primary: #f0ede8;
  --text-secondary: #ccc8c0;
  --text-muted: #908c86;
  --accent: #d4aa62;
  --accent-light: #ecd49e;
  --accent-dark: #b0903f;
  --border: rgba(201,169,110,0.15);
  --border-light: rgba(255,255,255,0.06);
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 17px; }

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1), transform 0.9s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.5s; }

/* ── LAYOUT ── */
.container {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 32px;
}

section {
  padding: 72px 0;
  position: relative;
}

section:nth-of-type(even) {
  background: var(--bg-secondary);
}

/* ── DIVIDER ── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 36px auto;
  width: 0;
  opacity: 0;
}

.divider.reveal {
  transform: none;
  transition: opacity 0.6s ease, width 1.2s cubic-bezier(0.22,1,0.36,1) 0.2s;
}

.divider.reveal.visible {
  opacity: 0.5;
  transform: none;
  width: 80px;
}

.divider:not(.reveal) {
  width: 80px;
  opacity: 0.5;
}

/* ── CENTERING ── */
section .container {
  text-align: center;
}

section .container p {
  margin-left: auto;
  margin-right: auto;
}

.steps,
.step,
.step-content,
.profile-section,
.profile-info,
.profile-info p,
.risk-list,
.risk-list li,
.card,
.card p,
.two-col,
.not-for-list,
.not-for-list li {
  text-align: left;
}

.narrative {
  text-align: center;
}

.narrative p {
  margin-left: auto;
  margin-right: auto;
}

/* ── TYPOGRAPHY ── */
.section-label {
  font-family: var(--font-body);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--accent);
  opacity: 0.6;
  flex-shrink: 0;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.2;
}

h1 { font-size: clamp(2.8rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 24px; }
h3 { font-size: 1.35rem; margin-bottom: 12px; color: var(--accent-light); }

p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 16px;
  max-width: 720px;
}

.lead {
  font-size: 1.2rem;
  line-height: 1.85;
  color: var(--text-secondary);
}

blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic;
  color: var(--text-primary);
  padding: 28px 0 28px 44px;
  margin: 44px 0;
  line-height: 1.5;
  position: relative;
}

blockquote::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 9rem;
  color: var(--accent);
  opacity: 0.18;
  position: absolute;
  left: -4px;
  top: -16px;
  line-height: 1;
  font-style: normal;
  pointer-events: none;
}

blockquote::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--accent) 30%, var(--accent) 70%, transparent);
}

/* ── HERO SUB ── */
.hero-sub {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  font-style: italic;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 16px;
  line-height: 1.4;
}

/* ── NARRATIVE ── */
.narrative {
  margin: 24px 0;
}

.narrative p {
  margin-bottom: 6px;
  font-size: 1.08rem;
  color: var(--text-secondary);
  max-width: none;
}

.narrative.narrative-tight {
  margin-top: 28px;
  padding-left: 20px;
  border-left: 1px solid var(--border);
}

.narrative.narrative-tight p {
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 4px;
}

.narrative-accent {
  color: var(--accent-light) !important;
  font-family: var(--font-heading);
  font-size: 1.45rem !important;
  font-style: italic;
  margin-top: 12px !important;
  text-shadow: 0 0 28px rgba(212,170,98,0.25);
}

/* ── CARD QUOTE ── */
.card-quote {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-primary);
  opacity: 0.82;
  line-height: 1.6;
  margin: 0;
  max-width: none;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 32px 100px;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(201,169,110,0.09) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 85% 75%, rgba(201,169,110,0.04) 0%, transparent 55%),
    radial-gradient(ellipse 30% 30% at 15% 85%, rgba(201,169,110,0.03) 0%, transparent 50%);
  pointer-events: none;
}

#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,169,110,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,110,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, black 0%, transparent 70%);
  pointer-events: none;
}

#hero .section-label {
  justify-content: center;
}

#hero .section-label::before,
#pergunta-1 .section-label::before {
  display: none;
}

#hero h1 {
  margin-bottom: 32px;
  max-width: 820px;
}

#hero .lead {
  max-width: 620px;
  margin: 0 auto;
}

/* ── SCROLL INDICATOR ── */
.scroll-indicator {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.6s ease 2s;
  pointer-events: none;
}

.scroll-indicator.show {
  opacity: 0.4;
  pointer-events: auto;
}

.scroll-indicator.show:hover {
  opacity: 0.8;
}

.scroll-indicator.hidden {
  opacity: 0 !important;
  pointer-events: none;
}

.scroll-indicator-label {
  font-size: 0.58rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
}

.scroll-indicator-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollLine 2.2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ── SYMPTOM GRID ── */
.symptom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
  margin-top: 44px;
}

.symptom-item {
  padding: 16px 20px 16px 36px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 300;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, opacity 0.4s ease;
  position: relative;
  opacity: 0;
  transform: translateY(14px);
}

.symptom-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.symptom-item::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.45;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.symptom-item:hover {
  background: rgba(201,169,110,0.05);
  border-color: var(--border);
  color: var(--text-primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.25);
}

.symptom-item:hover::before {
  opacity: 1;
  transform: translateY(-50%) scale(1.3);
}

/* ── CARDS ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 36px;
  margin-bottom: 16px;
  transition: border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent-light), var(--accent-dark));
  transform: scaleX(0);
  transition: transform 0.45s cubic-bezier(0.22,1,0.36,1);
  transform-origin: left;
}

.card:hover {
  border-color: rgba(201,169,110,0.2);
  background: rgba(255,255,255,0.04);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 0 1px rgba(201,169,110,0.06);
  transform: translateY(-3px);
}

.card:hover::before {
  transform: scaleX(1);
}

/* ── CLINICA IMAGE ── */
.clinica-img {
  margin: 40px 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

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

/* ── STEPS ── */
.steps {
  counter-reset: step;
  margin-top: 52px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  left: 21px;
  top: 44px;
  bottom: 44px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--border) 20%, var(--border) 80%, transparent);
}

.step {
  display: flex;
  gap: 32px;
  padding: 20px 0;
  align-items: flex-start;
  position: relative;
}

.step-number {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--accent);
  line-height: 1;
  min-width: 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

section:nth-of-type(odd) .step-number {
  background: var(--bg-primary);
}
section:nth-of-type(even) .step-number {
  background: var(--bg-secondary);
}

.step:hover .step-number {
  background: rgba(201,169,110,0.1);
  border-color: rgba(201,169,110,0.5);
  box-shadow: 0 0 24px rgba(201,169,110,0.15);
}

.step-content {
  flex: 1;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
}

.step:last-child .step-content { border-bottom: none; }

.step-content h3 { margin-bottom: 8px; font-size: 1.2rem; }
.step-content p { margin-bottom: 0; font-size: 0.95rem; }

/* ── PROFILE ── */
.profile-section {
  display: flex;
  gap: 52px;
  align-items: flex-start;
}

.profile-image {
  width: 260px;
  min-width: 260px;
  height: 320px;
  border-radius: 12px;
  background: linear-gradient(160deg, rgba(201,169,110,0.06) 0%, rgba(201,169,110,0.02) 60%, transparent 100%);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.profile-image::before {
  content: '';
  position: absolute;
  inset: 16px;
  border-radius: 8px;
  border: 1px solid rgba(201,169,110,0.07);
  pointer-events: none;
}

.profile-image::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(201,169,110,0.06), transparent);
  pointer-events: none;
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
}

@media (max-width: 768px) {
  .profile-image img {
    object-position: center 30%;
  }
}

/* ── PROFILE QUOTE ── */
.profile-quote {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  margin-bottom: 48px;
}

.profile-quote cite {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 16px;
  opacity: 0.8;
}

/* ── PROFILE FOOTNOTE ── */
.profile-footnote {
  font-size: 0.72rem !important;
  color: var(--text-muted) !important;
  line-height: 1.6;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
  max-width: none;
}

.profile-info { flex: 1; }
.profile-info p { font-size: 0.95rem; }

.profile-traits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trait {
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.77rem;
  color: var(--accent);
  letter-spacing: 0.5px;
  transition: background 0.3s ease, border-color 0.3s ease;
  cursor: default;
}

.trait:hover {
  background: rgba(201,169,110,0.08);
  border-color: rgba(201,169,110,0.35);
}

/* ── TWO COLUMN ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

/* ── RISK LIST ── */
.risk-list {
  list-style: none;
  margin-top: 36px;
}

.risk-list li {
  padding: 16px 0 16px 28px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-secondary);
  font-weight: 300;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.25s ease, padding-left 0.3s ease;
}

.risk-list li:first-child {
  border-top: 1px solid var(--border-light);
}

.risk-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 12px;
  height: 1px;
  background: var(--accent);
  opacity: 0.5;
  transition: width 0.3s ease, opacity 0.3s ease;
}

.risk-list li:hover {
  color: var(--text-primary);
  padding-left: 36px;
}

.risk-list li:hover::before {
  width: 20px;
  opacity: 1;
}

/* ── CTA ── */
#cta {
  text-align: center;
  padding: 120px 32px;
  position: relative;
}

#cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(201,169,110,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(201,169,110,0.03) 0%, transparent 70%);
  pointer-events: none;
}

#cta .section-label {
  justify-content: center;
}

#cta .section-label::before {
  display: none;
}

.cta-notice {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.3px;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}

.btn-cta {
  display: inline-block;
  padding: 18px 56px;
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  margin-top: 40px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.45s cubic-bezier(0.22,1,0.36,1), box-shadow 0.45s ease;
  isolation: isolate;
}

.btn-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: translateY(101%);
  transition: transform 0.45s cubic-bezier(0.22,1,0.36,1);
  z-index: -1;
}

.btn-cta:hover {
  color: var(--bg-primary);
  box-shadow: 0 0 60px rgba(201,169,110,0.2);
}

.btn-cta:hover::before {
  transform: translateY(0);
}

/* ── NOT FOR ── */
.not-for-list {
  list-style: none;
  margin-top: 24px;
}

.not-for-list li {
  padding: 12px 0 12px 28px;
  color: var(--text-muted);
  font-weight: 300;
  font-size: 0.92rem;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.not-for-list li::before {
  content: '×';
  position: absolute;
  left: 0;
  color: rgba(160,80,80,0.7);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* ── URGENCY ── */
@keyframes borderGlow {
  0%, 100% {
    border-color: rgba(201,169,110,0.15);
    box-shadow: 0 0 0 rgba(201,169,110,0);
  }
  50% {
    border-color: rgba(201,169,110,0.38);
    box-shadow: 0 0 80px rgba(201,169,110,0.08), inset 0 0 40px rgba(201,169,110,0.03);
  }
}

.urgency-box {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 60px;
  text-align: center;
  background: linear-gradient(135deg, rgba(201,169,110,0.04), transparent 60%);
  margin-top: 32px;
  animation: borderGlow 4s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.urgency-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,0.45), transparent);
}

.urgency-box .section-label {
  justify-content: center;
}

.urgency-box .section-label::before {
  display: none;
}

.urgency-box p { margin: 0 auto; }

/* ── SOFT BLOCK ── */
.soft-block {
  background: rgba(201,169,110,0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  margin: 36px 0;
  position: relative;
  overflow: hidden;
}

.soft-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,0.35), transparent);
}

.soft-block .section-label {
  margin-bottom: 12px;
}

.soft-block .section-label::before {
  display: none;
}

.soft-block-question {
  margin: 28px 0 6px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-primary);
  max-width: none;
}

/* ── LARGE STATEMENT ── */
.large-statement {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.7rem);
  font-weight: 300;
  color: var(--accent-light);
  font-style: italic;
  line-height: 1.3;
  margin: 12px 0 0;
  max-width: none;
  text-shadow: 0 0 40px rgba(236,212,158,0.2);
}

/* ── NARRATIVE STRONG ── */
.narrative strong {
  color: var(--text-primary);
  font-weight: 500;
}

/* ── PERORAÇÃO ── */
.peroracao-question {
  margin: 52px 0 0;
  text-align: center;
}

.peroracao-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: none;
}

.peroracao-highlight {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-style: italic;
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.25;
  margin: 0;
  max-width: none;
}

.peroracao-highlight em {
  color: var(--text-secondary);
  display: block;
}

/* ── STICKY CTA BAR ── */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  background: rgba(8,10,14,0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid var(--border-light);
  padding: 14px 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
}

.sticky-cta-bar.visible {
  transform: translateY(0);
}

.sticky-cta-bar p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
  letter-spacing: 1px;
}

.btn-sticky {
  display: inline-block;
  padding: 10px 28px;
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.btn-sticky:hover {
  background: var(--accent);
  color: var(--bg-primary);
}

/* ── FOOTER ── */
footer {
  text-align: center;
  padding: 40px 32px;
  border-top: 1px solid var(--border-light);
  font-size: 0.77rem;
  color: var(--text-muted);
  letter-spacing: 1px;
}

/* ── NAV ── */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
}

.top-bar.scrolled {
  background: rgba(10,12,16,0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 14px 48px;
  border-bottom: 1px solid var(--border-light);
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text-primary);
  letter-spacing: 1px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.logo:hover { color: var(--accent-light); }
.logo span { color: var(--accent); }

.nav-cta {
  font-size: 0.67rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 9px 22px;
  border-radius: 3px;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.nav-cta:hover {
  background: var(--accent);
  color: var(--bg-primary);
  border-color: var(--accent);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  section { padding: 52px 0; }
  .container { padding: 0 20px; }
  .profile-section { flex-direction: column; }
  .profile-image { width: 100%; min-width: auto; height: 260px; }
  .two-col { grid-template-columns: 1fr; }
  .top-bar { padding: 16px 20px; }
  .top-bar.scrolled { padding: 12px 20px; }
  blockquote { padding-left: 24px; }
  blockquote::before { font-size: 6rem; top: -8px; }
  .urgency-box { padding: 40px 24px; }
  .step { gap: 20px; }
  .steps::before { left: 21px; }
  .symptom-grid { grid-template-columns: 1fr 1fr; }
  .scroll-indicator { display: none; }
  .soft-block { padding: 28px 20px; }
  .peroracao-highlight { font-size: clamp(1.9rem, 6vw, 2.8rem); }
  .sticky-cta-bar { flex-direction: column; gap: 12px; padding: 16px 20px; }
  .sticky-cta-bar p { display: none; }
}

@media (max-width: 480px) {
  .symptom-grid { grid-template-columns: 1fr; }
  .section-label::before { display: none; }
}
