/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  --color-primary:        #b2dad1;
  --color-primary-dark:   #8fc4ba;
  --color-primary-light:  #d9eeea;
  --color-secondary:      #e8c5af;
  --color-secondary-dark: #d4a98c;
  --color-cta:            #3b82f6;
  --color-cta-dark:       #2563eb;
  --color-cta-darker:     #1d4ed8;
  --color-bg:             #f8f1e6;
  --color-text:           #614230;
  --color-text-muted:     #9a7060;
  --color-white:          #ffffff;
  --color-border:         #e8ddd3;

  --gradient-hero: linear-gradient(135deg, #b2dad1 0%, #e8c5af 100%);
  --gradient-card: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Lato', Helvetica, Arial, sans-serif;

  --container-max:  1320px;
  --container-px:   1.5rem;
  --header-height:  76px;
  --section-py:     clamp(64px, 8vw, 96px);

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-2xl:  36px;
  --radius-full: 9999px;

  --shadow-sm:  0 1px 4px rgba(97,66,48,.08);
  --shadow-md:  0 4px 20px rgba(97,66,48,.12);
  --shadow-lg:  0 8px 40px rgba(97,66,48,.18);
  --shadow-xl:  0 16px 60px rgba(97,66,48,.22);

  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms cubic-bezier(.4,0,.2,1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
em { font-style: italic; }
strong { font-weight: 700; }
s { opacity: 0.6; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-full);
  transition: background-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  white-space: nowrap;
  text-decoration: none;
}
.btn--full { width: 100%; }

.btn--cta {
  background: linear-gradient(135deg, var(--color-cta) 0%, var(--color-cta-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(59,130,246,.35);
}
.btn--cta:hover, .btn--cta:focus-visible {
  background: linear-gradient(135deg, var(--color-cta-dark) 0%, var(--color-cta-darker) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59,130,246,.45);
}
.btn--cta:active { transform: translateY(0); }

.btn--lg  { padding: 1.0625rem 2.5rem; font-size: 1rem; min-height: 56px; }
.btn--sm  { padding: 0.5rem 1.25rem; font-size: 0.8125rem; min-height: 36px; }

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

.cta-microcopy {
  font-size: 13px;
  color: #7A6F5E !important;
  text-align: center;
  margin-top: 12px;
  line-height: 1.4;
}
.audience .cta-microcopy,
.pricing .cta-microcopy {
  color: #D4C4A8 !important;
}

/* ============================================================
   EYEBROW & SECTION TITLES
   ============================================================ */
.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
  margin-bottom: 0.75rem;
}
.eyebrow--center { text-align: center; }

.section-title {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  color: var(--color-text);
  line-height: 1.15;
  text-align: center;
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.1875rem;
  color: var(--color-text-muted);
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 3rem;
  font-weight: 300;
}

/* ============================================================
   FLOATING CTA
   ============================================================ */
.floating-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  padding: 0.75rem 1.25rem calc(0.75rem + env(safe-area-inset-bottom));
  background-color: rgba(248,241,230,.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 -2px 24px rgba(59,130,246,.18);
  z-index: 90;
  transition: opacity var(--transition-base), transform var(--transition-base);
}
.floating-cta.is-hidden { opacity: 0; pointer-events: none; transform: translateY(100%); }
.floating-cta .btn { min-height: 56px; }

/* ============================================================
   SITE HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-height);
  z-index: 100;
  transition: background-color var(--transition-base), box-shadow var(--transition-base);
}
.site-header.is-scrolled {
  background-color: rgba(248,241,230,.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}
.logo { display: flex; align-items: center; min-height: 44px; padding-inline: 0.25rem; }
.logo__wordmark {
  height: 38px;
  width: auto;
  display: block;
}
.site-nav { display: none; align-items: center; gap: 2rem; }
.site-nav a:not(.btn) {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: color var(--transition-fast);
}
.site-nav a:not(.btn):hover { color: var(--color-text); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: clamp(640px, 85vh, 800px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-height);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: url('assets/img/fundo.png') center/cover no-repeat;
  z-index: 0;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(255,255,255,.22) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(255,255,255,.15) 0%, transparent 60%);
}
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  padding-block: 2rem 3rem;
  align-items: stretch;
}
.hero__grid > * { min-width: 0; max-width: 100%; }
/* Mobile: content first so video is above the fold */
@media (max-width: 767px) {
  .hero__content { order: -1; }
}


/* Cut-out photo column */
.hero__model {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.hero__model-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  filter: drop-shadow(0 12px 32px rgba(97,66,48,.22));
}


.hero__stat-pill { z-index: 3; }

/* Content column */
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding-block: 1.5rem;
}
.hero__content .eyebrow { color: var(--color-text); opacity: 0.7; }

.hero__title {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  line-height: 1.05;
  color: var(--color-text);
  letter-spacing: -0.02em;
}
.hero__title em {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 700;
  font-size: 1.05em;
  letter-spacing: 0;
  display: block;
}
.hero__subtitle {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--color-text);
  opacity: 0.78;
  font-weight: 400;
  margin-top: -0.25rem;
}

