/* ============================================
   DR. FLAMARION FUHRO — LANDING
   Palette: forest green / cream / aged gold
   Type: Cormorant Garamond (display) + Inter (body)
   ============================================ */

:root {
  --green-900: #061a13;
  --green-800: #0a2419;
  --green-700: #0e3d2a;     /* primary */
  --green-600: #134e3a;
  --green-500: #1b6149;
  --green-300: #4f7c69;
  --green-100: #cfdcd5;

  --cream-50: #faf7f0;
  --cream-100: #f4efe3;
  --cream-200: #e8e0cd;
  --cream-300: #d6cbb1;

  --ink-900: #0a1410;
  --ink-700: #2a3a32;
  --ink-500: #5a6b62;

  --gold-500: #c9a961;
  --gold-400: #d5b977;
  --gold-300: #e1c98c;

  --line: rgba(14, 61, 42, 0.14);
  --line-light: rgba(244, 239, 227, 0.18);

  --serif: 'Cormorant Garamond', 'Garamond', 'Times New Roman', serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;

  --container: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--cream-50);
  color: var(--ink-900);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }
strong { font-weight: 600; }

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

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background .3s ease, padding .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(6, 26, 19, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom-color: rgba(201, 169, 97, 0.18);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--cream-100);
}
.nav__wordmark {
  height: 54px;
  width: auto;
  display: block;
  transition: height .3s ease;
}
.nav.is-scrolled .nav__wordmark { height: 46px; }
.nav__mark {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(201,169,97,0.35), 0 4px 14px rgba(0,0,0,0.25);
}
.nav__mark img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nav__brand-text { display: none; }
.nav__brand-name {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.nav__brand-sub {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-top: 2px;
}
.nav__links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav__links a {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream-100);
  opacity: 0.75;
  transition: opacity .2s ease, color .2s ease;
  position: relative;
  padding: 4px 0;
}
.nav__links a:hover { opacity: 1; color: var(--gold-300); }
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 1px;
  width: 0;
  background: var(--gold-400);
  transition: width .25s ease;
}
.nav__links a:hover::after { width: 100%; }

@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__wordmark { height: 40px; }
}
@media (max-width: 500px) {
  .nav__wordmark { display: none; }
}

/* hamburger button */
.nav__burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 999px;
  background: rgba(244, 239, 227, 0.06);
  border: 1px solid rgba(201, 169, 97, 0.25);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: background .2s ease, border-color .2s ease;
}
.nav__burger:hover { background: rgba(244,239,227,0.1); border-color: var(--gold-400); }
.nav__burger-line {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--cream-100);
  border-radius: 2px;
  transform-origin: center;
  transition: transform .3s cubic-bezier(.2,.7,.2,1), opacity .2s ease, background .2s ease;
}
.nav__burger:hover .nav__burger-line { background: var(--gold-300); }
.nav__burger.is-open .nav__burger-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.is-open .nav__burger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.is-open .nav__burger-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav__burger { display: inline-flex; }
}

