:root {
  --ink: #261a24;
  --plum: #4a293c;
  --wine: #6b344d;
  --terracotta: #b96e59;
  --sage: #6f8273;
  --ivory: #f7f1e8;
  --sand: #e9ddcf;
  --gold: #c6a46d;
  --white: #fffdf9;
  --muted: #665c62;
  --line: rgba(74, 41, 60, 0.14);
  --shadow-sm: 0 12px 38px rgba(34, 22, 31, 0.12);
  --shadow-lg: 0 28px 90px rgba(34, 22, 31, 0.18);
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 40px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ivory);
  color: var(--ink);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

::selection { background: rgba(185, 110, 89, 0.27); }

a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button, select { color: inherit; }
img, video { display: block; max-width: 100%; }
button { touch-action: manipulation; }

:focus-visible {
  outline: 3px solid #f2bd71;
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transform: translateY(-160%);
  transition: transform 0.2s;
}

.skip-link:focus { transform: none; }

.container {
  width: min(1200px, calc(100% - 44px));
  margin-inline: auto;
}

.page-progress {
  position: fixed;
  z-index: 150;
  inset: 0 auto auto 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--terracotta), var(--gold));
  box-shadow: 0 0 16px rgba(198, 164, 109, 0.65);
}

.noise {
  position: fixed;
  z-index: 90;
  inset: 0;
  pointer-events: none;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  z-index: 0;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(198, 164, 109, 0.12), transparent 68%);
  transition: opacity 0.25s;
}

@media (pointer: fine) { .cursor-glow { opacity: 1; } }

h1, h2, h3, blockquote {
  margin: 0;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  line-height: 1.08;
}

h1 { font-size: clamp(3.5rem, 6.4vw, 6.5rem); letter-spacing: -0.055em; }
h2 { font-size: clamp(2.55rem, 4.9vw, 4.8rem); letter-spacing: -0.04em; }
h3 { font-size: clamp(1.35rem, 2vw, 1.65rem); }
p { margin: 0; color: var(--muted); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--wine);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow-light { color: #f1d7b1; }
.eyebrow-gold { color: #e6bf88; }

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s, border-color 0.25s;
}

.btn:hover { transform: translateY(-2px); }
.btn .arrow { transition: transform 0.25s var(--ease); }
.btn:hover .arrow { transform: translateX(5px); }

.btn-primary {
  color: white;
  background: linear-gradient(135deg, #c7765e, #8d405d);
  box-shadow: 0 16px 36px rgba(107, 52, 77, 0.34);
}

.btn-primary:hover { box-shadow: 0 20px 48px rgba(107, 52, 77, 0.42); }

.btn-light {
  color: var(--ink);
  background: rgba(255, 253, 249, 0.95);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.14);
}

.btn-ghost {
  color: white;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover { background: rgba(255, 255, 255, 0.13); }
.btn-outline { color: var(--plum); border-color: rgba(74, 41, 60, 0.28); background: transparent; }
.btn-outline:hover { border-color: var(--terracotta); background: rgba(255, 255, 255, 0.55); }
.btn-small { min-height: 44px; padding: 10px 16px; font-size: 0.86rem; }

header {
  position: fixed;
  z-index: 120;
  top: 16px;
  right: 0;
  left: 0;
  transition: transform 0.3s var(--ease);
}

.nav-shell {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 9px 10px 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: white;
  background: rgba(29, 20, 28, 0.47);
  box-shadow: 0 15px 52px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(20px) saturate(130%);
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
}

header.scrolled .nav-shell,
.nav-shell.open {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(31, 22, 30, 0.92);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.25);
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.015em;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.33);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.15);
}

.brand-mark img { width: 100%; height: 100%; }
.brand-name { overflow: hidden; text-overflow: ellipsis; }

