/* ===================================================================
   Jorge Sopan — Abogado · Estilos principales
   Archetype: Editorial Autoridad (navy + dorado + crema)
   v=20260527
   =================================================================== */

/* ── Variables ── */
:root {
  --navy:        #1a2744;
  --navy-mid:    #243358;
  --navy-light:  #2e4270;
  --gold:        #c9a84c;
  --gold-light:  #dfc078;
  --gold-dark:   #a8873a;
  --cream:       #f8f6f1;
  --cream-2:     #f0ece3;
  --cream-3:     #e4ddd0;
  --ink:         #1a1714;
  --ink-soft:    #3d3830;
  --ink-mute:    #7a7469;
  --white:       #ffffff;
  --line:        rgba(26,39,68,0.12);
  --line-gold:   rgba(201,168,76,0.3);

  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body:    'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-accent:  'EB Garamond', 'Georgia', serif;

  --nav-h:    72px;
  --max-w:    1200px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:  cubic-bezier(0.7, 0, 0.84, 0);
}

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

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  overflow-x: clip;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Reveal system ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
/* Safety: element with data-split must not be hidden by .reveal */
.reveal[data-split] { opacity: 1; transform: none; }


/* ════════════════════════════════════════
   SPLASH
   ════════════════════════════════════════ */
.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: opacity 0.6s var(--ease-in), transform 0.6s var(--ease-in);
  animation: splashSafety 0.01s 4.5s forwards;
}
@keyframes splashSafety {
  to { opacity: 0; pointer-events: none; }
}
.splash.is-out {
  opacity: 0;
  transform: translateY(-8px);
}
.splash-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.splash-scales {
  width: 64px;
  height: 64px;
  animation: splashPulse 1.5s ease-in-out infinite alternate;
}
@keyframes splashPulse {
  from { opacity: 0.6; transform: scale(0.95); }
  to   { opacity: 1;   transform: scale(1.05); }
}
.splash-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.08em;
}
.splash-title {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}


/* ════════════════════════════════════════
   NAV
   ════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.nav.is-solid {
  background: rgba(26,39,68,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(201,168,76,0.2);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 100%;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.nav-logo-initials {
  width: 36px;
  height: 36px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.01em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}
.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(248,246,241,0.8);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: background 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}
.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  background: var(--navy);
  border-top: 1px solid var(--line-gold);
  padding: 1.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.nav-mobile[hidden] { display: none; }
.nav-mobile-link {
  font-size: 1rem;
  font-weight: 400;
  color: var(--cream);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.1);
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.nav-mobile-link:hover { color: var(--gold); padding-left: 0.5rem; }
.nav-mobile-cta {
  margin-top: 1rem;
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  padding: 0.75rem;
  border-radius: 4px;
}


/* ════════════════════════════════════════
   COMMON LAYOUT
   ════════════════════════════════════════ */
.section-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem 2rem;
  position: relative;
}

.section-label {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  text-wrap: balance;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 56ch;
  line-height: 1.7;
  margin-bottom: 3rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 1.75rem;
  border-radius: 4px;
  transition: transform 0.2s var(--ease-out), background 0.2s ease, color 0.2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover { background: var(--gold-light); }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(201,168,76,0.5);
}
.btn-ghost:hover {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
  color: var(--gold);
}

.btn-form {
  background: var(--navy);
  color: var(--cream);
  width: 100%;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 0.88rem;
}
.btn-form:hover { background: var(--navy-mid); }
.btn-form .btn-arrow { transition: transform 0.3s ease; }
.btn-form:hover .btn-arrow { transform: translateX(4px); }