/* nav drawer (mobile) */
.nav__drawer {
  position: absolute;
  top: 100%;
  left: 16px; right: 16px;
  margin-top: 10px;
  background: rgba(6, 26, 19, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 169, 97, 0.22);
  border-radius: 6px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
  padding: 12px 8px;
  display: none;
  flex-direction: column;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .25s ease, transform .25s ease;
}
.nav__drawer.is-open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
.nav__drawer a {
  padding: 14px 18px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-100);
  border-radius: 4px;
  transition: background .2s ease, color .2s ease, padding-left .25s ease;
  border-bottom: 1px solid rgba(244,239,227,0.05);
}
.nav__drawer a:last-child { border-bottom: none; }
.nav__drawer a:hover { background: rgba(201,169,97,0.08); color: var(--gold-300); padding-left: 24px; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .25s cubic-bezier(.2,.6,.2,1), background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--small { padding: 10px 18px; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }

.btn--primary {
  background: var(--cream-50);
  color: var(--green-700);
  box-shadow: 0 12px 30px -12px rgba(0,0,0,0.45);
}
.btn--primary:hover { background: var(--cream-100); }

.btn--gold {
  background: var(--gold-500);
  color: var(--green-900);
}
.btn--gold:hover { background: var(--gold-400); }

.btn--ghost {
  background: transparent;
  color: var(--cream-100);
  border-color: rgba(244, 239, 227, 0.3);
}
.btn--ghost:hover { background: rgba(244,239,227,0.06); border-color: var(--gold-400); color: var(--gold-300); }

.btn--ghost-light {
  background: transparent;
  color: var(--cream-100);
  border-color: rgba(244, 239, 227, 0.25);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0;
}
.btn--ghost-light:hover { background: rgba(244,239,227,0.06); }

.btn--whatsapp {
  background: #25D366;
  color: white;
  font-weight: 600;
  font-size: 15px;
  padding: 18px 28px;
  box-shadow: 0 16px 40px -12px rgba(37, 211, 102, 0.5);
}
.btn--whatsapp:hover { background: #1ebe5d; }

/* ============ COMMON HEAD ============ */
.section { padding: 130px 0; position: relative; }
.sec-head { margin-bottom: 60px; max-width: 880px; }
.sec-head--centered { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head__label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 22px;
}
.sec-head__label::before {
  content: ''; width: 28px; height: 1px; background: var(--gold-500);
}
.sec-head__label--light { color: var(--gold-400); }
.sec-head__label--light::before { background: var(--gold-400); }

.sec-head__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--green-700);
  text-wrap: balance;
}
.sec-head__title em {
  font-weight: 400;
  color: var(--gold-500);
}
.sec-head__sub {
  margin-top: 18px;
  font-size: 17px;
  color: var(--ink-500);
  max-width: 580px;
  margin-left: auto; margin-right: auto;
  line-height: 1.55;
}
.sec-head:not(.sec-head--centered) .sec-head__sub { margin-left: 0; margin-right: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 8px;
  border: 1px solid rgba(244, 239, 227, 0.18);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-100);
  background: rgba(244, 239, 227, 0.04);
}
.eyebrow__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 0 4px rgba(201,169,97,0.18);
}

.gold { color: var(--gold-500); font-style: italic; }
.gold-line {
  font-style: italic;
  color: var(--gold-500);
  position: relative;
  padding: 0 2px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--green-800);
  color: var(--cream-100);
  overflow: hidden;
  padding: 140px 0 100px;
  display: flex;
  align-items: center;
}
.hero__bg {
  position: absolute; inset: 0;
  pointer-events: none;
}
.hero__bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 20% 30%, rgba(27,97,73,0.45), transparent 70%),
    radial-gradient(40% 40% at 80% 70%, rgba(201,169,97,0.10), transparent 70%),
    linear-gradient(180deg, var(--green-800), var(--green-900));
}
.hero__grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.95 0 0 0 0 0.93 0 0 0 0 0.87 0 0 0 0.15 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.35;
  mix-blend-mode: overlay;
}
.hero__vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.4) 100%);
}

/* elegant floating shapes */
.shape {
  position: absolute;
  border-radius: 999px;
  border: 1.5px solid rgba(201, 169, 97, 0.18);
  background:
    linear-gradient(120deg, rgba(201,169,97,0.10), transparent 70%),
    radial-gradient(circle at 30% 30%, rgba(244,239,227,0.10), transparent 70%);
  box-shadow:
    inset 0 0 60px rgba(201, 169, 97, 0.06),
    0 8px 32px rgba(0,0,0,0.2);
  backdrop-filter: blur(2px);
  animation: float 14s ease-in-out infinite;
}
.shape--1 { width: 620px; height: 130px; left: -8%; top: 14%; transform: rotate(14deg); opacity: 0; animation: floatIn 2.4s .3s cubic-bezier(.23,.86,.39,.96) forwards, float 16s 2.7s ease-in-out infinite; }
.shape--2 { width: 480px; height: 110px; right: -4%; top: 68%; transform: rotate(-16deg); opacity: 0; animation: floatIn 2.4s .5s cubic-bezier(.23,.86,.39,.96) forwards, float 18s 2.9s ease-in-out infinite reverse; border-color: rgba(244,239,227,0.12); }
.shape--3 { width: 320px; height: 80px; left: 5%; bottom: 8%; transform: rotate(-9deg); opacity: 0; animation: floatIn 2.4s .4s cubic-bezier(.23,.86,.39,.96) forwards, float 12s 2.8s ease-in-out infinite; }
.shape--4 { width: 220px; height: 60px; right: 18%; top: 12%; transform: rotate(22deg); opacity: 0; animation: floatIn 2.4s .6s cubic-bezier(.23,.86,.39,.96) forwards, float 13s 3s ease-in-out infinite reverse; }
.shape--5 { width: 150px; height: 40px; left: 24%; top: 8%; transform: rotate(-26deg); opacity: 0; animation: floatIn 2.4s .7s cubic-bezier(.23,.86,.39,.96) forwards, float 14s 3.1s ease-in-out infinite; }