/* Hero video */
.hero__video {
  width: 100%;
  max-width: 540px;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(97,66,48,.22);
  margin-block: 0.5rem 0.25rem;
}
.hero__video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.hero__copy {
  font-size: 1.125rem;
  color: var(--color-text);
  opacity: 0.85;
  max-width: 540px;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.625rem;
  margin-top: 0.25rem;
}
.hero__price-hint {
  font-size: 1.0625rem;
  color: var(--color-text);
  opacity: 0.85;
}
.hero__price-hint strong { opacity: 1; color: var(--color-text); font-size: 1.25rem; }
.hero__price-hint span { opacity: 0.7; font-size: 0.9375rem; }
.hero__trust {
  font-size: 0.9375rem;
  color: var(--color-text);
  opacity: 0.7;
  letter-spacing: 0.01em;
}

/* Hero stat pill */
.hero__stat-pill {
  position: absolute;
  bottom: 1.5rem;
  right: 0.5rem;
  background: var(--color-white);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 8px 24px rgba(97,66,48,.18);
  z-index: 2;
}
.hero__stat-number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.25rem;
  color: var(--color-text);
  line-height: 1;
}
.hero__stat-text {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  line-height: 1.3;
}

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits {
  padding-block: var(--section-py);
  background: #FAF6EE;
  position: relative;
}
.benefits::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
  margin: 0;
}

.benefits__stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}
.stat-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}
.stat-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-cta) 0%, var(--color-primary) 100%);
}
.stat-card__value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 3.5rem;
  color: var(--color-cta);
  line-height: 1;
}
.stat-card__unit {
  font-size: 1.25rem;
  margin-left: 0.25rem;
  color: var(--color-text-muted);
}
.stat-card__label {
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--color-text);
  letter-spacing: 0.02em;
}
.stat-card p {
  font-size: 0.9375rem;
  color: var(--color-text);
  opacity: 0.75;
  line-height: 1.6;
}
.stat-card__icon {
  display: block;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(180,130,70,.12), rgba(180,130,70,.06));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
}
.stat-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-primary-dark);
  display: block;
}

.benefits__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.benefit-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 2rem 1.75rem;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}
.benefit-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.benefit-card__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(212,165,92,.15), rgba(74,50,33,.08));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3D2817;
  margin-bottom: 0.25rem;
}
.benefit-card__icon svg {
  width: 32px;
  height: 32px;
  display: block;
}
.benefit-card h3 {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: 1.1875rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.125rem;
  color: var(--color-text);
}
.benefit-card p { font-size: 0.9375rem; color: var(--color-text-muted); line-height: 1.6; }

