﻿/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 76px 0 96px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 72px;
  align-items: center;
}
.hero-copy { min-width: 0; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream-soft);
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 0.05s forwards;
}
.hero-eyebrow::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--copper);
}

.hero h1 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(1.85rem, 3.6vw, 3.15rem);
  line-height: 1.12;
  letter-spacing: -0.022em;
  color: var(--cream);
  margin: 0 0 28px;
  max-width: 620px;
  opacity: 0;
  overflow-wrap: break-word;
  animation: fadeUp 0.8s var(--ease) 0.15s forwards;
}
.hero h1 .em { font-style: italic; font-weight: 600; color: var(--cream); }

.hero-sub {
  font-size: 16.5px;
  line-height: 1.65;
  font-weight: 300;
  color: var(--cream-soft);
  max-width: 560px;
  margin: 0 0 44px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.3s forwards;
}
.hero-sub strong { color: var(--cream); font-weight: 500; }

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 22px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.45s forwards;
}

/* PHOTO HERO */
.hero-photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-width: 460px;
  margin-left: auto;
  opacity: 0;
  animation: photoIn 1s var(--ease) 0.2s forwards;
}
.hero-photo-frame {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy-deep);
}
.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: contrast(1.02) saturate(0.95);
}
.hero-photo-frame::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,42,74,0) 50%, rgba(14,42,74,0.45) 100%),
    linear-gradient(135deg, rgba(176,122,74,0.06) 0%, rgba(14,42,74,0.15) 100%);
  pointer-events: none;
}
.hero-photo-wrap::before {
  content: '';
  position: absolute;
  inset: 22px -22px -22px 22px;
  border: 1px solid var(--copper);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.55;
}
.photo-badge {
  position: absolute;
  left: -22px;
  bottom: 36px;
  background: var(--cream);
  color: var(--navy);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 40px -16px rgba(0,0,0,0.55);
  max-width: 280px;
}
.badge-content { line-height: 1.25; }
.badge-content .l1 {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper-deep);
  font-weight: 700;
  margin-bottom: 5px;
}
.badge-content .l2 {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.badge-flags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  padding-top: 10px;
  border-top: 1px solid rgba(14, 42, 74, 0.12);
  max-width: 220px;
}
.flag {
  display: inline-flex;
  width: 16px;
  height: 11px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0,0,0,0.15);
  flex-shrink: 0;
}
.flag svg { width: 100%; height: 100%; display: block; }
.vertical-mark {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.42em;
  color: var(--copper);
  opacity: 0.5;
  white-space: nowrap;
  z-index: 2;
  pointer-events: none;
}

/* ============ ÁREAS DE ATUAÇÃO (marquee) ============ */
.areas {
  position: relative;
  border-top: 1px solid var(--navy-line);
  border-bottom: 1px solid var(--navy-line);
  padding: 30px 0;
  background: rgba(8, 24, 43, 0.45);
  overflow: hidden;
}
.areas::before,
.areas::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}
.areas::before { left: 0; background: linear-gradient(90deg, var(--navy) 0%, rgba(14, 42, 74, 0) 100%); }
.areas::after { right: 0; background: linear-gradient(-90deg, var(--navy) 0%, rgba(14, 42, 74, 0) 100%); }
.areas-track {
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  animation: marquee 30s linear infinite;
  will-change: transform;
}
.areas:hover .areas-track { animation-play-state: paused; }
.area-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-soft);
  padding: 9px 16px;
  border: 1px solid var(--navy-line-2);
  border-radius: 999px;
  white-space: nowrap;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease), background 0.25s var(--ease);
}
.area-chip:hover { border-color: var(--copper); color: var(--cream); background: rgba(176, 122, 74, 0.06); }
.area-chip::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--copper);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============ SECTION EYEBROW (shared) ============ */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream-soft);
  margin: 0 0 32px;
}
.section-eyebrow::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--copper);
}
.section-eyebrow.centered { justify-content: center; }
.section-eyebrow.centered::before { display: none; }