@keyframes floatIn {
  from { opacity: 0; transform: translateY(-160px) rotate(var(--rot, 0deg)); }
  to   { opacity: 1; }
}
@keyframes float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 18px; }
}

/* hero content */
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 56px; }
}

.hero__copy { max-width: 720px; }
.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 5.6vw, 78px);
  line-height: 1.03;
  letter-spacing: -0.018em;
  margin: 24px 0 28px;
  text-wrap: balance;
}
.hero__title .line { display: block; opacity: 0; transform: translateY(28px); animation: rise .9s cubic-bezier(.2,.7,.2,1) forwards; }
.hero__title .line--1 { animation-delay: 0.55s; color: var(--cream-200); font-style: italic; font-size: 0.55em; letter-spacing: 0.02em; font-weight: 400; margin-bottom: 4px; }
.hero__title .line--2 { animation-delay: 0.7s; }
.hero__title .line--3 { animation-delay: 0.85s; }
.hero__title .line--4 { animation-delay: 1s; }
.hero__title .line--5 { animation-delay: 1.15s; }
.hero__title em { font-style: italic; color: var(--gold-400); font-weight: 400; }
.hero__title .gold { color: var(--gold-400); font-style: italic; }

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

.hero__sub {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(244,239,227,0.75);
  max-width: 540px;
  margin-bottom: 36px;
  opacity: 0;
  animation: rise .9s 1.35s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero__sub em { color: var(--gold-300); }

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  opacity: 0;
  animation: rise .9s 1.55s cubic-bezier(.2,.7,.2,1) forwards;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 48px;
  padding-top: 30px;
  border-top: 1px solid var(--line-light);
  max-width: 580px;
  opacity: 0;
  animation: rise .9s 1.75s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero__stat-num {
  font-family: var(--serif);
  font-size: 44px;
  line-height: 1;
  color: var(--cream-100);
  font-weight: 400;
}
.hero__stat-num span { color: var(--gold-400); font-style: italic; }
.hero__stat-lbl {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244,239,227,0.55);
  margin-top: 6px;
}
.hero__stat-sep { width: 1px; height: 40px; background: var(--line-light); }

/* portrait */
.hero__portrait {
  position: relative;
  opacity: 0;
  animation: rise 1.2s 0.9s cubic-bezier(.2,.7,.2,1) forwards;
}
.portrait__frame {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 480px;
  margin-left: auto;
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    0 30px 80px -20px rgba(0,0,0,0.6),
    0 0 0 1px rgba(201,169,97,0.25),
    0 0 0 7px rgba(244,239,227,0.04);
}
.portrait__frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(1.05);
}
.portrait__frame::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(6,26,19,0.85) 100%);
  pointer-events: none;
}
.portrait__badge {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  width: 56px; height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(201,169,97,0.5);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.portrait__badge img { width: 100%; height: 100%; object-fit: cover; display: block; }
.portrait__caption {
  position: absolute;
  left: 22px; bottom: 22px;
  z-index: 2;
  color: var(--cream-100);
}
.portrait__caption-line {
  display: block;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.portrait__caption-sub {
  display: block;
  margin-top: 4px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-400);
}

/* hero scroll cue */
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 3;
  color: rgba(244,239,227,0.5);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.hero__scroll-dot { animation: scrollDot 2s ease-in-out infinite; }
@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(6px); opacity: 0.4; }
}

/* ============================================
   DOBRA 2 — TRAJETÓRIA
   ============================================ */
.sec-trajetoria { background: var(--cream-50); }
.trajetoria__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: stretch;
}
@media (max-width: 900px) { .trajetoria__grid { grid-template-columns: 1fr; gap: 50px; } }

