/* ============================================================
   STYLES.CSS — Neurocodificação da Alma® Landing Page
   Brand: Jade Gouvea / UMA — "Quiet Luxury"
   ============================================================ */

/* --- CSS Variables (Design Tokens) --- */
:root {
  /* Colors */
  --navy: #0d163b;
  --gold: #ad8f63;
  --sand: #f2e9d7;
  --off-white: #f9f8f2;
  --body-text: #2c2c3a;
  --light-gold: #c9b896;
  --muted-navy: #3a4065;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
  --font-methodology: 'Cormorant Garamond', Georgia, serif;

  /* Spacing (8px base) */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  --space-5xl: 128px;

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 800px;
  --container-padding: 20px;
  --section-py: 48px;

  /* Effects */
  --shadow-subtle: 0 4px 24px rgba(13, 22, 59, 0.06);
  --shadow-header: 0 2px 16px rgba(13, 22, 59, 0.08);
  --radius: 8px;
  --transition: 0.3s ease;
}

@media (min-width: 768px) {
  :root {
    --container-padding: 32px;
    --section-py: 64px;
  }
}

@media (min-width: 1024px) {
  :root {
    --container-padding: 48px;
    --section-py: 96px;
  }
}

@media (min-width: 1440px) {
  :root {
    --section-py: 128px;
  }
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--body-text);
  background-color: var(--off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

sup {
  font-size: 0.55em;
  vertical-align: super;
  line-height: 0;
}

/* --- Layout --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}

.section--off-white {
  background-color: var(--off-white);
}

.section--sand {
  background-color: var(--sand);
}

.section--navy {
  background-color: var(--navy);
}

/* --- Typography --- */
.section__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: var(--space-xl);
  text-align: center;
  letter-spacing: 0.02em;
}

.section__title--light {
  color: var(--off-white);
}

.section__body {
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.7;
  color: var(--body-text);
  margin-bottom: var(--space-md);
  text-align: center;
}

.section__body:last-child {
  margin-bottom: 0;
}

.section__body--emphasis {
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 500;
  line-height: 1.6;
}

.section__body--highlight {
  font-weight: 600;
  color: var(--navy);
  font-style: italic;
}

.section__body--closing {
  margin-top: var(--space-xl);
  font-style: italic;
}

.section__body--small {
  font-size: 14px;
  color: var(--muted-navy);
  margin-top: var(--space-md);
}

.methodology-name {
  font-family: var(--font-methodology);
  font-style: italic;
  color: var(--gold);
  font-size: 1.15em;
}

.section__cta {
  text-align: center;
  margin-top: var(--space-2xl);
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 18px 48px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-align: center;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: all var(--transition);
  cursor: pointer;
  min-height: 56px;
  line-height: 1.4;
}

.btn--primary {
  background-color: var(--gold);
  color: var(--off-white);
  border-color: var(--gold);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background-color: var(--light-gold);
  border-color: var(--light-gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(173, 143, 99, 0.3);
}

.btn--outline {
  background-color: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn--outline:hover,
.btn--outline:focus-visible {
  background-color: var(--gold);
  color: var(--off-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(173, 143, 99, 0.3);
}

.btn--sm {
  padding: 10px 24px;
  font-size: 14px;
  min-height: 44px;
}

.btn--lg {
  padding: 22px 56px;
  font-size: 18px;
}

.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--off-white);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-header);
}

.header__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-md) var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.header__logo {
  display: flex;
  align-items: center;
}

.header__logo-img {
  height: 28px;
  width: auto;
}

@media (min-width: 768px) {
  .header__logo-img {
    height: 34px;
  }
}

.header__event-info {
  font-size: 14px;
  color: var(--muted-navy);
  letter-spacing: 0.04em;
  font-weight: 500;
  display: none;
}

@media (min-width: 768px) {
  .header__event-info {
    display: block;
  }
}

/* --- Hero: Split Layout --- */
.hero {
  background-color: var(--navy);
  min-height: auto;
  display: flex;
  overflow: hidden;
  position: relative;
  padding-top: 64px; /* header clearance on mobile */
}