/* ============ SOBRE MIM ============ */
.sobre { padding: 120px 0; position: relative; }
.sobre-header { margin-bottom: 72px; max-width: 820px; }
.sobre-h2 {
  font-family: var(--font-sans);
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--cream);
  margin: 0 0 14px;
}
.sobre-h2 .em { font-style: italic; }
.sobre-subtitle {
  font-size: 15.5px;
  font-weight: 400;
  color: var(--cream-soft);
  letter-spacing: 0.04em;
  margin: 0;
}
.sobre-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 96px;
}
.sobre-left { max-width: 420px; min-width: 0; }
.sobre-photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
}
.sobre-photo-frame {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy-deep);
}
.sobre-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: contrast(1.05) saturate(0.92);
}
.sobre-photo-frame::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,42,74,0) 55%, rgba(14,42,74,0.5) 100%),
    linear-gradient(135deg, rgba(176,122,74,0.06) 0%, rgba(14,42,74,0.15) 100%);
  pointer-events: none;
}
.sobre-photo-wrap::before {
  content: '';
  position: absolute;
  inset: 22px -22px -22px 22px;
  border: 1px solid var(--copper);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.5;
}
.sobre-signature {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--navy-line);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sobre-signature .name {
  font-size: 14px;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.sobre-signature .role {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--cream-mute);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Credentials block under signature */
.sobre-credentials {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--navy-line);
}
.sobre-credentials-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--copper-soft);
  margin-bottom: 16px;
}
.sobre-credentials-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sobre-credentials-list li {
  font-size: 13px;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  letter-spacing: 0.005em;
}
.sobre-credentials-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--copper);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}
.sobre-credentials-list li strong {
  color: var(--cream);
  font-weight: 500;
}

.sobre-content { padding-top: 6px; min-width: 0; }
/* ABNT-style paragraphs: justified + first-line indent */
.sobre-p {
  font-size: 17px;
  line-height: 1.75;
  font-weight: 300;
  color: var(--cream-soft);
  margin: 0 0 22px;
  text-align: justify;
  text-indent: 2em;
  hyphens: auto;
}
.sobre-p:last-child { margin-bottom: 0; }
.sobre-p strong { color: var(--cream); font-weight: 500; }

.pull-quote {
  margin: 36px 0 32px;
  padding: 4px 0 4px 26px;
  border-left: 2px solid var(--copper);
  font-family: var(--font-sans);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.32;
  letter-spacing: -0.012em;
  color: var(--cream);
  text-indent: 0;
}

/* Princípios */
.principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  padding-top: 64px;
  border-top: 1px solid var(--navy-line);
}
.principle { position: relative; }
.principle-num {
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--copper);
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.principle-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 10px;
  letter-spacing: -0.005em;
  line-height: 1.25;
}
.principle-desc {
  font-size: 13.5px;
  color: var(--cream-soft);
  font-weight: 300;
  line-height: 1.6;
}

.sobre-cta {
  margin-top: 84px;
  display: flex;
  justify-content: center;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--cream);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--copper);
  transition: gap 0.3s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.text-link:hover {
  gap: 18px;
  color: var(--copper-soft);
  border-bottom-color: var(--copper-soft);
}
.text-link svg { width: 16px; height: 16px; }

/* ============ DORES (interactive checklist) ============ */
.dores {
  padding: 110px 0 120px;
  background:
    radial-gradient(circle at 50% 0%, rgba(176, 122, 74, 0.08) 0%, transparent 50%),
    var(--navy);
  border-top: 1px solid var(--navy-line);
}
.dores-header {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}
.dores-h2 {
  font-family: var(--font-sans);
  font-size: clamp(1.85rem, 3.4vw, 2.85rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.022em;
  color: var(--cream);
  margin: 0 0 18px;
}
.dores-h2 .em { font-style: italic; }
.dores-lede {
  font-size: 16.5px;
  line-height: 1.65;
  font-weight: 300;
  color: var(--cream-soft);
  max-width: 620px;
  margin: 0 auto;
}

.dores-instruction-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 44px;
}
.dores-instruction {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper-soft);
  padding: 13px 24px;
  background: rgba(176, 122, 74, 0.08);
  border: 1px solid rgba(176, 122, 74, 0.45);
  border-radius: 999px;
  animation: gentle-pulse 2.8s ease-in-out infinite;
}
.dores-instruction svg {
  width: 16px;
  height: 16px;
  color: var(--copper);
}
@keyframes gentle-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(176, 122, 74, 0.35); }
  50% { box-shadow: 0 0 0 10px rgba(176, 122, 74, 0); }
}