.benefits__figure {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.benefits__figure img { width: 100%; object-fit: cover; }

/* ============================================================
   AUDIENCE
   ============================================================ */
.audience {
  padding-block: var(--section-py);
  background: #3D2817;
}
.audience .eyebrow { color: #D4A55C; }
.audience .section-title { color: #FAF6EE; }
.audience__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.persona-card {
  background: #4A3221;
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  border: 1px solid #D4A55C;
  transition: box-shadow 200ms ease, transform 200ms ease;
}
.persona-card:hover { box-shadow: 0 12px 32px rgba(0,0,0,.25); transform: translateY(-4px); }
.persona-card--wide { }

.persona-card__num {
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2rem, 8vw, 3.5rem);
  color: #D4A55C;
  line-height: 1;
  min-width: 2rem;
}
.persona-card h3 {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 600;
  font-size: 1.375rem;
  margin-bottom: 0.375rem;
  color: #FAF6EE;
  flex-shrink: 0;
}
.persona-card p { font-size: 1rem; color: #D4C4A8; line-height: 1.6; flex: 1 1 0; min-width: 0; }

.audience__callout {
  background: rgba(74,50,33,.5);
  border: 1px solid #D4A55C;
  border-radius: var(--radius-2xl);
  padding: 2rem 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-md);
}
.audience__callout p {
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 600px;
  color: #FAF6EE;
}
.audience__figure { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-md); }
.audience__figure img { width: 100%; object-fit: cover; }

/* ============================================================
   MODULES
   ============================================================ */
.modules {
  padding-block: var(--section-py);
  background: #D4C4A8;
}
.modules .eyebrow { color: #6B3E26; }
.modules .section-title { color: #2C1A0E; }

.modules__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 3rem;
}
.module-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #FAF6EE;
  border: 1px solid rgba(74,50,33,.15);
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  display: grid;
  grid-template-columns: minmax(90px, 120px) 1px 1fr;
  align-items: stretch;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
  min-height: 110px;
}
.module-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.15); transform: translateY(-2px); }

.module-card__label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  gap: 0.25rem;
  background: rgba(74,50,33,.06);
}
.module-card__label span {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6B3E26;
}
.module-card__label strong {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 2.5rem;
  color: #2C1A0E;
  line-height: 1;
}

.module-card__divider {
  background: rgba(74,50,33,.15);
  width: 1px;
  align-self: stretch;
}

.module-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; justify-content: center; }
.module-card__body h3 {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 0.375rem;
  color: #2C1A0E;
}
.module-card__body p { font-size: 0.9375rem; color: #5C3D22; line-height: 1.6; }

.modules__cta { text-align: center; padding-inline: 0; }
.modules__cta .btn { max-width: 100%; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding-block: var(--section-py);
  background: #E8D5C4;
}
.testimonials .section-title { color: var(--color-text); }
.testimonials .eyebrow { color: var(--color-text); opacity: 0.7; }

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 2rem 1.75rem 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  position: relative;
  overflow: hidden;
}
.testimonial-card__quote {
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--color-primary);
  line-height: 0.6;
  opacity: 0.5;
  font-weight: 700;
  user-select: none;
}
.testimonial-card__stars {
  color: #c8921a;
  font-size: 0.9375rem;
  letter-spacing: 2px;
}
.testimonial-card blockquote p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--color-text);
  font-style: italic;
  font-family: var(--font-heading);
  font-weight: 400;
  flex: 1;
}
.testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.875rem;
  border-top: 1px solid var(--color-border);
}
.testimonial-card__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #FAF6EE;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  flex-shrink: 0;
}
.testimonial-card__footer cite {
  font-style: normal;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--color-text);
}
.testimonials__figure { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-md); }
.testimonials__figure img { width: 100%; object-fit: cover; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  padding-block: var(--section-py);
  background: #1F1611;
}
.pricing .eyebrow { color: var(--color-primary); }
.pricing .section-title { color: var(--color-white); }

.pricing__layout {
  max-width: 900px;
  margin-inline: auto;
}
.pricing__card {
  background: #2a1a0e;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(0,0,0,.6);
  border: 1px solid rgba(212,165,92,.2);
}
.pricing__card-body { padding: 2rem 1.25rem; }

.pricing__main-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}

.pricing__price-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.pricing__offer-badge {
  display: inline-block;
  background: #D4A55C;
  color: #1F1611;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.pricing__from {
  font-size: 18px;
  color: #D4A55C;
  margin-bottom: 0.375rem;
}
.pricing__from s { opacity: 0.7; }

.pricing__installment-label {
  font-size: 18px;
  font-weight: 400;
  color: #E8D5C4;
  margin-bottom: 0.125rem;
}

.pricing__amount-row {
  display: flex;
  align-items: flex-start;
  gap: 0.1em;
  line-height: 1;
  margin-bottom: 0.625rem;
}
.pricing__currency-sm {
  font-size: 35px;
  font-weight: 800;
  color: #FAF6EE;
  margin-top: 0.35em;
  line-height: 1;
}
.pricing__big {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 88px;
  font-feature-settings: "tnum";
  color: #FAF6EE;
  line-height: 1;
}

.pricing__avista {
  font-size: 16px;
  color: #D4C4A8;
}