@media (min-width: 768px) {
  .hero {
    padding-top: 80px; /* Clear fixed header so photo head is fully visible */
  }
}

.hero__inner {
  display: flex;
  flex-direction: column;
  width: 100%;
}

@media (min-width: 768px) {
  .hero__inner {
    flex-direction: row;
    align-items: stretch;
  }
}

/* --- Hero: Text Column --- */
.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-3xl) var(--container-padding);
  text-align: left;
  order: 2; /* below photo on mobile */
}

@media (min-width: 768px) {
  .hero__content {
    width: 48%;
    flex-shrink: 0;
    order: 1; /* left side on desktop */
    padding-top: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    padding-left: max(var(--container-padding), calc((100vw - var(--container-max)) / 2 + var(--container-padding)));
    padding-right: var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .hero__content {
    width: 45%;
    padding-right: var(--space-3xl);
  }
}

/* --- Hero: Photo Column --- */
.hero__photo-wrapper {
  position: relative;
  order: 1; /* photo on top on mobile */
  width: 100%;
  height: 50vh;
  min-height: 320px;
  max-height: 480px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero__photo-wrapper {
    order: 2;
    width: 52%;
    height: auto;
    min-height: 600px;
    max-height: none;
    flex-shrink: 0;
  }
}

@media (min-width: 1024px) {
  .hero__photo-wrapper {
    width: 55%;
  }
}

.hero__photo {
  width: 100%;
  height: 100% !important; /* Override global img { height: auto } reset */
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* --- Hero: Photo Overlay (Navy Gradient Blend) --- */
.hero__photo-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

@media (min-width: 768px) {
  .hero__photo-overlay {
    background: linear-gradient(
      to right,
      var(--navy) 0%,
      rgba(13, 22, 59, 0.45) 12%,
      rgba(13, 22, 59, 0.12) 35%,
      rgba(13, 22, 59, 0.04) 60%,
      transparent 100%
    );
  }
}

@media (max-width: 767px) {
  .hero__photo-overlay {
    background: linear-gradient(
      to bottom,
      rgba(13, 22, 59, 0.03) 0%,
      rgba(13, 22, 59, 0.25) 100%
    );
  }
}

.hero__label {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--light-gold);
  margin-bottom: var(--space-lg);
}

.hero__methodology {
  font-family: var(--font-methodology);
  font-style: italic;
  font-size: clamp(32px, 5.5vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--gold);
  margin-bottom: var(--space-2xl);
  letter-spacing: 0.02em;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.2vw, 32px);
  font-weight: 400;
  line-height: 1.35;
  color: var(--off-white);
  margin-bottom: var(--space-lg);
}

.hero__subheadline {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 400;
  line-height: 1.6;
  color: var(--light-gold);
  margin-bottom: var(--space-2xl);
}

.hero__details {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: var(--space-sm) var(--space-md);
  font-size: 15px;
  color: rgba(249, 248, 242, 0.75);
  margin-bottom: var(--space-2xl);
  font-weight: 400;
}

.hero__divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--gold);
  display: none;
}

@media (min-width: 600px) {
  .hero__divider {
    display: block;
  }
}

/* Hero animation */
.animate-hero {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 0.8s ease forwards;
}

@keyframes heroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Insight Block --- */
.insight-block {
  margin: var(--space-2xl) 0;
  padding: var(--space-xl) var(--space-xl);
  border-left: 3px solid var(--gold);
  background-color: rgba(249, 248, 242, 0.6);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.insight-block__main {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.8vw, 26px);
  font-weight: 400;
  line-height: 1.4;
  color: var(--navy);
  text-align: left;
}

