/* VoxLatina — brand site (paleta de branding/BRAND.md) */
:root {
  --coral: #FF4D6D;
  --magenta: #D6246E;
  --violet: #7C3AED;
  --lila: #C77DFF;
  --grad: linear-gradient(135deg, #FF4D6D 0%, #D6246E 45%, #7C3AED 100%);
  --bg: #0A0711;
  --panel: #140D22;
  --panel-2: #1D1432;
  --border: #271B42;
  --border-on: #3A2A63;
  --txt: #F5F2FA;
  --txt2: #BBAED6;
  --txt3: #6F5E94;
  --link: #22D3EE;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--txt);
  font-family: "DM Sans", -apple-system, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: "Fraunces", Georgia, serif; font-weight: 700; }

a { color: var(--link); text-decoration: none; }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ── Header ── */
header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(10, 7, 17, .82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
}
.nav img { height: 34px; display: block; }
.nav-right { display: flex; align-items: center; gap: 26px; }
.nav-right a { color: var(--txt2); font-size: .95rem; transition: color .2s; }
.nav-right a:hover { color: var(--txt); }
.lang-toggle {
  background: var(--panel-2); border: 1px solid var(--border-on);
  color: var(--txt2); border-radius: 99px; padding: 5px 14px;
  font: inherit; font-size: .85rem; cursor: pointer;
}
.lang-toggle:hover { color: var(--txt); }

/* ── Hero ── */
.hero {
  padding: 110px 0 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: -40% -20% auto;
  height: 130%;
  background:
    radial-gradient(600px 360px at 28% 18%, rgba(255, 77, 109, .16), transparent 70%),
    radial-gradient(700px 420px at 75% 30%, rgba(124, 58, 237, .20), transparent 70%);
  pointer-events: none;
}
.hero > * { position: relative; }
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.08;
  margin-bottom: 22px;
}
.hero h1 .grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.sub {
  color: var(--txt2);
  font-size: 1.25rem;
  max-width: 640px;
  margin: 0 auto 38px;
}
.cta {
  display: inline-block;
  background: var(--grad);
  color: #fff; font-weight: 600;
  padding: 14px 34px; border-radius: 99px;
  font-size: 1.05rem;
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 8px 30px rgba(214, 36, 110, .35);
}
.cta:hover { transform: translateY(-2px); box-shadow: 0 12px 38px rgba(214, 36, 110, .5); }

/* ── Secciones ── */
section { padding: 84px 0; }
section.alt { background: var(--panel); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.kicker {
  display: inline-block;
  font-size: .8rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 14px;
}
section h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: 16px; letter-spacing: -.01em; }
section p.lead { color: var(--txt2); font-size: 1.1rem; max-width: 700px; }

.grid { display: grid; gap: 22px; margin-top: 44px; }
.grid.c3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

.card {
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  transition: border-color .2s, transform .2s;
}
.card:hover { border-color: var(--border-on); transform: translateY(-3px); }
.card .icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 18px;
}
.card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.card p { color: var(--txt2); font-size: .97rem; }

/* ── Talento ── */
.talent {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px; margin-top: 44px;
}
.talent-card {
  border-radius: 20px; overflow: hidden;
  border: 1px solid var(--border);
  background: var(--panel-2);
}
.talent-card .ph {
  aspect-ratio: 4/5;
  background:
    radial-gradient(280px 200px at 30% 25%, rgba(255, 77, 109, .35), transparent 70%),
    radial-gradient(320px 240px at 75% 75%, rgba(124, 58, 237, .4), transparent 70%),
    var(--panel);
  display: flex; align-items: center; justify-content: center;
}
.talent-card .ph img { width: 64px; opacity: .9; }
.talent-card .meta { padding: 18px 20px 22px; }
.talent-card .meta h3 { font-size: 1.15rem; }
.talent-card .meta p { color: var(--txt3); font-size: .88rem; margin-top: 4px; }
.badge {
  display: inline-block; margin-top: 12px;
  font-size: .72rem; font-weight: 600; letter-spacing: .08em;
  color: var(--lila); border: 1px solid var(--border-on);
  border-radius: 99px; padding: 3px 11px;
}

/* ── Principios ── */
.principles li {
  list-style: none;
  padding: 16px 0 16px 38px;
  border-bottom: 1px solid var(--border);
  color: var(--txt2);
  position: relative;
  max-width: 760px;
}
.principles li::before {
  content: "✓";
  position: absolute; left: 0;
  color: #34D399; font-weight: 700;
}
.principles li strong { color: var(--txt); }

/* ── Footer ── */
footer {
  border-top: 1px solid var(--border);
  padding: 44px 0 60px;
  color: var(--txt3); font-size: .9rem;
}
.foot { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: space-between; }
.foot nav { display: flex; gap: 22px; }
.foot a { color: var(--txt3); }
.foot a:hover { color: var(--txt2); }

@media (max-width: 640px) {
  .hero { padding: 70px 0 60px; }
  section { padding: 60px 0; }
  .nav-right { gap: 14px; }
  .nav-right a.hide-m { display: none; }
}