.dores-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}
.dor-card {
  position: relative;
  padding: 26px 24px 26px;
  background: rgba(8, 24, 43, 0.55);
  border: 1px solid var(--navy-line);
  border-radius: var(--radius-lg);
  cursor: pointer;
  text-align: left;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 88px;
  font-family: var(--font-sans);
}
.dor-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.dor-card:hover {
  border-color: var(--copper);
  transform: translateY(-3px);
  background: rgba(8, 24, 43, 0.75);
}
/* Selected state — using :has() (modern) AND classic checkbox sibling for older browsers */
.dor-card:has(.dor-input:checked) {
  border-color: var(--copper);
  background: rgba(176, 122, 74, 0.12);
  box-shadow: 0 0 0 1px var(--copper) inset;
}
/* Fallback: input first in DOM, sibling .dor-checkbox styled when input is checked */
.dor-input:checked ~ .dor-checkbox {
  background: var(--copper);
  border-color: var(--copper);
}
.dor-input:checked ~ .dor-checkbox svg {
  opacity: 1;
  transform: scale(1);
}
/* :has() variant (kept for the card-level styling) */
.dor-card:has(.dor-input:checked) .dor-checkbox { background: var(--copper); border-color: var(--copper); }
.dor-card:has(.dor-input:checked) .dor-checkbox svg { opacity: 1; transform: scale(1); }
.dor-card:hover .dor-checkbox { border-color: var(--copper); }
.dor-checkbox {
  position: relative;
  top: auto;
  right: auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--navy-line-2);
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
  flex-shrink: 0;
}
.dor-checkbox svg {
  width: 12px; height: 12px;
  color: var(--cream);
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
/* Note: styling for checked state already handled above */

.dor-title {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.35;
  letter-spacing: -0.005em;
  padding-right: 0;
  flex: 1;
}

/* Bridge element — transition from Dores into Metodologia */
.dores-bridge {
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid var(--navy-line);
  text-align: center;
}
.dores-bridge-text {
  font-size: clamp(1.15rem, 1.85vw, 1.55rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--cream);
  margin: 0 0 24px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.015em;
}
.dores-bridge-text .em {
  font-style: italic;
  color: var(--copper-soft);
}
.dores-bridge-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper-soft);
  padding: 14px 0 12px;
  position: relative;
  transition: color 0.25s var(--ease);
}
.dores-bridge-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 1px;
  background: var(--copper);
  transition: width 0.4s var(--ease);
}
.dores-bridge-link:hover { color: var(--cream); }
.dores-bridge-link:hover::after { width: 100%; }
.dores-bridge-link svg {
  width: 16px;
  height: 16px;
  animation: bounce-down 2.4s ease-in-out infinite;
}
@keyframes bounce-down {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(5px); }
}

.dores-result {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 36px;
  background: rgba(8, 24, 43, 0.7);
  border: 1px solid var(--navy-line);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.dores-result.active {
  border-color: var(--copper);
  background: rgba(176, 122, 74, 0.08);
}
.dores-result-count {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--copper-soft);
  margin-bottom: 14px;
}
.dores-result-count b {
  color: var(--cream);
  font-size: 14px;
  font-weight: 700;
}
.dores-result-msg {
  font-size: 18px;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.45;
  margin: 0 0 24px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.dores-result-msg .em { color: var(--copper-soft); font-style: italic; }
.dores-result-cta {
  display: inline-flex;
}

/* ============ METODOLOGIA & VANTAGENS (timeline accordion) ============ */
.method {
  padding: 110px 0 130px;
  position: relative;
}
.method-header {
  max-width: 780px;
  margin: 0 0 64px;
}
.method-h2 {
  font-family: var(--font-sans);
  font-size: clamp(1.85rem, 3.4vw, 2.85rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.022em;
  color: var(--cream);
  margin: 0 0 16px;
}
.method-h2 .em { font-style: italic; }
.method-lede {
  font-size: 16.5px;
  line-height: 1.65;
  font-weight: 300;
  color: var(--cream-soft);
  max-width: 640px;
}

/* Timeline list */
.method-timeline {
  list-style: none;
  padding: 0;
  margin: 0 0 56px;
  position: relative;
  max-width: 900px;
}
/* The vertical line connecting steps */
.method-timeline::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: var(--navy-line);
}

.method-item {
  position: relative;
  padding-left: 64px;
  padding-bottom: 4px;
}
.method-item:last-child { padding-bottom: 0; }

/* Native details accordion */
.method-details { width: 100%; }
.method-details > summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 50px 18px 0;
  position: relative;
  transition: padding 0.25s var(--ease);
}
.method-details > summary::-webkit-details-marker { display: none; }
.method-details > summary:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 4px;
  border-radius: 6px;
}