/* --- Structure List --- */
.structure-list {
  margin: var(--space-xl) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.structure-list__item {
  padding: var(--space-lg) var(--space-xl);
  background-color: rgba(249, 248, 242, 0.5);
  border-radius: var(--radius);
  transition: transform var(--transition);
}

.structure-list__item:hover {
  transform: translateX(4px);
}

.structure-list__text {
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.6;
  color: var(--body-text);
  text-align: left;
}

.structure-list__text strong {
  color: var(--navy);
}

/* --- Contrast Block --- */
.contrast-block {
  margin: var(--space-2xl) 0 var(--space-lg);
  text-align: center;
}

.contrast-block__weak {
  font-size: clamp(16px, 1.8vw, 18px);
  color: var(--muted-navy);
  margin-bottom: var(--space-sm);
  font-style: italic;
}

.contrast-block__strong {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 28px);
  font-weight: 500;
  color: var(--navy);
}

/* --- Audience List (dark section) --- */
.audience-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  max-width: 680px;
  margin: 0 auto var(--space-2xl);
}

.audience-list__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.7;
  color: var(--off-white);
}

.audience-list__check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 4px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  position: relative;
}

.audience-list__check::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 7px;
  width: 6px;
  height: 10px;
  border: solid var(--gold);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.audience-list__closing {
  text-align: center;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.6;
  color: var(--off-white);
}

.audience-list__closing strong {
  color: var(--gold);
}

/* --- Authority Section --- */
.authority {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  align-items: center;
}

@media (min-width: 768px) {
  .authority {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-3xl);
  }
}

.authority__photo-wrapper {
  flex-shrink: 0;
  width: 100%;
  max-width: 360px;
}

@media (min-width: 768px) {
  .authority__photo-wrapper {
    width: 40%;
    max-width: none;
  }
}

.authority__photo {
  border-radius: var(--radius);
  box-shadow: var(--shadow-subtle);
  width: 100%;
  height: auto;
  object-fit: cover;
}

.authority__content {
  flex: 1;
}

.authority__content .section__title {
  text-align: left;
}

.authority__content .section__body {
  text-align: left;
}

.authority__intro {
  font-size: clamp(20px, 2.4vw, 24px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--navy);
  margin-bottom: var(--space-lg);
}

.authority__intro strong {
  font-weight: 600;
}

/* --- Stats --- */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-lg);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--sand);
}

.stats__item {
  text-align: center;
}

.stats__number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 500;
  color: var(--gold);
  line-height: 1.2;
  margin-bottom: var(--space-xs);
}

.stats__label {
  display: block;
  font-size: clamp(12px, 1.3vw, 14px);
  color: var(--muted-navy);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

@media (max-width: 480px) {
  .stats {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

/* --- Final Details --- */
.final-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-lg) var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.final-details__item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--navy);
  font-weight: 500;
}

.final-details__svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* --- FAQ --- */
.faq {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--sand);
}

.faq__item:first-child {
  border-top: 1px solid var(--sand);
}

.faq__question {
  width: 100%;
  padding: var(--space-lg) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  transition: color var(--transition);
}

.faq__question:hover {
  color: var(--gold);
}

.faq__question:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

.faq__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  transition: transform var(--transition);
}

.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background-color: var(--gold);
  border-radius: 1px;
}

.faq__icon::before {
  top: 50%;
  left: 4px;
  right: 4px;
  height: 2px;
  transform: translateY(-50%);
}

.faq__icon::after {
  left: 50%;
  top: 4px;
  bottom: 4px;
  width: 2px;
  transform: translateX(-50%);
  transition: transform var(--transition), opacity var(--transition);
}