.trajetoria__copy { display: flex; flex-direction: column; }
.trajetoria__copy > p { font-size: 17px; color: var(--ink-700); margin-bottom: 18px; line-height: 1.65; }
.trajetoria__copy .lead {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--green-700);
  font-style: italic;
  line-height: 1.3;
  margin-bottom: 28px;
}
.trajetoria__pull {
  font-family: var(--serif);
  font-size: clamp(44px, 4.6vw, 60px);
  font-weight: 500;
  line-height: 1.05;
  color: var(--green-700);
  margin: 30px 0 34px !important;
  letter-spacing: -0.015em;
}
.trajetoria__close {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  color: var(--green-700);
  border-left: 2px solid var(--gold-500);
  padding-left: 18px;
  margin-top: auto !important;
  padding-top: 28px;
}

.trajetoria__institutions {
  background: var(--green-700);
  color: var(--cream-100);
  padding: 40px 36px;
  border-radius: 4px;
  position: relative;
  box-shadow: 0 30px 80px -30px rgba(14,61,42,0.5);
  align-self: stretch;
  display: flex;
  flex-direction: column;
}
.trajetoria__inst-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-light);
  margin-bottom: 6px;
}
.trajetoria__inst-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-400);
}
.trajetoria__inst-count {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: rgba(244,239,227,0.6);
}
.institutions { list-style: none; flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
.institutions li {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(244,239,227,0.06);
  align-items: center;
  transition: padding-left .25s ease, background .25s ease;
  cursor: default;
}
.institutions li:last-child { border-bottom: none; }
.institutions li:hover { padding-left: 8px; background: linear-gradient(90deg, rgba(201,169,97,0.05), transparent 80%); }
.inst__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
  display: inline-block;
  justify-self: center;
  box-shadow: 0 0 0 3px rgba(201,169,97,0.12);
}
.inst__name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--cream-100);
}

/* ============================================
   DOBRA 3 — EMOTION
   ============================================ */
.sec-emotion {
  position: relative;
  color: var(--cream-100);
  overflow: hidden;
  padding: 160px 0;
}
.sec-emotion__bg { position: absolute; inset: 0; z-index: 0; }
.sec-emotion__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: grayscale(0.5) contrast(1.05);
}
.sec-emotion__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, var(--green-800) 0%, rgba(10,36,25,0.88) 35%, rgba(10,36,25,0.94) 100%);
}
.sec-emotion .container { position: relative; z-index: 2; }
.sec-emotion__inner { max-width: 920px; }
.emotion__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.012em;
  margin-bottom: 50px;
  text-wrap: balance;
}
.emotion__title em { color: var(--gold-400); font-weight: 400; }

.emotion__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 50px;
}
@media (max-width: 800px) { .emotion__columns { grid-template-columns: 1fr; gap: 36px; align-items: start; } }

.emotion__col p {
  font-size: 17px;
  color: rgba(244,239,227,0.78);
  line-height: 1.7;
  margin-bottom: 16px;
}
.emotion__col--list { display: flex; flex-direction: column; gap: 14px; }
.emotion__quality {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--serif);
  font-size: 28px;
  font-style: italic;
  color: var(--cream-100);
  padding: 12px 0;
  border-bottom: 1px solid rgba(244,239,227,0.08);
}
.emotion__bar {
  width: 40px; height: 1px;
  background: var(--gold-500);
  flex-shrink: 0;
}

.emotion__close {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  color: var(--cream-100);
  line-height: 1.55;
  max-width: 720px;
  padding-top: 30px;
  border-top: 1px solid var(--line-light);
}
.emotion__close em { color: var(--gold-400); font-style: italic; font-weight: 500; }

/* ============================================
   CONQUISTAS — TROPHIES GRID
   ============================================ */
.sec-conquistas { background: var(--cream-100); }

.trophies {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
@media (max-width: 900px) { .trophies { grid-template-columns: repeat(2, 1fr); } }

.trophy {
  background: var(--cream-50);
  padding: 28px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 200px;
  transition: background .25s ease;
  position: relative;
}
.trophy:hover { background: white; }

.trophy__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
}
.trophy__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .3s ease;
}
.trophy:hover .trophy__icon img { transform: scale(1.08) rotate(-4deg); }

.trophy__tag {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-500);
}