.method-item-trigger {
  /* Now applied to summary itself via class, no need for button styles */
}

/* Step number circle */
.method-item-num {
  position: absolute;
  left: -64px;
  top: 16px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  border: 1px solid var(--navy-line-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--cream-soft);
  letter-spacing: 0.02em;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
  z-index: 2;
}
.method-details[open] .method-item-num {
  background: var(--copper);
  border-color: var(--copper);
  color: var(--cream);
  transform: scale(1.05);
}
.method-details > summary:hover .method-item-num {
  border-color: var(--copper);
  color: var(--cream);
}

.method-item-tag {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--copper-soft);
  margin-bottom: 6px;
}
.method-item-title {
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.3;
  letter-spacing: -0.012em;
  margin: 0;
  transition: color 0.25s var(--ease);
}
.method-details[open] .method-item-title { color: var(--copper-soft); }

/* Plus indicator on the right */
.method-item-plus {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border: 1px solid var(--navy-line-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
  flex-shrink: 0;
}
.method-item-plus::before,
.method-item-plus::after {
  content: '';
  position: absolute;
  background: var(--cream);
  transition: transform 0.3s var(--ease);
}
.method-item-plus::before { width: 12px; height: 1.5px; }
.method-item-plus::after { width: 1.5px; height: 12px; }
.method-details[open] .method-item-plus {
  background: var(--copper);
  border-color: var(--copper);
  transform: translateY(-50%) rotate(180deg);
}
.method-details[open] .method-item-plus::after { transform: scaleY(0); }

/* Content wrapper inside details (no max-height needed) */
.method-item-inner {
  padding: 4px 16px 24px 0;
}
.method-item-desc {
  font-size: 15.5px;
  line-height: 1.7;
  font-weight: 300;
  color: var(--cream-soft);
  margin: 0 0 20px;
}
.method-item-benefit {
  padding: 18px 22px;
  background: rgba(176, 122, 74, 0.08);
  border-left: 2px solid var(--copper);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.method-item-benefit-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--copper-soft);
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.method-item-benefit-label::before {
  content: '✓';
  color: var(--copper);
  font-size: 12px;
}
.method-item-benefit-text {
  font-size: 14.5px;
  color: var(--cream);
  font-weight: 400;
  line-height: 1.55;
}

.method-cta {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

/* ============ PLANOS ============ */
.planos {
  padding: 110px 0 120px;
  background:
    radial-gradient(circle at 50% 0%, rgba(176, 122, 74, 0.06) 0%, transparent 45%),
    var(--navy);
  border-top: 1px solid var(--navy-line);
}
.planos-header {
  max-width: 740px;
  margin: 0 auto 64px;
  text-align: center;
}
.planos-h2 {
  font-family: var(--font-sans);
  font-size: clamp(1.85rem, 3.4vw, 2.85rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.022em;
  color: var(--cream);
  margin: 0 0 18px;
}
.planos-h2 .em { font-style: italic; }
.planos-lede {
  font-size: 16.5px;
  line-height: 1.65;
  font-weight: 300;
  color: var(--cream-soft);
  max-width: 620px;
  margin: 0 auto;
}

.planos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 64px;
}
.plan-card {
  position: relative;
  padding: 38px 26px 30px;
  background: rgba(8, 24, 43, 0.55);
  border: 1px solid var(--navy-line);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.plan-card:hover {
  border-color: var(--copper);
  transform: translateY(-4px);
}
.plan-card.featured {
  border-color: var(--copper);
  background: rgba(176, 122, 74, 0.07);
  box-shadow: 0 24px 50px -22px rgba(176, 122, 74, 0.4);
}
.plan-card.featured:hover { transform: translateY(-6px); }

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--copper);
  color: var(--cream);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.plan-duration {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--navy-line);
  color: var(--copper-soft);
}
.duration-num {
  font-family: var(--font-sans);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--cream);
}
.plan-card.featured .duration-num { color: var(--copper-soft); }
.duration-unit {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-soft);
}