.nav-links { display: flex; align-items: center; gap: clamp(16px, 2vw, 29px); font-size: 0.88rem; }
.nav-links a { position: relative; padding: 9px 0; opacity: 0.78; transition: opacity 0.2s; }
.nav-links a::after { position: absolute; right: 0; bottom: 3px; left: 0; height: 1px; background: #f0d4aa; content: ""; transform: scaleX(0); transition: transform 0.25s var(--ease); }
.nav-links a:hover, .nav-links a.active { opacity: 1; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-contact-link { display: none; }

.nav-actions { display: flex; flex: 0 0 auto; align-items: center; gap: 8px; }
.lang-wrap { display: inline-flex; min-height: 44px; align-items: center; gap: 4px; padding-left: 10px; border: 1px solid rgba(255, 255, 255, 0.22); border-radius: 999px; background: rgba(255, 255, 255, 0.07); }
.lang-icon { color: #efd2aa; font-size: 1rem; }
.lang { max-width: 105px; height: 42px; padding: 0 28px 0 4px; border: 0; outline: 0; color: white; background: transparent; cursor: pointer; }
.lang option { color: var(--ink); background: white; }

.menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.menu-btn span { display: block; width: 20px; height: 1.5px; margin: 2.5px auto; background: white; transition: transform 0.25s, opacity 0.2s; }
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-4px) rotate(-45deg); }

.hero {
  position: relative;
  display: flex;
  min-height: max(780px, 100svh);
  align-items: center;
  overflow: hidden;
  color: white;
  background: #231720;
}

.hero video, .hero-poster { position: absolute; z-index: 0; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-poster { background: url("assets/hero-poster.webp?v=20260715a") center / cover no-repeat; }
.hero video { opacity: 0.62; filter: saturate(0.82) contrast(1.08); }

.hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(21, 13, 20, 0.97) 0%, rgba(29, 18, 27, 0.89) 40%, rgba(32, 22, 29, 0.45) 72%, rgba(22, 15, 21, 0.5) 100%),
    linear-gradient(0deg, rgba(22, 15, 21, 0.78), transparent 50%);
  content: "";
}

.hero::after { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; height: 100px; background: linear-gradient(transparent, var(--ivory)); content: ""; }
.hero-orb { position: absolute; z-index: 1; border: 1px solid rgba(240, 212, 170, 0.13); border-radius: 50%; pointer-events: none; }
.hero-orb-one { top: -240px; right: -120px; width: 650px; height: 650px; box-shadow: 0 0 0 80px rgba(255,255,255,0.018), 0 0 0 160px rgba(255,255,255,0.012); }
.hero-orb-two { bottom: -330px; left: 40%; width: 650px; height: 650px; }

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.68fr);
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
  padding: 142px 0 115px;
}