.trophy__name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--green-700);
  line-height: 1.12;
  letter-spacing: -0.005em;
  margin-top: auto;
}

.trophy--feature {
  grid-column: span 2;
  grid-row: span 3;
  background: var(--green-700);
  color: var(--cream-100);
  padding: 36px 30px 32px;
  gap: 18px;
}
.trophy--feature:hover { background: var(--green-600); }
.trophy__icon--feature {
  width: 72px; height: 72px;
}
.trophy--feature .trophy__name {
  color: var(--cream-100);
  font-size: 38px;
  line-height: 1.04;
}
.trophy--feature .trophy__prize {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-400);
  padding-top: 14px;
  margin-top: -4px;
  border-top: 1px solid var(--line-light);
}
.trophy--alt {
  background: var(--cream-100);
}
.trophy--alt .trophy__tag { color: var(--green-700); }
.trophy--alt .trophy__name { color: var(--green-700); }

@media (max-width: 900px) {
  .trophy--feature { grid-column: span 2; grid-row: auto; min-height: 220px; }
  .trophy--feature .trophy__name { font-size: 30px; }
}

.conquistas__close {
  text-align: center;
  margin-top: 80px;
  font-family: var(--serif);
}
.conquistas__close p {
  font-size: 32px;
  color: var(--green-700);
  line-height: 1.2;
}
.conquistas__final {
  margin-top: 6px !important;
  color: var(--gold-500) !important;
  font-style: italic;
}

/* ============================================
   PARALLAX BANDS (haras + jockey)
   ============================================ */
.band {
  position: relative;
  height: 56vh;
  min-height: 380px;
  max-height: 560px;
  overflow: hidden;
  color: var(--cream-100);
  display: flex;
  align-items: center;
}
.band__media {
  position: absolute; inset: -10% 0;
  z-index: 0;
}
.band__media img {
  width: 100%; height: 120%;
  object-fit: cover;
  object-position: center center;
  will-change: transform;
}
.band__overlay {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(6,26,19,0.85) 0%, rgba(6,26,19,0.4) 50%, rgba(6,26,19,0.15) 100%);
}
.band__overlay--soft {
  background:
    linear-gradient(270deg, rgba(6,26,19,0.85) 0%, rgba(6,26,19,0.4) 50%, rgba(6,26,19,0.15) 100%);
}
.band__inner {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.band__inner--right {
  margin-left: auto;
  margin-right: 0;
  text-align: right;
  padding-right: 32px;
}
.band__mark {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--gold-400);
  margin-bottom: 20px;
}
.band__quote {
  font-family: var(--serif);
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.15;
  font-weight: 400;
  color: var(--cream-100);
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.band__quote em {
  color: var(--gold-400);
  font-style: italic;
}

/* ============================================
   DOBRA 5 — HARAS TANGO CASE
   ============================================ */
.sec-case { background: var(--cream-50); padding: 140px 0; }
.case__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 980px) { .case__grid { grid-template-columns: 1fr; gap: 50px; } }

.case__image {
  aspect-ratio: 4/5;
  max-width: 520px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.4);
}
.case__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.05);
}
.case__image-tag {
  position: absolute;
  bottom: 18px; left: 18px;
  padding: 8px 14px;
  background: rgba(6,26,19,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201,169,97,0.3);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-400);
}
.case__stat {
  margin-top: 28px;
  padding: 24px 28px;
  background: var(--green-700);
  color: var(--cream-100);
  border-radius: 4px;
  max-width: 520px;
  display: flex;
  align-items: baseline;
  gap: 20px;
}
.case__stat-num {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
  color: var(--gold-400);
  flex-shrink: 0;
}
.case__stat-lbl {
  font-size: 14px;
  line-height: 1.45;
  color: rgba(244,239,227,0.78);
}

.case__copy p { font-size: 17px; color: var(--ink-700); line-height: 1.65; margin: 24px 0; }
.case__list { list-style: none; display: flex; flex-direction: column; gap: 4px; margin: 30px 0; }
.case__list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.case__list li:last-child { border-bottom: none; }
.case__list-ico {
  width: 56px; height: 56px;
  border-radius: 6px;
  display: grid; place-items: center;
  background: var(--green-700);
  color: var(--gold-400);
  position: relative;
  overflow: hidden;
}
.case__list-ico::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(201,169,97,0.18), transparent 60%);
}
.case__list-ico svg { position: relative; z-index: 1; }
.case__list li strong {
  display: block;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--green-700);
  margin-bottom: 2px;
  letter-spacing: -0.005em;
}
.case__list li span:not(.case__list-ico) {
  font-size: 14px;
  color: var(--ink-500);
}
.case__quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px !important;
  color: var(--green-700) !important;
  padding-left: 18px;
  border-left: 2px solid var(--gold-500);
}