/* ════════════════════════════════════════
   HERO
   ════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(201,168,76,0.08) 1px, transparent 0);
  background-size: 40px 40px;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(46,66,112,0.9) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(26,39,68,0.95) 0%, transparent 60%),
    linear-gradient(160deg, #1a2744 0%, #0e1a33 100%);
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  padding: calc(var(--nav-h) + 4rem) 2rem 6rem;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4rem;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-kicker-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: 1.75rem;
  text-wrap: balance;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 600;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(248,246,241,0.72);
  line-height: 1.7;
  max-width: 42ch;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-emblem {
  flex-shrink: 0;
  animation: emblemFloat 6s ease-in-out infinite;
}
@keyframes emblemFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
.hero-scales {
  width: min(260px, 30vw);
  height: auto;
  opacity: 0.85;
}

.hero-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-bottom: 2rem;
}
.hero-bottom-bar {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  opacity: 0.5;
}
.scroll-dot {
  animation: scrollBounce 1.8s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(12px); }
}


/* ════════════════════════════════════════
   ABOUT
   ════════════════════════════════════════ */
.about {
  background: var(--cream);
  border-top: 1px solid var(--line);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 5rem;
  align-items: start;
}

.about-text .section-title { margin-bottom: 2rem; }

.about-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.about-body p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-soft);
}

.about-lead { font-size: 1.1rem !important; color: var(--ink) !important; }

/* Drop cap */
.dropcap {
  float: left;
  font-family: var(--font-display);
  font-size: 4.2rem;
  line-height: 0.75;
  margin-right: 0.1em;
  margin-top: 0.1em;
  color: var(--gold);
  font-weight: 700;
}

.about-meta {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  margin-top: 1rem;
  flex-wrap: wrap;
}
.about-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.about-meta-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.about-meta-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* Portrait */
.portrait-frame {
  position: relative;
}
.portrait-placeholder {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3/4;
  border: 2px solid var(--line-gold);
}
.portrait-placeholder svg {
  width: 100%;
  height: 100%;
}
.portrait-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--gold);
  color: var(--navy);
  padding: 1rem 1.25rem;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.3;
  box-shadow: 0 8px 24px rgba(26,39,68,0.15);
}


/* ════════════════════════════════════════
   AREAS
   ════════════════════════════════════════ */
.areas {
  position: relative;
  background: var(--navy);
  overflow: hidden;
}
.areas-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(201,168,76,0.05) 1px, transparent 0);
  background-size: 40px 40px;
}
.areas .section-title { color: var(--cream); }
.areas .section-sub { color: rgba(248,246,241,0.65); }
.areas .section-label { color: var(--gold); }

.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.area-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 8px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s var(--ease-out);
}
.area-card:hover {
  background: rgba(201,168,76,0.06);
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-4px);
}

.area-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.area-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  transition: background 0.3s ease;
}
.area-card:hover .area-icon { background: rgba(201,168,76,0.12); }
.area-icon svg { width: 20px; height: 20px; }

.area-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.2;
}

.area-desc {
  font-size: 0.92rem;
  color: rgba(248,246,241,0.65);
  line-height: 1.65;
}

.area-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.area-list li {
  font-size: 0.88rem;
  color: rgba(248,246,241,0.78);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}
.area-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.7;
}

.area-card-footer {
  padding-top: 1rem;
  border-top: 1px solid rgba(201,168,76,0.12);
}
.area-cta {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.2s ease, letter-spacing 0.2s ease;
  display: inline-flex;
  align-items: center;
}
.area-cta:hover { letter-spacing: 0.1em; }


/* ════════════════════════════════════════
   PRINCIPLES
   ════════════════════════════════════════ */
.principles {
  background: var(--cream-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--line);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.principle {
  background: var(--cream);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: background 0.3s ease;
}
.principle:hover { background: var(--white); }

.principle-num {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  font-style: italic;
}

.principle-icon {
  width: 48px;
  height: 48px;
}
.principle-icon svg { width: 100%; height: 100%; }

.principle-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
}

.principle-body {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.7;
  flex: 1;
}