.pricing__features {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  justify-content: center;
}
.pricing__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  color: rgba(255,255,255,.85);
}
.pricing__check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-text);
  margin-top: 1px;
}

.pricing .btn--cta { font-size: 1.125rem; }
.pricing__security {
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,.4);
  text-align: center;
}

/* ============================================================
   GUARANTEE
   ============================================================ */
.guarantee {
  padding-block: var(--section-py);
  background: #FAF6EE;
}
.guarantee__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  text-align: center;
}
.guarantee__badge {
  flex-shrink: 0;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.15));
}
.guarantee__copy { max-width: 560px; }
.guarantee__copy h2 {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  color: var(--color-text);
  margin-bottom: 1rem;
}
.guarantee__copy p { font-size: 1.125rem; color: var(--color-text); opacity: 0.85; line-height: 1.75; margin-bottom: 1.75rem; }

/* ============================================================
   MENTOR
   ============================================================ */
.mentor {
  padding-block: var(--section-py);
  background: #D6E0D5;
  position: relative;
  overflow: hidden;
}
.mentor::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  width: min(500px, 100vw);
  height: min(500px, 100vw);
  background: url('assets/img/logo_mini.png') center/contain no-repeat;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}
.mentor__grid { position: relative; z-index: 1; }
.mentor__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}
.mentor__grid > * { min-width: 0; max-width: 100%; }
.mentor__photo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.mentor__photo-frame {
  position: relative;
  width: 100%;
}
.mentor__deco-arco {
  position: absolute;
  height: 80%;
  width: auto;
  left: -12%;
  top: 10%;
  opacity: 0.5;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.mentor__photo {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 16px 48px rgba(31,22,17,.18);
}
.mentor__social {
  display: flex;
  gap: 0.75rem;
}
.mentor__social a {
  width: 44px; height: 44px;
  background: var(--color-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}
.mentor__social a:hover { background: var(--color-primary); border-color: var(--color-primary); }

.mentor__bio .eyebrow { margin-bottom: 0.5rem; }
.mentor__name {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-text);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}
.mentor__bio p {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.mentor__credentials {
  margin-block: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding-block: 1.25rem;
}
.mentor__credentials li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--color-text);
}
.mentor__year {
  background: var(--color-primary);
  color: var(--color-text);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 2px 10px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding-block: var(--section-py);
  background: #FAF6EE;
}
.faq__list {
  max-width: 780px;
  margin-inline: auto;
  margin-bottom: 3rem;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.faq__item { border-bottom: 1px solid var(--color-border); }
.faq__item:last-child { border-bottom: none; }

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  color: var(--color-text);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  line-height: 1.5;
  transition: background var(--transition-fast);
}
.faq__question:hover { background: var(--color-bg); }
.faq__question[aria-expanded="true"] { font-weight: 700; background: var(--color-bg); }

.faq__icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--color-primary);
  border-radius: 50%;
  position: relative;
  transition: transform var(--transition-base), background var(--transition-base);
}
.faq__question[aria-expanded="true"] .faq__icon {
  background: var(--color-primary-dark);
  transform: rotate(45deg);
}
.faq__icon::before, .faq__icon::after {
  content: '';
  position: absolute;
  background-color: var(--color-text);
  border-radius: 2px;
}
.faq__icon::before { width: 12px; height: 2px; top: 13px; left: 8px; }
.faq__icon::after  { width: 2px; height: 12px; top: 8px; left: 13px; }

.faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--transition-slow);
}
.faq__answer.is-open { max-height: 600px; }
.faq__answer p {
  padding: 0 1.5rem 1.25rem;
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.75;
}
.faq__answer strong { color: var(--color-text); }