.plan-name {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 600;
  color: var(--cream);
  margin: 0 0 10px;
  letter-spacing: -0.005em;
}
.plan-tagline {
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--cream-soft);
  margin: 0 0 32px;
  flex: 1;
}

.plan-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 14px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.005em;
  color: var(--cream);
  border: 1px solid var(--navy-line-2);
  border-radius: var(--radius-md);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), gap 0.25s var(--ease);
  width: 100%;
  white-space: nowrap;
}
.plan-cta svg { width: 14px; height: 14px; transition: transform 0.25s var(--ease); }
.plan-cta:hover {
  border-color: var(--copper);
  background: rgba(176, 122, 74, 0.08);
  gap: 12px;
}
.plan-card.featured .plan-cta {
  background: var(--copper);
  border-color: var(--copper);
  color: var(--cream);
}
.plan-card.featured .plan-cta:hover {
  background: var(--copper-deep);
  border-color: var(--copper-deep);
}

/* Includes box */
.planos-includes {
  padding: 36px 44px 40px;
  background: rgba(8, 24, 43, 0.5);
  border: 1px solid var(--navy-line);
  border-radius: var(--radius-lg);
  margin-bottom: 36px;
}
.includes-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.includes-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--copper-soft);
  flex-shrink: 0;
}
.includes-header::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--navy-line);
}
.includes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 36px;
}
.includes-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--cream);
  font-weight: 400;
  line-height: 1.45;
}
.includes-list li svg {
  width: 18px;
  height: 18px;
  color: var(--copper);
  flex-shrink: 0;
  margin-top: 1px;
}

/* Note */
.planos-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 720px;
  margin: 0 auto 56px;
  padding: 16px 20px;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 400;
  color: var(--cream-mute);
  border-left: 2px solid var(--copper);
  background: rgba(176, 122, 74, 0.04);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.planos-note svg {
  width: 18px; height: 18px;
  color: var(--copper-soft);
  flex-shrink: 0;
  margin-top: 1px;
}
.planos-note strong { color: var(--cream); font-weight: 500; }

/* Final CTA */
.planos-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.planos-cta-sub {
  font-size: 13px;
  color: var(--cream-mute);
  font-weight: 300;
  letter-spacing: 0.02em;
  margin: 0;
}

/* ============ DEPOIMENTOS ============ */
.depoimentos {
  padding: 120px 0;
  position: relative;
}
.depoimentos-header {
  max-width: 760px;
  margin: 0 0 32px;
}
.depoimentos-h2 {
  font-family: var(--font-sans);
  font-size: clamp(1.85rem, 3.4vw, 2.85rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.022em;
  color: var(--cream);
  margin: 0 0 18px;
}
.depoimentos-h2 .em { font-style: italic; }
.depoimentos-lede {
  font-size: 16.5px;
  line-height: 1.65;
  font-weight: 300;
  color: var(--cream-soft);
  max-width: 620px;
  margin: 0;
}

/* Disclosure: transparency about anonymity */
.depoimentos-disclosure {
  display: inline-flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 720px;
  padding: 14px 18px;
  margin-bottom: 64px;
  font-size: 12.5px;
  line-height: 1.55;
  font-weight: 400;
  color: var(--cream-mute);
  border: 1px solid var(--navy-line);
  border-radius: var(--radius-md);
  background: rgba(8, 24, 43, 0.4);
}
.depoimentos-disclosure svg {
  width: 16px;
  height: 16px;
  color: var(--copper-soft);
  flex-shrink: 0;
  margin-top: 2px;
}
.depoimentos-disclosure strong { color: var(--cream); font-weight: 500; }

/* Masonry grid using CSS columns for natural varied heights */
.depoimentos-grid {
  column-count: 3;
  column-gap: 22px;
  margin-bottom: 24px;
}
.depoimentos-grid-more { margin-bottom: 0; padding-top: 4px; }
.depoimentos-more {
  margin-bottom: 64px;
}
.depoimentos-more-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  padding: 16px 24px;
  background: rgba(8, 24, 43, 0.55);
  border: 1px solid var(--navy-line-2);
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--cream);
  list-style: none;
  -webkit-tap-highlight-color: rgba(176, 122, 74, 0.2);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), gap 0.25s var(--ease);
}
.depoimentos-more-toggle::-webkit-details-marker { display: none; }
.depoimentos-more-toggle:hover {
  border-color: var(--copper);
  background: rgba(176, 122, 74, 0.1);
  gap: 14px;
}
.depoimentos-more[open] .depoimentos-more-toggle {
  border-color: var(--copper);
  background: rgba(176, 122, 74, 0.12);
}
.more-count {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--copper-soft);
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(176, 122, 74, 0.18);
}
.more-icon {
  display: inline-flex;
  transition: transform 0.35s var(--ease);
}
.more-icon svg { width: 16px; height: 16px; color: var(--copper-soft); }
.depoimentos-more[open] .more-icon { transform: rotate(180deg); }