/* ════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════ */
.contact {
  position: relative;
  background: var(--navy);
  overflow: hidden;
}
.contact-bg {
  position: absolute;
  inset: 0;
}
.contact-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(46,66,112,0.6) 0%, transparent 70%),
    radial-gradient(circle at 1px 1px, rgba(201,168,76,0.05) 1px, transparent 0);
  background-size: auto, 40px 40px;
}
.contact .section-label { color: var(--gold); }
.contact-title { color: var(--cream); }
.contact-sub { color: rgba(248,246,241,0.65); }

.contact-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.contact-info-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-info-icon svg { width: 18px; height: 18px; }
.contact-info-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.contact-info-value {
  font-size: 0.95rem;
  color: var(--cream);
  font-weight: 400;
  transition: color 0.2s ease;
}
a.contact-info-value:hover { color: var(--gold); }

.contact-whatsapp-box {
  margin-top: 2rem;
  background: rgba(37,211,102,0.08);
  border: 1px solid rgba(37,211,102,0.2);
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}
.contact-whatsapp-text {
  font-size: 0.82rem;
  color: rgba(248,246,241,0.7);
}
.btn-whatsapp-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.7rem 1.25rem;
  border-radius: 6px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn-whatsapp-contact:hover { background: #20BD5A; transform: translateY(-2px); }

/* Form */
.contact-form {
  background: var(--white);
  border-radius: 10px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.form-input {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--cream-3);
  border-radius: 5px;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.form-input::placeholder { color: var(--ink-mute); }
.form-input:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,39,68,0.08);
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237a7469' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-note {
  font-size: 0.72rem;
  color: var(--ink-mute);
  text-align: center;
  line-height: 1.5;
}


/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
.footer {
  background: #0e1a33;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3rem 2rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.footer-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.35rem;
}
.footer-tagline {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}
.footer-spec {
  font-size: 0.75rem;
  color: rgba(248,246,241,0.4);
  letter-spacing: 0.04em;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-link {
  font-size: 0.82rem;
  color: rgba(248,246,241,0.55);
  transition: color 0.2s ease;
}
.footer-link:hover { color: var(--gold); }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-contact-item {
  font-size: 0.82rem;
  color: rgba(248,246,241,0.55);
  transition: color 0.2s ease;
}
a.footer-contact-item:hover { color: var(--gold); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(201,168,76,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.72rem;
  color: rgba(248,246,241,0.3);
}
.footer-disclaimer { text-align: right; }


/* ════════════════════════════════════════
   WHATSAPP FLOTANTE
   ════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 50;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}
.whatsapp-float svg { width: 28px; height: 28px; }
.whatsapp-float:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
}
.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 0.75rem);
  background: #1a2744;
  color: #f8f6f1;
  font-size: 0.72rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 0.4rem 0.75rem;
  border-radius: 4px;
  pointer-events: none;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: #1a2744;
}
.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}


/* ════════════════════════════════════════
   GOLD DIVIDER LINES
   ════════════════════════════════════════ */
.section-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 2rem;
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
}


/* ════════════════════════════════════════
   RESPONSIVE — Tablet
   ════════════════════════════════════════ */
@media (max-width: 1023px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  .hero-kicker { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-emblem { display: none; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-portrait { order: -1; max-width: 300px; margin: 0 auto; }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
}


/* ════════════════════════════════════════
   RESPONSIVE — Mobile
   ════════════════════════════════════════ */
@media (max-width: 767px) {
  .section-container { padding: 3.5rem 1.25rem; }

  .areas-grid { grid-template-columns: 1fr; }

  .principles-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .contact-form { padding: 1.75rem 1.25rem; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 1.25rem 1.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem;
  }
  .footer-disclaimer { text-align: center; }

  .about-meta { gap: 1.5rem; }

  .hero-title { font-size: 2.2rem; }
}


/* ════════════════════════════════════════
   PRINT
   ════════════════════════════════════════ */
@media print {
  .nav, .splash, .whatsapp-float { display: none; }
  .hero { min-height: auto; padding: 2rem; }
  .reveal { opacity: 1; transform: none; }
}
