/* ── SHARED STYLES — Pablo Faliti Coach ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:        oklch(72% 0.12 72);
  --gold-light:  oklch(82% 0.10 72);
  --gold-dim:    oklch(55% 0.09 72);
  --black:       #080808;
  --surface:     #0f0f0f;
  --surface2:    #161616;
  --surface3:    #1e1e1e;
  --text:        oklch(91% 0.01 72);
  --text-muted:  oklch(55% 0.01 72);
  --border:      oklch(22% 0.01 72);
  --ff-display:  'Bebas Neue', sans-serif;
  --ff-serif:    'Cormorant Garamond', Georgia, serif;
  --ff-body:     'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9999; opacity: 0.5;
}
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 2px; }

/* ── TOP BAR ── */
.top-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 8px 56px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}
.top-bar a, .top-bar span {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.top-bar a:hover { color: var(--gold); }
.top-bar-sep { color: var(--border) !important; user-select: none; }

/* ── NAV ── */
nav.main-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,8,8,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  height: 68px;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-decoration: none;
}
.nav-logo-name {
  font-family: var(--ff-display);
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--text);
  line-height: 1;
}
.nav-logo-tagline {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 11px;
  color: var(--gold-dim);
  letter-spacing: 0.15em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  height: 100%;
}
.nav-links li { height: 100%; display: flex; align-items: center; }
.nav-links a {
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0 18px;
  height: 100%;
  display: flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); border-bottom-color: var(--gold); }
.nav-cta-wrap { margin-left: 16px; }
.nav-cta {
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  border: none;
  padding: 11px 22px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ── PAGE HEADER ── */
.page-header {
  padding: 80px 56px 64px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: attr(data-bg-text);
  position: absolute;
  right: 40px; bottom: -20px;
  font-family: var(--ff-display);
  font-size: 140px;
  color: oklch(13% 0.02 72);
  pointer-events: none;
  line-height: 1;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.page-header .section-label { margin-bottom: 16px; }
.page-header h1 {
  font-family: var(--ff-display);
  font-size: clamp(52px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  position: relative;
}
.page-header h1 em { font-style: normal; color: var(--gold); }
.page-header .subtitle {
  font-family: var(--ff-serif);
  font-size: 20px;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.6;
  position: relative;
}

/* ── SECTION ATOMS ── */
.section-label {
  display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
}
.section-label::before {
  content: ''; width: 32px; height: 1px; background: var(--gold);
}
.section-label span {
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
}
h2.section-title {
  font-family: var(--ff-display);
  font-size: clamp(40px, 4.5vw, 68px);
  line-height: 0.95; letter-spacing: 0.02em;
  color: var(--text); margin-bottom: 20px;
}
h2.section-title em { font-style: normal; color: var(--gold); }

/* ── BUTTONS ── */
.btn-primary {
  font-family: var(--ff-body); font-size: 13px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--black); background: var(--gold);
  border: none; padding: 16px 36px; cursor: pointer;
  text-decoration: none; display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
  font-family: var(--ff-body); font-size: 13px; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); background: transparent;
  border: 1px solid var(--gold-dim); padding: 15px 35px; cursor: pointer;
  text-decoration: none; display: inline-block;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-2px); }
.btn-ghost {
  font-family: var(--ff-body); font-size: 13px; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: color 0.2s, gap 0.2s;
}
.btn-ghost:hover { color: var(--gold); gap: 12px; }
.btn-ghost::after { content: '→'; }

/* ── FOOTER ── */
footer.main-footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 64px 56px 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 48px;
}
.footer-brand-name {
  font-family: var(--ff-display); font-size: 32px;
  letter-spacing: 0.08em; margin-bottom: 6px;
}
.footer-brand-tagline {
  font-family: var(--ff-serif); font-style: italic;
  font-size: 15px; color: var(--gold-dim); margin-bottom: 20px;
}
.footer-brand-desc {
  font-size: 13px; color: var(--text-muted);
  line-height: 1.6; max-width: 300px;
}
.footer-col-title {
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold-dim); margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; list-style: none; }
.footer-links a {
  font-size: 14px; color: var(--text-muted); text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact-item {
  font-size: 13px; color: var(--text-muted); margin-bottom: 8px;
  display: flex; align-items: center; gap: 8px;
}
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 12px; color: var(--text-muted); letter-spacing: 0.05em; }
.footer-gold-line { width: 60px; height: 1px; background: linear-gradient(to right, var(--gold-dim), transparent); }

/* ── WHATSAPP ── */
.wa-float {
  position: fixed; bottom: 32px; right: 32px;
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.35);
  z-index: 200; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 32px rgba(37,211,102,0.5); }
.wa-float svg { width: 28px; height: 28px; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes scaleIn { from { opacity:0; transform:scale(0.97); } to { opacity:1; transform:scale(1); } }
@keyframes drawLine { from { width:0; } to { width:100%; } }
.animate-on-scroll { opacity:0; transform:translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.animate-on-scroll.visible { opacity:1; transform:translateY(0); }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .top-bar, nav.main-nav { padding-left: 24px; padding-right: 24px; }
  .nav-links { display: none; }
  .page-header { padding: 60px 24px 48px; }
  footer.main-footer { padding: 48px 24px 32px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}