/* ============ SECTION ACCORDIONS (compact whole sections) ============ */
.section-accordion {
  padding: 32px 0;
  border-top: 1px solid var(--navy-line);
}
.section-accordion[id="metodologia"] {
  background:
    radial-gradient(circle at 0% 0%, rgba(176, 122, 74, 0.04) 0%, transparent 40%),
    var(--navy);
}
.section-accordion[id="sobre"] {
  background:
    radial-gradient(circle at 100% 50%, rgba(176, 122, 74, 0.05) 0%, transparent 45%),
    var(--navy);
}
.section-accordion[id="planos"] {
  background:
    radial-gradient(circle at 50% 0%, rgba(176, 122, 74, 0.05) 0%, transparent 45%),
    var(--navy);
}
.section-accordion[id="dores"] {
  background:
    radial-gradient(circle at 100% 0%, rgba(176, 122, 74, 0.04) 0%, transparent 42%),
    var(--navy);
}
.section-accordion > summary {
  list-style: none;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(176, 122, 74, 0.18);
  display: block;
}
.section-accordion > summary::-webkit-details-marker { display: none; }

.section-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px 38px;
  max-width: 1180px;
  margin: 0 auto;
  background: rgba(8, 24, 43, 0.55);
  border: 1px solid var(--navy-line-2);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), transform 0.3s var(--ease);
  position: relative;
}
.section-accordion > summary:hover .section-card {
  border-color: var(--copper);
  background: rgba(176, 122, 74, 0.06);
  transform: translateY(-2px);
}
.section-accordion[open] > summary .section-card {
  border-color: var(--copper);
  background: rgba(176, 122, 74, 0.08);
}

.section-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(176, 122, 74, 0.12);
  border: 1px solid rgba(176, 122, 74, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.section-card-icon svg {
  width: 30px;
  height: 30px;
  color: var(--copper-soft);
  transition: color 0.3s var(--ease);
}
.section-accordion[open] .section-card-icon {
  background: var(--copper);
  transform: scale(1.05);
}
.section-accordion[open] .section-card-icon svg {
  color: var(--cream);
}

.section-card-text {
  flex: 1;
  min-width: 0;
}
.section-card-eyebrow {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--copper-soft);
  margin-bottom: 6px;
}
.section-card-title {
  font-family: var(--font-sans);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 600;
  letter-spacing: -0.018em;
  color: var(--cream);
  line-height: 1.2;
  margin: 0 0 8px;
}
.section-card-title .em { font-style: italic; }
.section-card-hook {
  font-size: 14.5px;
  font-weight: 300;
  color: var(--cream-soft);
  line-height: 1.5;
  margin: 0;
}
.section-card-toggle {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--navy-line-2);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--cream);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.section-card-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s var(--ease);
}
.section-accordion[open] .section-card-toggle {
  background: var(--copper);
  border-color: var(--copper);
}
.section-accordion[open] .section-card-toggle svg {
  transform: rotate(180deg);
}
.section-card-toggle .label-closed { display: inline; }
.section-card-toggle .label-open { display: none; }
.section-accordion[open] .section-card-toggle .label-closed { display: none; }
.section-accordion[open] .section-card-toggle .label-open { display: inline; }