.faq__question[aria-expanded="true"] .faq__icon::after {
  transform: translateX(-50%) scaleY(0);
  opacity: 0;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq__answer p {
  padding-bottom: var(--space-lg);
  font-size: clamp(16px, 1.7vw, 17px);
  line-height: 1.7;
  color: var(--body-text);
}

.faq__item.open .faq__answer {
  max-height: 500px;
}

/* --- Footer --- */
.footer {
  background-color: var(--navy);
  padding: var(--space-2xl) var(--container-padding);
  text-align: center;
}

.footer__logo {
  height: 40px;
  width: auto;
  margin: 0 auto var(--space-lg);
  display: block;
}

.footer__copy {
  font-size: 13px;
  color: rgba(249, 248, 242, 0.5);
  letter-spacing: 0.02em;
}

/* --- Scroll Animations --- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Utility: Selection --- */
::selection {
  background-color: var(--gold);
  color: var(--off-white);
}

/* --- Utility: Scrollbar (subtle) --- */
@media (min-width: 768px) {
  ::-webkit-scrollbar {
    width: 8px;
  }
  ::-webkit-scrollbar-track {
    background: var(--off-white);
  }
  ::-webkit-scrollbar-thumb {
    background: var(--light-gold);
    border-radius: 4px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
  }
}

/* --- Print --- */
@media print {
  .header,
  .btn,
  .faq__icon {
    display: none;
  }
  .section {
    padding: 24px 0;
    break-inside: avoid;
  }
  body {
    color: #000;
    background: #fff;
  }
}

/* ============================================================
   JORNADA DA PRIMAVERA — page-specific components
   ============================================================ */

/* --- Hero CTA --- */
.hero__cta-wrapper {
  margin-top: var(--space-xl);
}

.hero__cta {
  display: block;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 4px 20px rgba(173, 143, 99, 0.35);
}

@media (min-width: 768px) {
  .hero__cta {
    display: inline-block;
    width: auto;
  }
}

.hero__price-note {
  margin-top: var(--space-md);
  font-size: 15px;
  color: var(--light-gold);
  letter-spacing: 0.04em;
}

/* --- Light body text for navy sections --- */
.section__body--light {
  color: rgba(249, 248, 242, 0.88);
}

.section__body--light strong {
  color: var(--gold);
}

/* --- Desire List --- */
.desire-list {
  margin: var(--space-xl) auto;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.desire-list li {
  position: relative;
  padding: var(--space-md) var(--space-lg) var(--space-md) var(--space-2xl);
  background-color: rgba(249, 248, 242, 0.55);
  border-radius: var(--radius);
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.6;
  color: var(--body-text);
}

.desire-list li::before {
  content: '';
  position: absolute;
  left: var(--space-lg);
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--gold);
}

/* --- Big Question (display serif, centered) --- */
.big-question {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.4vw, 34px);
  font-weight: 400;
  line-height: 1.3;
  color: var(--navy);
  text-align: center;
  margin: var(--space-xl) auto var(--space-md);
  max-width: 640px;
}

.big-question--word {
  font-style: italic;
  color: var(--gold);
}

/* --- Navy section statements --- */
.navy-statement {
  font-family: var(--font-methodology);
  font-style: italic;
  font-size: clamp(26px, 4vw, 40px);
  color: var(--gold);
  text-align: center;
  margin: calc(-1 * var(--space-md)) 0 var(--space-2xl);
  line-height: 1.25;
}

.navy-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: var(--gold);
  text-align: center;
  margin: var(--space-xl) auto;
  max-width: 640px;
}

.methodology-highlight {
  font-family: var(--font-methodology);
  font-style: italic;
  font-size: clamp(28px, 4.4vw, 44px);
  color: var(--gold);
  text-align: center;
  margin: var(--space-xl) 0;
  letter-spacing: 0.02em;
}

/* --- Steps Row (navy section) --- */
.steps-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin: var(--space-2xl) 0;
}

@media (min-width: 768px) {
  .steps-row {
    flex-direction: row;
    gap: var(--space-xl);
  }
}

.steps-row__item {
  flex: 1;
  padding: var(--space-xl);
  background-color: rgba(249, 248, 242, 0.06);
  border: 1px solid rgba(173, 143, 99, 0.35);
  border-radius: var(--radius);
  text-align: center;
}

.steps-row__item p {
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.6;
  color: rgba(249, 248, 242, 0.88);
}

.steps-row__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 auto var(--space-md);
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--gold);
}

/* --- Sub Title --- */
.sub-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.3;
  color: var(--navy);
  margin: var(--space-3xl) 0 var(--space-lg);
  text-align: center;
}