/* ============================================
   DOBRA 6 — SERVICES
   ============================================ */
.sec-services { background: var(--cream-100); }
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 980px) { .services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .services { grid-template-columns: 1fr; } }

.service {
  background: var(--cream-50);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 34px 30px 32px;
  position: relative;
  transition: transform .3s cubic-bezier(.2,.7,.2,1), border-color .3s ease, box-shadow .3s ease, background .3s ease;
  overflow: hidden;
}
.service::before {
  content: '';
  display: none;
}
.service::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
}
.service:hover {
  transform: translateY(-4px);
  border-color: var(--green-700);
  box-shadow: 0 24px 60px -28px rgba(14,61,42,0.35);
  background: white;
}
.service:hover::after { transform: scaleX(1); }
.service__icon {
  width: 78px; height: 78px;
  border-radius: 6px;
  background: var(--green-700);
  color: var(--gold-400);
  display: grid; place-items: center;
  margin-bottom: 22px;
  transition: background .3s ease, transform .3s ease;
  position: relative;
  overflow: hidden;
}
.service__icon::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(201,169,97,0.18), transparent 60%);
  pointer-events: none;
}
.service__icon svg { position: relative; z-index: 1; }
.service:hover .service__icon { transform: rotate(-3deg) scale(1.05); }
.service__name {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.15;
  color: var(--green-700);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.service__desc {
  font-size: 15px;
  color: var(--ink-500);
  line-height: 1.55;
}
.service--wide {
  grid-column: span 3;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 30px 36px;
  background: var(--green-700);
  color: var(--cream-100);
  border-color: var(--green-700);
}
.service--wide::before { color: var(--gold-400); opacity: 0.7; }
.service--wide:hover { background: var(--green-600); border-color: var(--green-600); }
.service--wide .service__icon { margin-bottom: 0; background: var(--green-800); }
.service--wide .service__name { color: var(--cream-100); margin-bottom: 6px; }
.service--wide .service__desc { color: rgba(244,239,227,0.7); }
.service__link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-400);
  padding: 12px 20px;
  border: 1px solid var(--gold-500);
  border-radius: 999px;
  white-space: nowrap;
  transition: background .25s ease, color .25s ease;
}
.service__link:hover { background: var(--gold-500); color: var(--green-900); }
@media (max-width: 980px) {
  .service--wide {
    grid-column: span 2;
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "icon name"
      "desc desc"
      "link link";
    gap: 18px 24px;
  }
  .service--wide .service__icon { grid-area: icon; }
  .service--wide .service__name  { grid-area: name; align-self: center; }
  .service--wide .service__desc  { grid-area: desc; }
  .service--wide .service__link  { grid-area: link; justify-self: start; }
}
@media (max-width: 640px) {
  .service--wide { grid-column: span 1; padding: 30px; }
}

/* ============================================
   DOBRA 7 — POSITIONING
   ============================================ */
.sec-position {
  background: var(--green-800);
  color: var(--cream-100);
  text-align: center;
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.sec-position::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201,169,97,0.08), transparent 60%);
  pointer-events: none;
}
.position { max-width: 980px; margin: 0 auto; position: relative; }
.position__mark {
  color: var(--gold-400);
  display: inline-block;
  margin-bottom: 28px;
  opacity: 0.7;
}
.position__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 60px;
}
.position__title em { color: var(--gold-400); font-weight: 400; }
.position__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}
@media (max-width: 800px) { .position__grid { grid-template-columns: 1fr; } }
.position__item {
  padding: 28px 24px;
  border-top: 1px solid var(--line-light);
  text-align: left;
}
.position__item span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold-400);
  display: block;
  margin-bottom: 14px;
}
.position__item p {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.3;
  color: var(--cream-100);
}
.position__close {
  font-family: var(--serif);
  font-size: 26px;
  font-style: italic;
  color: var(--cream-200);
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid var(--line-light);
}
.position__close em { color: var(--gold-400); }