/* The inner section keeps its existing styles but loses its own top padding */
.section-accordion .method,
.section-accordion .depoimentos,
.section-accordion .sobre,
.section-accordion .dores,
.section-accordion .planos,
.section-accordion .faq {
  padding-top: 24px;
}

/* Sobre Mim more (preview pattern) */
.sobre-more {
  margin-top: 24px;
}
.sobre-more-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: transparent;
  border: 1px solid var(--navy-line-2);
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--cream);
  list-style: none;
  -webkit-tap-highlight-color: rgba(176, 122, 74, 0.2);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), gap 0.25s var(--ease);
}
.sobre-more-toggle::-webkit-details-marker { display: none; }
.sobre-more-toggle:hover {
  border-color: var(--copper);
  background: rgba(176, 122, 74, 0.08);
  gap: 12px;
}
.sobre-more[open] .sobre-more-toggle {
  border-color: var(--copper);
  background: rgba(176, 122, 74, 0.12);
  margin-bottom: 20px;
}
.sobre-more-content {
  padding-top: 4px;
}
.sobre-more[open] .more-icon { transform: rotate(180deg); }
.depoimento {
  break-inside: avoid;
  margin-bottom: 22px;
  padding: 28px 26px 26px;
  background: rgba(8, 24, 43, 0.5);
  border: 1px solid var(--navy-line);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.depoimento:hover {
  border-color: var(--copper);
  background: rgba(8, 24, 43, 0.7);
}

/* Tag header: context + duration */
.dep-context {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--navy-line);
}
.dep-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper-soft);
}
.dep-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--copper);
  border-radius: 50%;
}
.dep-meta {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-mute);
}

/* Quote */
.dep-quote {
  font-size: 14.5px;
  line-height: 1.65;
  font-weight: 300;
  color: var(--cream-soft);
  margin: 0;
  font-style: normal;
}
.dep-quote::before {
  content: '"';
  font-family: 'Sora', serif;
  font-size: 32px;
  line-height: 0;
  color: var(--copper);
  margin-right: 4px;
  vertical-align: -8px;
  font-weight: 700;
}
.dep-quote::after { content: '"'; color: var(--copper); font-weight: 700; }
.dep-quote strong { color: var(--cream); font-weight: 500; }

/* Author signature */
.dep-author {
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--navy-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.dep-author-initials {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.04em;
}
.dep-author-meta {
  font-size: 11px;
  color: var(--cream-mute);
  font-weight: 400;
  letter-spacing: 0.04em;
}

/* Stats bar */
.depoimentos-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 36px 0;
  border-top: 1px solid var(--navy-line);
  border-bottom: 1px solid var(--navy-line);
  margin-bottom: 56px;
}
.stat {
  text-align: center;
}
.stat-number {
  font-family: var(--font-sans);
  font-size: clamp(1.85rem, 2.6vw, 2.4rem);
  font-weight: 700;
  color: var(--copper-soft);
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}
.stat-number .stat-suffix {
  font-size: 0.6em;
  color: var(--copper);
  margin-left: 2px;
}
.stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-soft);
  line-height: 1.4;
}

/* CTA */
.depoimentos-cta {
  display: flex;
  justify-content: center;
}

/* ============ FAQ ============ */
.faq {
  padding: 120px 0;
  border-top: 1px solid var(--navy-line);
  background:
    radial-gradient(circle at 50% 100%, rgba(176, 122, 74, 0.05) 0%, transparent 50%),
    var(--navy);
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
}
.faq-aside {
  position: sticky;
  top: 100px;
}
.faq-h2 {
  font-family: var(--font-sans);
  font-size: clamp(1.85rem, 3.4vw, 2.85rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.022em;
  color: var(--cream);
  margin: 0 0 18px;
}
.faq-h2 .em { font-style: italic; }
.faq-lede {
  font-size: 16px;
  line-height: 1.65;
  font-weight: 300;
  color: var(--cream-soft);
  margin: 0 0 32px;
}
.faq-aside-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.005em;
  color: var(--cream);
  border: 1px solid var(--copper);
  background: rgba(176, 122, 74, 0.08);
  border-radius: var(--radius-md);
  transition: background 0.25s var(--ease), gap 0.25s var(--ease);
}
.faq-aside-cta:hover {
  background: rgba(176, 122, 74, 0.18);
  gap: 16px;
}
.faq-aside-cta svg { width: 16px; height: 16px; }