.hero-copy-wrap { max-width: 825px; }
.availability-pill { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 24px; padding: 8px 13px; border: 1px solid rgba(255, 255, 255, 0.17); border-radius: 999px; color: rgba(255, 255, 255, 0.82); background: rgba(255, 255, 255, 0.07); backdrop-filter: blur(10px); font-size: 0.76rem; font-weight: 600; letter-spacing: 0.04em; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #84b78e; box-shadow: 0 0 0 5px rgba(132, 183, 142, 0.13); }
.hero h1 { max-width: 850px; margin-top: 16px; color: white; }
.hero h1 em { color: #f0d4aa; font-weight: 500; }
.hero-lead { max-width: 700px; margin: 28px 0 34px; color: rgba(255, 255, 255, 0.75); font-size: clamp(1.05rem, 1.55vw, 1.28rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.language-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.language-pills span { padding: 7px 11px; border: 1px solid rgba(255, 255, 255, 0.18); border-radius: 999px; color: rgba(255, 255, 255, 0.74); font-size: 0.75rem; }

.hero-visual { position: relative; width: min(100%, 440px); justify-self: end; }
.portrait-frame { position: relative; overflow: hidden; aspect-ratio: 0.82; border: 1px solid rgba(255, 255, 255, 0.27); border-radius: 210px 210px 32px 32px; background: #483341 url("assets/maritania-corporativa.jpeg?v=20260715a") 50% 30% / cover no-repeat; box-shadow: 0 36px 100px rgba(0, 0, 0, 0.42); isolation: isolate; }
.portrait-frame::after { position: absolute; z-index: 1; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(29, 18, 27, 0.44)); content: ""; }
.portrait-frame img { position: absolute; z-index: 0; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; filter: saturate(0.88) contrast(1.02); }
.glass-card { border: 1px solid rgba(255,255,255,0.16); background: rgba(255,255,255,0.08); backdrop-filter: blur(16px); }
.world-card { position: absolute; right: -28px; bottom: 68px; display: grid; grid-template-columns: auto 1fr; gap: 12px; width: min(320px, 80%); align-items: center; padding: 16px 18px; border-radius: 18px; box-shadow: 0 18px 60px rgba(0,0,0,0.22); }
.world-card .world-icon { display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid rgba(255,255,255,0.18); border-radius: 50%; color: #f0d4aa; font-size: 1.25rem; }
.world-card strong, .world-card span { display: block; }
.world-card strong { color: white; font-size: 0.82rem; }
.world-card div > span { margin-top: 2px; color: rgba(255,255,255,0.67); font-size: 0.72rem; line-height: 1.4; }
.hero-signature { position: absolute; right: -5px; bottom: 10px; color: rgba(255,255,255,0.7); font-family: "Playfair Display", serif; font-size: 2.2rem; font-style: italic; }
.scroll-cue { position: absolute; z-index: 4; right: 30px; bottom: 36px; display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.65); font-size: 0.68rem; letter-spacing: 0.13em; text-transform: uppercase; transform: rotate(90deg); transform-origin: right center; }
.scroll-cue i { position: relative; display: block; width: 50px; height: 1px; overflow: hidden; background: rgba(255,255,255,0.35); }
.scroll-cue i::after { position: absolute; inset: 0; background: white; content: ""; animation: scan 2s infinite; }
@keyframes scan { from { transform: translateX(-100%); } to { transform: translateX(100%); } }

.trust-strip { position: relative; z-index: 5; padding: 0; border-bottom: 1px solid var(--line); background: var(--ivory); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { display: flex; min-height: 118px; flex-direction: column; justify-content: center; padding: 24px 30px; border-right: 1px solid var(--line); }
.trust-item:first-child { border-left: 1px solid var(--line); }
.trust-item strong { color: var(--plum); font-family: "Playfair Display", serif; font-size: clamp(1.65rem, 2.4vw, 2.3rem); font-weight: 500; }
.trust-item span { color: var(--muted); font-size: 0.82rem; }

section { position: relative; padding: 118px 0; }
.welcome { padding: 140px 0; }
.welcome-grid { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: clamp(60px, 10vw, 150px); align-items: start; }
.editorial-mark { margin-top: 35px; color: rgba(185,110,89,0.24); font-family: "Playfair Display", serif; font-size: 9rem; line-height: 0.6; }
.intro-copy { color: var(--ink); font-family: "Playfair Display", serif; font-size: clamp(1.7rem, 3vw, 3rem); line-height: 1.38; }
.intro-copy span { color: var(--terracotta); }
.intro-note { max-width: 650px; margin-top: 28px; padding-left: 22px; border-left: 2px solid rgba(185,110,89,0.45); font-size: 1.02rem; }

.section-head { display: flex; justify-content: space-between; gap: 50px; align-items: end; margin-bottom: 58px; }
.section-head h2 { margin-top: 13px; }
.section-head > p { max-width: 470px; }

.path-section { overflow: hidden; color: white; background: var(--ink); }
.path-section::before { position: absolute; top: -280px; right: -250px; width: 720px; height: 720px; border-radius: 50%; background: radial-gradient(circle, rgba(185,110,89,0.21), transparent 66%); content: ""; }
.path-section h2 { color: white; }
.path-section p { color: rgba(255,255,255,0.64); }
.choice-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.choice { position: relative; display: flex; min-height: 156px; flex-direction: column; justify-content: space-between; padding: 21px; border: 1px solid rgba(255,255,255,0.12); border-radius: 22px; color: white; background: rgba(255,255,255,0.045); cursor: pointer; text-align: left; transition: transform 0.3s var(--ease), background 0.3s, border-color 0.3s; }
.choice::after { position: absolute; right: 18px; bottom: 18px; width: 7px; height: 7px; border-radius: 50%; background: transparent; content: ""; transition: background 0.2s, box-shadow 0.2s; }
.choice:hover, .choice.active { border-color: rgba(230,166,136,0.52); background: rgba(185,110,89,0.17); transform: translateY(-5px); }
.choice.active::after { background: #e6bf88; box-shadow: 0 0 0 5px rgba(230,191,136,0.12); }
.choice-num { color: #d9b17e; font-family: "Playfair Display", serif; font-size: 1.1rem; font-style: italic; }
.choice-result { display: none; grid-template-columns: 1fr auto; gap: 24px; align-items: center; margin-top: 18px; padding: 30px; border: 1px solid rgba(255,255,255,0.15); border-radius: 26px; background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.045)); }
.choice-result.show { display: grid; animation: rise 0.45s both; }
.choice-result strong { display: block; margin-bottom: 5px; color: white; font-size: 1.24rem; }
@keyframes rise { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

.neural-scene { overflow: hidden; color: white; background: linear-gradient(145deg, #20151e, #4a293c 58%, #6d4a43); }
.neural-scene::before { position: absolute; inset: 0; background: radial-gradient(circle at 20% 45%, rgba(198,164,109,0.13), transparent 35%); content: ""; }
.neural-canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.6; pointer-events: none; }
.neural-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 8vw; align-items: center; }
.connection-orbit { position: relative; display: grid; width: min(100%, 470px); aspect-ratio: 1; place-items: center; margin: auto; border-radius: 50%; background: radial-gradient(circle, rgba(198,164,109,0.16), transparent 66%); }
.connection-orbit img { position: relative; z-index: 2; width: 37%; border-radius: 50%; box-shadow: 0 0 55px rgba(240,212,170,0.17); }
.orbit-ring { position: absolute; border: 1px solid rgba(240,212,170,0.19); border-radius: 50%; animation: orbit 18s linear infinite; }
.ring-one { inset: 7%; }
.ring-two { inset: 21%; animation-duration: 13s; animation-direction: reverse; }
.orbit-point { position: absolute; z-index: 3; width: 10px; height: 10px; border: 2px solid #e3bb83; border-radius: 50%; background: var(--plum); box-shadow: 0 0 0 8px rgba(227,187,131,0.09); }
.point-one { top: 13%; left: 26%; }.point-two { right: 7%; bottom: 34%; }.point-three { bottom: 9%; left: 42%; }
@keyframes orbit { to { transform: rotate(360deg); } }
.neural-copy h2 { margin: 15px 0 23px; color: white; }
.neural-copy > p { color: rgba(255,255,255,0.7); font-size: 1.04rem; }
.neural-note { margin-top: 28px; padding: 23px; border-radius: 22px; }
.neural-note strong { color: white; }
.neural-note p { margin-top: 5px; color: rgba(255,255,255,0.63); }

.services { background: linear-gradient(180deg, var(--ivory), #efe4d8); }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-card { position: relative; display: flex; min-height: 560px; flex-direction: column; justify-content: flex-end; overflow: hidden; padding: 40px; border-radius: 36px; box-shadow: var(--shadow-lg); isolation: isolate; transition: transform 0.45s var(--ease), box-shadow 0.45s; }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 34px 100px rgba(34,22,31,0.23); }
.service-card::before { position: absolute; z-index: -2; inset: 0; background: linear-gradient(145deg, #63344c, #251820); content: ""; }
.growth-card::before { background: linear-gradient(145deg, #667b69, #26352d); }
.service-card::after { position: absolute; z-index: -1; inset: 0; background: radial-gradient(circle at 82% 13%, rgba(255,255,255,0.18), transparent 28%), linear-gradient(0deg, rgba(0,0,0,0.48), transparent 70%); content: ""; }
.card-index { position: absolute; top: 30px; left: 34px; color: rgba(255,255,255,0.36); font-family: "Playfair Display", serif; font-size: 3.5rem; font-style: italic; }
.service-symbol { position: absolute; top: 30px; right: 32px; width: 160px; height: 160px; border: 1px solid rgba(255,255,255,0.18); border-radius: 50%; }
.service-symbol::before, .service-symbol::after { position: absolute; top: 78px; width: 105px; height: 1px; background: rgba(255,255,255,0.5); content: ""; }
.service-symbol::before { left: -6px; transform: rotate(28deg); }
.service-symbol::after { right: -6px; transform: rotate(-28deg); }
.eyebrow-card { color: #e8c795; }
.growth-card .eyebrow-card { color: #d5e0d6; }
.service-card h3 { max-width: 560px; margin: 16px 0; color: white; font-size: clamp(2.25rem, 4vw, 3.6rem); }
.service-card p { max-width: 510px; color: rgba(255,255,255,0.7); }
.text-link { display: inline-flex; align-items: center; align-self: flex-start; gap: 12px; margin-top: 26px; padding-bottom: 5px; border-bottom: 1px solid rgba(255,255,255,0.42); color: white; font-weight: 700; }
.text-link span:last-child { transition: transform 0.2s; }
.text-link:hover span:last-child { transform: translateX(5px); }

.process { background: var(--white); }
.process-grid { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: 8vw; }
.sticky { position: sticky; top: 132px; align-self: start; }
.process-intro h2 { margin: 15px 0 23px; }
.process-intro p { max-width: 470px; }
.steps { display: flex; flex-direction: column; gap: 14px; margin: 0; padding: 0; list-style: none; }
.step { display: grid; grid-template-columns: 65px 1fr; gap: 19px; align-items: start; padding: 28px; border: 1px solid var(--line); border-radius: 24px; background: #faf6f0; transition: transform 0.3s var(--ease), background 0.3s, box-shadow 0.3s; }
.step:hover { background: white; box-shadow: var(--shadow-sm); transform: translateX(7px); }
.step-num { display: grid; width: 52px; height: 52px; place-items: center; border-radius: 50%; color: white; background: var(--plum); font-family: "Playfair Display", serif; font-style: italic; }
.step h3 { margin-top: 3px; }
.step p { margin-top: 6px; }

.reach { overflow: hidden; color: white; background: #251922; }
.reach::before { position: absolute; top: -200px; right: -80px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(185,110,89,0.17), transparent 68%); content: ""; }
.reach-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; align-items: center; }
.reach-visual { display: grid; min-height: 520px; place-items: center; }
.globe { position: relative; display: grid; width: min(90%, 470px); aspect-ratio: 1; place-items: center; border: 1px solid rgba(240,212,170,0.24); border-radius: 50%; box-shadow: inset 0 0 80px rgba(198,164,109,0.08), 0 0 0 45px rgba(255,255,255,0.018), 0 0 0 90px rgba(255,255,255,0.012); }
.globe::before, .globe::after { position: absolute; border: 1px solid rgba(240,212,170,0.16); border-radius: 50%; content: ""; }
.globe::before { inset: 0 28%; }.globe::after { inset: 28% 0; }
.globe-line { position: absolute; width: 100%; height: 1px; background: rgba(240,212,170,0.14); transform-origin: center; }
.line-a { transform: rotate(28deg); }.line-b { transform: rotate(-28deg); }.line-c { transform: rotate(90deg); }
.globe > img { position: relative; z-index: 2; width: 24%; border-radius: 50%; box-shadow: 0 12px 40px rgba(0,0,0,0.28); }
.location-tag { position: absolute; z-index: 3; padding: 7px 12px; border: 1px solid rgba(255,255,255,0.18); border-radius: 999px; color: white; background: rgba(74,41,60,0.88); box-shadow: 0 8px 22px rgba(0,0,0,0.2); font-size: 0.74rem; }
.location-tag::before { display: inline-block; width: 6px; height: 6px; margin-right: 6px; border-radius: 50%; background: #e6bf88; content: ""; }
.tag-cuba { top: 17%; left: 8%; }.tag-peru { top: 55%; left: -3%; }.tag-brasil { top: 25%; right: 2%; }.tag-world { right: 9%; bottom: 14%; }
.reach-copy h2 { margin: 14px 0 22px; color: white; }
.reach-copy > p { color: rgba(255,255,255,0.7); font-size: 1.05rem; }
.check-list { display: grid; gap: 13px; margin: 28px 0 32px; padding: 0; list-style: none; }
.check-list li { display: grid; grid-template-columns: 26px 1fr; gap: 10px; color: rgba(255,255,255,0.78); }
.check-list li::before { display: grid; width: 22px; height: 22px; place-items: center; border: 1px solid rgba(230,191,136,0.48); border-radius: 50%; color: #e6bf88; content: "✓"; font-size: 0.7rem; }
.reach .btn-outline { color: white; border-color: rgba(255,255,255,0.27); }
.reach .btn-outline:hover { background: rgba(255,255,255,0.08); }

.about { overflow: hidden; background: var(--sand); }
.about-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 8vw; align-items: center; }
.about-portrait { position: relative; margin: 0; }
.about-portrait > img { width: 100%; aspect-ratio: 0.87; object-fit: cover; object-position: 50% 28%; border-radius: 42% 42% 30px 30px; box-shadow: var(--shadow-lg); }
.about-portrait figcaption { position: absolute; right: -22px; bottom: 36px; display: flex; align-items: center; gap: 10px; padding: 10px 16px 10px 10px; border: 1px solid rgba(74,41,60,0.1); border-radius: 999px; background: rgba(255,253,249,0.91); box-shadow: var(--shadow-sm); backdrop-filter: blur(10px); font-size: 0.82rem; font-weight: 700; }
.about-portrait figcaption img { width: 38px; height: 38px; }
.about-copy h2 { margin: 14px 0 26px; }
.about-copy p { margin-top: 18px; font-size: 1.04rem; }
.signature { margin-top: 28px; color: var(--wine); font-family: "Playfair Display", serif; font-size: 2rem; font-style: italic; }

.editorial-quote { color: white; background: var(--plum); text-align: center; }
.editorial-quote img { width: 62px; height: 62px; margin: 0 auto 30px; border: 3px solid rgba(255,255,255,0.17); border-radius: 50%; }
.editorial-quote blockquote { max-width: 1000px; margin: auto; color: white; font-size: clamp(2.25rem, 4.4vw, 4.5rem); }
.editorial-quote p { margin-top: 25px; color: rgba(255,255,255,0.58); font-size: 0.84rem; }

.faq { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 8vw; }
.faq-intro { position: sticky; top: 132px; align-self: start; }
.faq-intro h2 { margin: 14px 0 20px; }
.faq-list details { border-top: 1px solid var(--line); padding: 25px 0; }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; justify-content: space-between; gap: 24px; cursor: pointer; font-size: 1.05rem; font-weight: 700; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { flex: 0 0 auto; color: var(--terracotta); content: "+"; font-size: 1.45rem; font-weight: 400; line-height: 1; transition: transform 0.25s; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { max-width: 730px; padding-top: 14px; }

.cta { padding: 38px 0 100px; background: var(--white); }
.cta-box { position: relative; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 55px; align-items: center; overflow: hidden; padding: 72px; border-radius: 38px; color: white; background: linear-gradient(135deg, #281b26, #63384e); box-shadow: var(--shadow-lg); }
.cta-box::after { position: absolute; right: -180px; bottom: -280px; width: 490px; height: 490px; border: 1px solid rgba(255,255,255,0.14); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,0.023), 0 0 0 140px rgba(255,255,255,0.016); content: ""; }
.cta-box h2 { margin: 14px 0 18px; color: white; }
.cta-box p { max-width: 650px; color: rgba(255,255,255,0.7); }
.cta-actions { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: flex-start; justify-self: end; gap: 13px; }
.cta-location-label { color: rgba(255,255,255,0.82); font-size: 0.82rem; font-weight: 700; }
.cta-contact-buttons { display: flex; flex-wrap: wrap; gap: 12px; }
.cta-contact-buttons .btn { min-width: 190px; }
.cta-note { color: rgba(255,255,255,0.56); font-size: 0.73rem; }

footer { padding: 68px 0 30px; color: white; background: #1c141a; }
.footer-grid { display: grid; grid-template-columns: 1.45fr repeat(3, 1fr); gap: 50px; }
.footer-brand > p { max-width: 360px; margin-top: 19px; }
footer h3 { margin-bottom: 16px; color: white; font-family: "DM Sans", sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
footer p, footer a { color: rgba(255,255,255,0.61); }
footer a:not(.brand) { display: block; width: fit-content; margin: 8px 0; transition: color 0.2s; }
footer a:not(.brand):hover { color: white; }
.footer-contacts { display: grid; gap: 8px; margin-bottom: 14px; }
footer a.footer-contact { display: grid; gap: 2px; margin: 0; }
.footer-contact span { color: #e6bf88; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.footer-contact strong { color: rgba(255,255,255,0.84); font-size: 0.94rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; margin-top: 52px; padding-top: 23px; border-top: 1px solid rgba(255,255,255,0.11); color: rgba(255,255,255,0.52); font-size: 0.78rem; }

.wa-float { position: fixed; z-index: 110; right: 20px; bottom: 20px; display: flex; min-width: 58px; height: 58px; align-items: center; justify-content: center; gap: 9px; padding: 0 17px; border: 4px solid rgba(255,255,255,0.82); border-radius: 999px; color: white; background: #287a50; box-shadow: 0 13px 38px rgba(20,100,60,0.38); font-size: 0.75rem; font-weight: 700; transition: transform 0.25s, box-shadow 0.25s; }
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(20,100,60,0.46); }
.wa-float svg { width: 24px; height: 24px; fill: currentColor; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.js .reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1120px) {
  .brand-name { max-width: 150px; }
  .nav-links { gap: 15px; font-size: 0.82rem; }
  .nav-cta { display: none; }
  .nav-contact-link { display: inline-flex; }
  .hero-grid { grid-template-columns: minmax(0, 1.15fr) minmax(310px, 0.65fr); gap: 35px; }
}

@media (min-width: 931px) and (max-height: 820px) {
  .hero { min-height: 720px; }
  .hero-grid { padding: 90px 0 55px; }
  .hero h1 { font-size: clamp(3.4rem, 5.35vw, 4.7rem); }
  .hero-lead { margin: 18px 0 21px; }
  .language-pills { margin-top: 18px; }
  .hero-visual { width: min(100%, 390px); }
  .portrait-frame { aspect-ratio: 0.86; }
  .world-card { right: -18px; bottom: 54px; }
}

@media (max-width: 930px) {
  .container { width: min(100% - 32px, 1200px); }
  header { top: 10px; }
  .nav-shell { position: relative; }
  .menu-btn { display: grid; }
  .nav-links { position: absolute; top: calc(100% + 10px); right: 0; left: 0; display: grid; gap: 2px; max-height: 0; padding: 0 18px; overflow: hidden; border: 1px solid transparent; border-radius: 24px; background: rgba(31,22,30,0.97); box-shadow: var(--shadow-lg); opacity: 0; pointer-events: none; transform: translateY(-8px); transition: max-height 0.35s var(--ease), padding 0.35s, opacity 0.25s, transform 0.35s, border-color 0.35s; }
  .nav-shell.open .nav-links { max-height: 430px; padding: 16px 18px; border-color: rgba(255,255,255,0.13); opacity: 1; pointer-events: auto; transform: none; }
  .nav-links a { padding: 13px 4px; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 0.95rem; }
  .nav-links a:last-child { border-bottom: 0; }
  .nav-links a::after { display: none; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 150px; }
  .hero-copy-wrap { max-width: 760px; }
  .hero-visual { width: min(78%, 460px); justify-self: center; }
  .portrait-frame { aspect-ratio: 0.95; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(3) { border-left: 1px solid var(--line); }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .welcome-grid, .neural-grid, .process-grid, .reach-grid, .about-grid, .faq-grid { grid-template-columns: 1fr; }
  .welcome-grid { gap: 28px; }
  .editorial-mark { display: none; }
  .choice-grid { grid-template-columns: repeat(2, 1fr); }
  .connection-orbit { max-width: 390px; }
  .service-card { min-height: 510px; }
  .sticky, .faq-intro { position: static; }
  .process-grid, .faq-grid { gap: 55px; }
  .reach-grid { gap: 30px; }
  .reach-visual { order: 2; min-height: 430px; }
  .reach-copy { order: 1; }
  .about-portrait { width: min(85%, 600px); }
  .about-portrait figcaption { right: -14px; }
  .cta-box { grid-template-columns: 1fr; }
  .cta-actions { justify-self: start; }
  .footer-grid { grid-template-columns: 1.2fr 1fr; }
}

@media (max-width: 680px) {
  html { scroll-padding-top: 90px; }
  .container { width: min(100% - 26px, 1200px); }
  .nav-shell { min-height: 60px; padding: 6px 7px 6px 9px; }
  .brand-mark { width: 44px; height: 44px; flex-basis: 44px; }
  .brand-name { display: none; }
  .lang-wrap { min-height: 42px; padding-left: 8px; }
  .lang { width: 76px; padding-right: 8px; font-size: 0.8rem; }
  .menu-btn { width: 44px; height: 44px; }
  h1 { font-size: clamp(3.15rem, 15vw, 5.3rem); }
  h2 { font-size: clamp(2.35rem, 11vw, 3.7rem); }
  section { padding: 86px 0; }
  .hero-grid { padding: 126px 0 102px; }
  .availability-pill { margin-bottom: 18px; }
  .hero-lead { margin: 23px 0 29px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .language-pills { margin-top: 23px; }
  .hero-visual { width: 90%; margin-top: 8px; }
  .portrait-frame { aspect-ratio: 0.9; }
  .world-card { right: -4px; bottom: 52px; width: 86%; }
  .hero-signature { right: 3px; font-size: 1.8rem; }
  .scroll-cue { display: none; }
  .trust-item { min-height: 105px; padding: 18px; }
  .trust-item strong { font-size: 1.7rem; }
  .trust-item span { font-size: 0.73rem; }
  .welcome { padding: 96px 0; }
  .intro-copy { font-size: 1.65rem; }
  .section-head { display: block; margin-bottom: 38px; }
  .section-head > p { margin-top: 20px; }
  .choice-grid { grid-template-columns: 1fr; }
  .choice { min-height: 112px; }
  .choice-result { grid-template-columns: 1fr; padding: 23px; }
  .choice-result .btn { width: 100%; }
  .connection-orbit { max-width: 320px; }
  .neural-grid { gap: 45px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 465px; padding: 29px; border-radius: 28px; }
  .service-card h3 { font-size: 2.45rem; }
  .service-symbol { right: 22px; width: 125px; height: 125px; }
  .service-symbol::before, .service-symbol::after { top: 61px; width: 84px; }
  .step { grid-template-columns: 52px 1fr; padding: 21px; }
  .step-num { width: 44px; height: 44px; }
  .reach-visual { min-height: 360px; }
  .globe { width: 85%; }
  .location-tag { padding: 5px 9px; font-size: 0.65rem; }
  .tag-peru { left: -7%; }
  .about-portrait { width: 100%; }
  .about-portrait figcaption { right: 10px; bottom: 18px; }
  .editorial-quote blockquote { font-size: 2.25rem; }
  .cta { padding: 25px 0 80px; }
  .cta-box { gap: 35px; padding: 44px 26px; border-radius: 28px; }
  .cta-contact-buttons { width: 100%; }
  .cta-contact-buttons .btn { width: 100%; min-width: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-bottom { flex-direction: column; }
  .wa-float { right: 13px; bottom: 13px; width: 56px; min-width: 56px; height: 56px; padding: 0; }
  .wa-float span { display: none; }
  .cursor-glow { display: none; }
}

@media (max-width: 390px) {
  .lang-icon { display: none; }
  .lang-wrap { padding-left: 4px; }
  .lang { width: 70px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item, .trust-item:nth-child(3) { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); border-left: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .hero video { display: none; }
  .js .reveal { opacity: 1; transform: none; }
}

@media (prefers-contrast: more) {
  :root { --muted: #51484d; --line: rgba(38,26,36,0.28); }
  .hero-lead, .world-card div > span, .path-section p, .neural-copy > p, .reach-copy > p { color: rgba(255,255,255,0.9); }
}