/* ============================================
   DOBRA 8 — AUDIENCE
   ============================================ */
.sec-audience { background: var(--cream-50); padding: 130px 0; }
.audience__head { margin-bottom: 50px; }
.audience {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
@media (max-width: 700px) { .audience { grid-template-columns: 1fr; } }
.audience li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 8px;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 24px;
  color: var(--green-700);
  transition: padding-left .25s ease, color .25s ease;
}
.audience li:hover { padding-left: 16px; color: var(--green-700); }
.audience li:hover .audience__check { background: var(--gold-500); color: var(--green-900); }
.audience__check {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--green-700);
  color: var(--cream-100);
  flex-shrink: 0;
  transition: background .25s ease, color .25s ease;
}

/* ============================================
   DOBRA 9 — QUOTE
   ============================================ */
.sec-quote {
  background: var(--cream-100);
  padding: 140px 0;
  position: relative;
}
.quote {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.quote__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 24px;
}
.quote__open {
  font-family: var(--serif);
  font-size: 200px;
  line-height: 0.8;
  color: var(--gold-400);
  height: 70px;
  opacity: 0.5;
}
.quote__body p {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.35;
  color: var(--green-700);
  margin-bottom: 14px;
  letter-spacing: -0.005em;
}
.quote__body .quote__strong {
  font-size: 36px;
  margin: 30px 0;
}
.quote__body .quote__strong em { color: var(--gold-500); font-weight: 500; }
.quote__pillars {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin: 30px 0;
  padding: 22px 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.quote__pillars span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--green-700);
}
.quote__pillars .quote__sep {
  color: var(--gold-500);
  font-style: normal;
}
.quote__attr {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 40px;
}
.quote__line { width: 50px; height: 1px; background: var(--gold-500); }
.quote__attr-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--green-700);
}
.quote__attr-role {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-top: 4px;
}

/* ============================================
   DOBRA 10 — CTA
   ============================================ */
.sec-cta {
  background: var(--green-900);
  color: var(--cream-100);
  position: relative;
  overflow: hidden;
  padding: 140px 0;
}
.cta__bg { position: absolute; inset: 0; pointer-events: none; }
.cta__bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(50% 50% at 20% 50%, rgba(27,97,73,0.4), transparent 70%),
    radial-gradient(40% 60% at 90% 100%, rgba(201,169,97,0.12), transparent 70%);
}
.shape--cta-1 {
  width: 700px; height: 160px;
  left: -10%; top: 30%;
  transform: rotate(-12deg);
  opacity: 0.6;
  animation: float 14s ease-in-out infinite;
}
.shape--cta-2 {
  width: 400px; height: 110px;
  right: -5%; bottom: 10%;
  transform: rotate(18deg);
  opacity: 0.5;
  animation: float 18s ease-in-out infinite reverse;
}
.cta { position: relative; z-index: 2; display: grid; grid-template-columns: 1.3fr 1fr; gap: 80px; align-items: center; }
@media (max-width: 980px) { .cta { grid-template-columns: 1fr; gap: 50px; } }

.cta__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(44px, 6vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.018em;
  margin: 20px 0 24px;
  text-wrap: balance;
}
.cta__title em { color: var(--gold-400); font-weight: 400; }
.cta__sub {
  font-size: 18px;
  color: rgba(244,239,227,0.78);
  line-height: 1.6;
  max-width: 540px;
  margin-bottom: 36px;
}
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 50px; }
.cta__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-top: 32px;
  border-top: 1px solid var(--line-light);
  max-width: 600px;
}
.cta__meta div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cta__meta span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-400);
}
.cta__meta strong {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--cream-100);
}
@media (max-width: 600px) { .cta__meta { grid-template-columns: 1fr 1fr; gap: 20px; } }

.cta__portrait {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,169,97,0.2);
}
.cta__portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05);
}
.cta__portrait::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(6,26,19,0.7));
  pointer-events: none;
}

/* ============================================
   DOBRA 11 — BLOG
   ============================================ */