/* --- Question List --- */
.question-list {
  margin: var(--space-xl) auto;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.question-list li {
  position: relative;
  padding-left: var(--space-lg);
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.6;
  color: var(--body-text);
  font-style: italic;
}

.question-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 2px;
  background-color: var(--gold);
}

/* --- Evidence List (quotes) --- */
.evidence-list {
  margin: var(--space-xl) auto;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  text-align: center;
}

.evidence-list li {
  font-family: var(--font-display);
  font-size: clamp(17px, 2vw, 21px);
  font-style: italic;
  line-height: 1.5;
  color: var(--navy);
}

.evidence-list--light li {
  color: var(--off-white);
}

/* --- Formula --- */
.formula {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 30px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin: var(--space-2xl) 0;
  padding: var(--space-lg) var(--space-md);
  border-top: 1px solid rgba(173, 143, 99, 0.4);
  border-bottom: 1px solid rgba(173, 143, 99, 0.4);
}

/* --- Receive List --- */
.receive-list {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.receive-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.6;
  color: var(--body-text);
}

.receive-list li strong {
  color: var(--navy);
}

.receive-list__check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 4px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  position: relative;
}

.receive-list__check::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 7px;
  width: 6px;
  height: 10px;
  border: solid var(--gold);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* --- Offer Card --- */
.offer-card {
  background-color: var(--off-white);
  border: 1px solid var(--light-gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow-subtle);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  max-width: 560px;
  margin: 0 auto var(--space-3xl);
}

@media (min-width: 768px) {
  .offer-card {
    padding: var(--space-3xl) var(--space-2xl);
  }
}

.offer-card__label {
  font-family: var(--font-methodology);
  font-style: italic;
  font-size: clamp(24px, 3.4vw, 32px);
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.offer-card__date {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.6vw, 26px);
  color: var(--navy);
  margin-bottom: var(--space-lg);
}

.offer-card__desc {
  font-size: clamp(15px, 1.7vw, 17px);
  line-height: 1.7;
  color: var(--body-text);
  margin-bottom: var(--space-xl);
}

.offer-card__price {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 38px);
  color: var(--navy);
  margin-bottom: var(--space-xl);
}

.offer-card__price-label {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-navy);
  margin-bottom: var(--space-xs);
}

.offer-card__btn {
  width: 100%;
  max-width: 400px;
}

/* --- Final CTA --- */
.final-cta {
  text-align: center;
}

.final-cta .section__title {
  margin-bottom: var(--space-sm);
}

.final-cta__sub {
  font-family: var(--font-methodology);
  font-style: italic;
  font-size: clamp(24px, 3.6vw, 36px);
  color: var(--gold);
  line-height: 1.3;
}

/* --- Gatekeeper review fixes (v1) --- */
.section--sand .methodology-name {
  color: var(--navy);
}

.header__logo {
  padding: 10px 8px;
  margin-left: -8px;
  min-height: 44px;
}

/* --- Guia 12 copy components (v3) --- */
.hero__rhythm {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.6;
  color: var(--off-white);
  margin-bottom: var(--space-xl);
}

.encounters {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

@media (min-width: 900px) {
  .encounters {
    flex-direction: row;
    align-items: stretch;
    gap: var(--space-xl);
  }
  .encounters .encounter-card {
    flex: 1;
  }
}

.encounter-card {
  background-color: var(--sand);
  border-radius: var(--radius);
  padding: var(--space-xl);
  box-shadow: var(--shadow-subtle);
}

.encounter-card__date {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-navy);
  margin-bottom: var(--space-sm);
}

.encounter-card__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 2.4vw, 24px);
  line-height: 1.3;
  color: var(--navy);
  margin-bottom: var(--space-md);
}

.encounter-card__body {
  font-size: clamp(16px, 1.7vw, 17px);
  line-height: 1.7;
  color: var(--body-text);
  margin-bottom: var(--space-md);
}

.encounter-card__body:last-child {
  margin-bottom: 0;
}

.encounter-card__body strong {
  color: var(--navy);
}

.section--sand .big-question--word {
  color: var(--navy);
}