.faq__cta {
  text-align: center;
  max-width: 400px;
  margin-inline: auto;
}
.faq__cta p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #3D2817;
  padding-block: 3rem;
}
.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
  text-align: center;
}
.footer-logo { display: flex; justify-content: center; min-height: 44px; align-items: center; }
.footer-logo__img {
  height: 72px;
  width: auto;
  display: block;
}
.site-footer__links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.8125rem;
  color: rgba(248,241,230,.5);
}
.site-footer__links a {
  color: rgba(248,241,230,.65);
  transition: color var(--transition-fast);
  padding-block: 0.625rem;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.site-footer__links a:hover { color: var(--color-secondary); }
.site-footer__legal {
  font-size: 0.8125rem;
  color: rgba(248,241,230,.6);
}
.site-footer__legal a {
  color: var(--color-secondary);
  transition: color var(--transition-fast);
  padding-block: 0.5rem;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.site-footer__legal a:hover { color: var(--color-white); }
.site-footer__copyright { font-size: 0.75rem; color: rgba(248,241,230,.4); }

/* ============================================================
   RESPONSIVE — 768px+
   ============================================================ */
@media (min-width: 768px) {
  :root {
    --container-px: 2rem;
  }

  .floating-cta { display: none; }
  .site-nav { display: flex; }
  .logo__wordmark { height: 48px; width: auto; }

  /* Hero */
  .hero__grid { grid-template-columns: 0.85fr 1.15fr; gap: 2.5rem; align-items: stretch; }
  .hero__model { align-self: stretch; }
  .hero__model-img { max-height: 100%; height: auto; width: auto; max-width: 100%; aspect-ratio: unset; object-fit: contain; object-position: bottom center; }

  /* Benefits */
  .benefits__stats { grid-template-columns: repeat(3, 1fr); }
  .benefits__cards { grid-template-columns: repeat(2, 1fr); }

  /* Audience */
  .audience__grid { grid-template-columns: repeat(2, 1fr); }
  .persona-card--wide { grid-column: span 2; }
  .audience__callout { padding: 2.5rem 2rem; }

  /* Modules */
  .modules__grid { grid-template-columns: repeat(3, 1fr); }

  /* Testimonials */
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }

  /* Pricing */
  .pricing__card-body { padding: 3rem; }
  .pricing__main-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
  }

  /* Guarantee */
  .guarantee__inner { flex-direction: row; text-align: left; }

  /* Mentor */
  .mentor__grid { grid-template-columns: 320px 1fr; }
  .mentor__photo-wrap { align-items: flex-start; }
  .mentor__photo-frame { width: 320px; }
}

/* ============================================================
   RESPONSIVE — 1200px+
   ============================================================ */
@media (min-width: 1200px) {

  .hero__grid { gap: 3rem; grid-template-columns: 1fr 1.1fr; }
  .hero__title { font-size: 4.25rem; }

  /* Testimonials — 4 col */
  .testimonials__grid { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   RESPONSIVE — 1600px+ (ultra-wide)
   ============================================================ */
@media (min-width: 1600px) {
  .hero__grid { padding-block: 3rem 4rem; }
  .hero__model-img { max-width: 540px; }
}

/* ============================================================
   RESPONSIVE — max-width 640px (mobile)
   ============================================================ */
@media (max-width: 640px) {
  :root { --section-py: 48px; }

  /* FIX: font-size > 56px no mobile */
  .pricing__big { font-size: 52px; }
  .pricing__currency-sm { font-size: 26px; }
  .stat-card__value { font-size: 2.5rem; }
  .persona-card__num { font-size: 2.25rem; }
  .testimonial-card__quote { font-size: 3.5rem; }

  /* FIX: FAQ CTA full-width */
  .faq__cta .btn--cta { width: 100%; text-align: center; }

  .hero__deco--face { opacity: 0.2; }
  .hero__deco--arco1, .hero__deco--arco2 { display: none; }

  /* FIX: persona card — wrap content so num stays left, h3+p stack on the right */
  .persona-card { flex-wrap: wrap; }
  .persona-card__num { font-size: 2rem; min-width: 1.75rem; flex-shrink: 0; }
  .persona-card h3 { font-size: 1.125rem; flex: 1 1 0; min-width: 0; }
  .persona-card p { flex: 1 1 100%; padding-left: calc(1.75rem + 1rem); margin-top: -0.25rem; }

  /* FIX: btn white-space so text wraps inside narrow containers */
  .btn { white-space: normal; text-align: center; }

  /* FIX: audience callout on mobile — stretch button, remove p max-width */
  .audience__callout { align-items: stretch; }
  .audience__callout p { max-width: 100%; }
}

/* Scroll fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 400ms cubic-bezier(0.4, 0, 0.2, 1),
              transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulseAttention {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.65; }
}
.urgency-tag {
  font-size: 14px;
  color: #D4A55C;
  text-align: center;
  margin-bottom: 0.5rem;
  animation: pulseAttention 2.5s ease-in-out infinite;
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