.sec-blog {
  background: var(--cream-50);
  padding: 140px 0;
}
.posts {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
}
@media (max-width: 980px) {
  .posts { grid-template-columns: 1fr 1fr; }
  .post--feature { grid-column: span 2; }
}
@media (max-width: 640px) {
  .posts { grid-template-columns: 1fr; }
  .post--feature { grid-column: span 1; }
}

.post {
  background: transparent;
  border-radius: 6px;
  overflow: hidden;
  transition: transform .3s cubic-bezier(.2,.7,.2,1);
}
.post:hover { transform: translateY(-4px); }
.post__link {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.post__media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  border-radius: 6px;
  background: var(--green-700);
}
.post__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .4s ease;
  filter: contrast(1.02);
}
.post:hover .post__media img { transform: scale(1.06); filter: contrast(1.05) saturate(1.05); }

.post__cat {
  position: absolute;
  top: 16px; left: 16px;
  padding: 7px 12px;
  background: rgba(6,26,19,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201,169,97,0.3);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-400);
}

.post__body {
  padding: 24px 4px 4px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.post__meta {
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 14px;
}
.post__dot { color: var(--gold-500); }
.post__title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--green-700);
  letter-spacing: -0.005em;
  margin-bottom: 12px;
  text-wrap: balance;
  transition: color .25s ease;
}
.post--feature .post__title { font-size: 32px; line-height: 1.12; }
.post:hover .post__title { color: var(--gold-500); }
.post__excerpt {
  font-size: 14px;
  color: var(--ink-500);
  line-height: 1.6;
  margin-bottom: 18px;
}
.post--feature .post__excerpt { font-size: 16px; }
.post__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-700);
  padding-top: 8px;
  border-top: 1px solid var(--line);
  width: max-content;
  transition: color .25s ease, gap .25s ease;
}
.post:hover .post__cta { color: var(--gold-500); gap: 14px; }

.blog__cta {
  display: flex;
  justify-content: center;
  margin-top: 70px;
}
.btn--outline-dark {
  background: transparent;
  color: var(--green-700);
  border-color: var(--green-700);
  padding: 18px 30px;
}
.btn--outline-dark:hover {
  background: var(--green-700);
  color: var(--cream-50);
}

/* Footer (dobra 12) — keep but lighter top padding since blog precedes it */
.footer { padding-top: 80px; }
.footer {
  background: var(--green-900);
  color: var(--cream-100);
  padding: 80px 0 40px;
  border-top: 1px solid var(--line-light);
}
.footer__bio {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 50px;
  align-items: start;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line-light);
}
@media (max-width: 800px) { .footer__bio { grid-template-columns: 1fr; gap: 30px; } }
.footer__bio-mark {
  background: transparent;
  border-radius: 4px;
  padding: 18px;
  border: 1px solid rgba(201,169,97,0.2);
  display: grid;
  place-items: center;
}
.footer__bio-mark img {
  width: 100%;
  border-radius: 2px;
}
.footer__bio-text p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(244,239,227,0.78);
  margin: 18px 0;
}
.footer__bio-final {
  font-family: var(--serif) !important;
  font-style: italic;
  font-size: 19px !important;
  color: var(--cream-100) !important;
}
.footer__bio-final em { color: var(--gold-400); }

.footer__bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding-top: 50px;
}
@media (max-width: 800px) { .footer__bar { grid-template-columns: repeat(2, 1fr); gap: 30px; } }
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: rgba(244,239,227,0.65);
}
.footer__col a:hover { color: var(--gold-400); }
.footer__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 8px;
}
.footer__col--copy {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
}

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.floating-wa {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 90;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: grid;
  place-items: center;
  box-shadow: 0 16px 40px -10px rgba(37,211,102,0.55), 0 0 0 0 rgba(37,211,102,0.5);
  transition: transform .25s ease;
  animation: wa-pulse 2.5s ease-in-out infinite;
}
.floating-wa:hover { transform: scale(1.08); }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 16px 40px -10px rgba(37,211,102,0.55), 0 0 0 0 rgba(37,211,102,0.5); }
  50% { box-shadow: 0 16px 40px -10px rgba(37,211,102,0.55), 0 0 0 16px rgba(37,211,102,0); }
}

/* ============================================
   REVEAL ON SCROLL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 { transition-delay: .1s; }
.reveal--delay-2 { transition-delay: .2s; }
.reveal--delay-3 { transition-delay: .3s; }