/* Accordion */
.faq-list {
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-top: 1px solid var(--navy-line);
  position: relative;
}
.faq-item:last-child { border-bottom: 1px solid var(--navy-line); }

.faq-question {
  list-style: none;
  width: 100%;
  padding: 28px 56px 28px 4px;
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 500;
  text-align: left;
  letter-spacing: -0.008em;
  line-height: 1.4;
  cursor: pointer;
  position: relative;
  transition: color 0.25s var(--ease);
  display: block;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { color: var(--copper-soft); }
.faq-question:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 4px;
  border-radius: 4px;
}
.faq-item[open] .faq-question { color: var(--copper-soft); }

/* Plus/Minus indicator */
.faq-toggle {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border: 1px solid var(--navy-line-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.3s var(--ease);
  flex-shrink: 0;
}
.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--cream);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.faq-toggle::before {
  width: 10px;
  height: 1.5px;
}
.faq-toggle::after {
  width: 1.5px;
  height: 10px;
}
.faq-item[open] .faq-toggle {
  background: var(--copper);
  border-color: var(--copper);
  transform: translateY(-50%) rotate(180deg);
}
.faq-item[open] .faq-toggle::before { background: var(--cream); }
.faq-item[open] .faq-toggle::after { transform: scaleY(0); }
.faq-question:hover .faq-toggle { border-color: var(--copper); }

/* Answer (native details handles open/close) */
.faq-answer-inner {
  padding: 0 56px 32px 4px;
  font-size: 15.5px;
  line-height: 1.7;
  font-weight: 300;
  color: var(--cream-soft);
}
.faq-answer-inner p { margin: 0 0 12px; }
.faq-answer-inner p:last-child { margin-bottom: 0; }
.faq-answer-inner strong { color: var(--cream); font-weight: 500; }

/* ============ CTA FINAL ============ */
.cta-final {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--navy-line);
}
.cta-final::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(176, 122, 74, 0.1) 0%, transparent 60%);
  pointer-events: none;
}
.cta-final-inner {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-final-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--copper-soft);
  margin-bottom: 32px;
}
.cta-final-eyebrow::before,
.cta-final-eyebrow::after {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--copper);
}
.cta-final-h2 {
  font-family: var(--font-sans);
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--cream);
  margin: 0 0 24px;
}
.cta-final-h2 .em { font-style: italic; }
.cta-final-lede {
  font-size: 17px;
  line-height: 1.65;
  font-weight: 300;
  color: var(--cream-soft);
  max-width: 600px;
  margin: 0 auto 44px;
}
.cta-final-lede strong { color: var(--cream); font-weight: 500; }
.cta-final-button {
  margin-bottom: 32px;
  display: inline-flex;
}
.cta-final-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 32px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-mute);
}
.cta-final-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.cta-final-trust-item::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--copper);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============ FOOTER ============ */
.footer {
  padding: 56px 0 36px;
  border-top: 1px solid var(--navy-line);
  background: var(--navy-deep);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.footer-logo img {
  height: 36px;
  width: auto;
  opacity: 0.85;
}
.footer-tagline {
  font-size: 13px;
  font-weight: 300;
  color: var(--cream-mute);
  letter-spacing: 0.02em;
  text-align: center;
  max-width: 420px;
  line-height: 1.55;
}
.footer-divider {
  width: 60px;
  height: 1px;
  background: var(--copper);
  opacity: 0.5;
}
.footer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 24px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-mute);
}
.footer-meta a {
  color: var(--copper-soft);
  transition: color 0.25s var(--ease);
}
.footer-meta a:hover { color: var(--cream); }
.footer-meta span:not(:last-child)::after {
  content: '·';
  margin-left: 24px;
  color: var(--copper);
}
.footer-copyright {
  font-size: 11px;
  color: var(--cream-dim);
  letter-spacing: 0.04em;
  text-align: center;
  max-width: 480px;
  line-height: 1.5;
}
.footer-copyright a {
  color: var(--copper-soft);
  transition: color 0.25s var(--ease);
}
.footer-copyright a:hover { color: var(--cream); }
