/* ==============================================================
   CODESIGN PROJECTS — nina.html
   Página de producto para NINA (robot social de compañía).
   Mantiene la identidad de marca propia de NINA (navy/dorado,
   Playfair Display + Lato + Cinzel) de forma FIJA, sin seguir el
   modo claro/oscuro del holding — cada producto conserva su propia
   marca dentro del sitio neutro. A diferencia del resto del sitio
   (donde el footer sí sigue el toggle), aquí el footer también se
   mantiene fijo oscuro, para no romper contra el resto de la página.
   Ver nina_brand_design_system.
================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&family=Playfair+Display:wght@400;600;700&family=Cinzel:wght@400;700;900&display=swap');

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

:root {
  --text: #1c1a1f;
  --text-soft: #57525c;
  --text-faint: #8b8690;
  --surface: #ffffff;
  --surface-alt: #f6f3ec;
  --line: #e6e0d2;
  --orange: #e2531e;
  --khaki: #a4906a;
  --header-bg: rgba(255, 255, 255, 0.9);

  --font-display: "Space Grotesk", "Helvetica Neue", sans-serif;
  --font-body: "Inter", "Helvetica Neue", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
}

:root[data-theme="dark"] {
  --text: #f2efe9;
  --text-soft: #c7c2cb;
  --text-faint: #948e9a;
  --surface: #17151b;
  --surface-alt: #221f27;
  --line: rgba(255, 255, 255, 0.12);
  --khaki: #bda87f;
  --header-bg: rgba(23, 21, 27, 0.85);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--surface);
  color: var(--text);
  line-height: 1.6;
  padding-top: 76px;
  transition: background-color 0.25s ease, color 0.25s ease;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1200px; margin: auto; padding: 0 2rem; }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ==============================
   HEADER / NAV (compartido con el resto del sitio)
============================== */
header {
  position: fixed;
  top: 0; width: 100%; z-index: 1000;
  background: var(--header-bg);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.navbar { display: flex; justify-content: space-between; align-items: center; padding: 1.15rem 0; }
.brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.brand-mark { height: 26px; width: auto; }
.brand-mark-dark { display: none; }
:root[data-theme="dark"] .brand-mark-dark { display: block; }
:root[data-theme="dark"] .brand-mark-light { display: none; }

.brand-word {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--text);
}

.brand-suffix {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 0.7rem;
  color: var(--khaki);
  margin-left: 0.15rem;
}

.menu { display: flex; gap: 2.2rem; list-style: none; align-items: center; }

.menu > li > a {
  text-decoration: none;
  color: var(--text-soft);
  font-size: 0.85rem;
  font-weight: 500;
  position: relative;
  padding: 0.4rem 0;
}

.menu > li > a::after {
  content: "";
  position: absolute;
  bottom: -2px; left: 0;
  width: 0%; height: 1px;
  background: var(--orange);
  transition: width 0.25s ease;
}
.menu > li > a:hover { color: var(--text); }
.menu > li > a:hover::after { width: 100%; }

.menu > li > a.active { color: var(--orange); }
.menu > li > a.active::after { width: 100%; background: var(--orange); }

.menu .btn-nav {
  padding: 0.6rem 1.1rem;
  background: var(--text);
  color: var(--surface);
  border-radius: 2px;
  font-size: 0.8rem;
}
.menu .btn-nav::after { display: none; }
.menu .btn-nav:hover { background: var(--orange); color: #fff; }

.dropdown { position: relative; }

.dropdown-menu {
  list-style: none;
  position: absolute;
  top: 130%; left: 0;
  min-width: 220px;
  padding: 0.4rem 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 3px;
  box-shadow: 0 16px 32px rgba(28, 26, 31, 0.08);
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }

.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 1.1rem;
  font-size: 0.82rem;
  color: var(--text-soft);
  text-decoration: none;
}
.dropdown-menu li a:hover { background: var(--surface-alt); color: var(--text); }
.dropdown-menu li a.active { color: var(--orange); background: var(--surface-alt); }
.dropdown-menu i { width: 16px; text-align: center; color: var(--text-faint); }
.dropdown-menu a:hover i { color: var(--orange); }

.menu-toggle { display: none; font-size: 1.4rem; cursor: pointer; color: var(--text); }

/* ==============================
   FOOTER — fijo oscuro a propósito en esta página (a diferencia
   del resto del sitio, donde el footer ya sigue el toggle
   claro/oscuro): todo nina.html mantiene su identidad navy/dorado
   fija, así que un footer que cambiara a claro se vería roto contra
   el resto de la página, que nunca deja de ser oscura.
============================== */
.footer { background: #1c1a1f; color: rgba(255, 255, 255, 0.7); padding: 4.5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr 1fr; gap: 2rem; }

.footer-brand h3 {
  font-family: var(--font-display);
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}
.footer-brand p { font-size: 0.85rem; max-width: 30ch; line-height: 1.6; }

.footer-column h4 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1rem;
}
.footer-column ul { list-style: none; }
.footer-column li { margin-bottom: 0.7rem; }
.footer-column a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  transition: color 0.2s ease;
}
.footer-column a:hover { color: var(--orange); }

.footer-bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding: 0 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-bottom p { font-size: 0.75rem; color: rgba(255, 255, 255, 0.4); }

/* ==============================
   BOTONES FLOTANTES — volver arriba y tema
============================== */
.fab-top,
.fab-theme {
  position: fixed;
  z-index: 500;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--surface);
  color: var(--text-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  box-shadow: 0 8px 20px rgba(28, 26, 31, 0.14);
  transition: opacity 0.25s ease, transform 0.25s ease, border-color 0.2s ease, color 0.2s ease, visibility 0.25s, background-color 0.25s ease;
}
.fab-top:hover,
.fab-theme:hover { border-color: var(--orange); color: var(--orange); }

.fab-top {
  right: 2rem;
  bottom: 2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}
.fab-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }

.fab-theme {
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.9rem;
}

.theme-icon-dark, .theme-icon-light { display: none; }
:root:not([data-theme="dark"]) .theme-icon-dark { display: block; }
:root[data-theme="dark"] .theme-icon-light { display: block; }

@media (max-width: 768px) {
  .fab-top { right: 1.2rem; bottom: 1.2rem; width: 40px; height: 40px; }
  .fab-theme { left: 1.2rem; width: 40px; height: 40px; }

  .menu {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: absolute;
    top: 68px; left: 0; width: 100%;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 2rem 1.5rem;
  }
  .menu.active { display: flex; }
  .menu > li { width: 100%; padding: 0.7rem 0; border-bottom: 1px solid var(--line); }
  .menu .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; border: none; box-shadow: none; padding-left: 1rem; display: none; }
  .menu .dropdown:hover .dropdown-menu { display: block; }
  .menu-toggle { display: block; }

  body { padding-top: 68px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

.nina-page {
  --n-gold: #C8A96B;
  --n-gold-hover: #D4B57A;
  --n-bg: #0A0E16;
  --n-card: #0D1420;
  --n-text: #EDE9E3;
  --n-dim: rgba(199, 199, 199, 0.65);
  --font-serif: 'Playfair Display', serif;
  --font-lato: 'Lato', sans-serif;
  --font-cinzel: 'Cinzel', serif;
}

.nina-page body,
body.nina-page {
  background: var(--n-bg);
}

/* ==============================
   HEADER — fijo oscuro en esta página, sin importar el toggle
   claro/oscuro del resto del sitio (misma idea que footer/carousel).
============================== */
.nina-page header {
  background: rgba(10, 14, 22, 0.86) !important;
  border-bottom: 1px solid rgba(200, 169, 107, 0.16) !important;
}
.nina-page .brand-word,
.nina-page .brand-suffix,
.nina-page .menu > li > a,
.nina-page .dropdown-toggle {
  color: var(--n-text) !important;
}
.nina-page .menu > li > a:hover,
.nina-page .dropdown-toggle:hover,
.nina-page .dropdown-toggle.active {
  color: var(--n-gold) !important;
}
.nina-page .dropdown-menu {
  background: rgba(8, 13, 24, 0.97) !important;
  border-color: rgba(200, 169, 107, 0.2) !important;
}
.nina-page .dropdown-menu a {
  color: rgba(255, 255, 255, 0.7) !important;
}
.nina-page .dropdown-menu a:hover {
  color: var(--n-gold) !important;
  background: rgba(200, 169, 107, 0.07) !important;
}
.nina-page .brand-mark-light { display: none !important; }
.nina-page .brand-mark-dark { display: inline !important; }
.nina-page .btn-nav {
  background: var(--n-gold) !important;
  color: var(--n-bg) !important;
}

/* ==============================
   ANIMACIONES
============================== */
@keyframes fadeUp   { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes freezeIn { from { opacity: 0; } to { opacity: 1; } }

.n-fade-1 { animation: fadeUp 0.8s cubic-bezier(.16,1,.3,1) 0.1s both; }
.n-fade-2 { animation: fadeUp 0.8s cubic-bezier(.16,1,.3,1) 0.3s both; }
.n-fade-3 { animation: fadeUp 0.8s cubic-bezier(.16,1,.3,1) 0.5s both; }
.n-fade-4 { animation: fadeUp 0.8s cubic-bezier(.16,1,.3,1) 0.7s both; }

.n-card-hover { transition: transform 0.3s cubic-bezier(.16,1,.3,1), box-shadow 0.3s ease; }
.n-card-hover:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(200,169,107,0.15); }

/* ==============================
   HERO
============================== */
.n-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--n-bg);
}
.n-hero-video,
.n-hero-frozen {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.n-hero-video { z-index: 1; }
.n-hero-frozen { z-index: 2; opacity: 0; display: none; animation: freezeIn 2.8s cubic-bezier(.4,0,.2,1) forwards; }
.n-hero-overlay {
  position: absolute; inset: 0; z-index: 9;
  background: linear-gradient(90deg, rgba(10,14,22,0.90) 0%, rgba(10,14,22,0.65) 45%, rgba(10,14,22,0.15) 100%);
}
.n-hero-bottom-fade {
  position: absolute; left: 0; right: 0; bottom: 0; height: 8rem; z-index: 9;
  background: linear-gradient(to bottom, transparent, var(--n-bg));
}
.n-hero-content {
  position: relative; z-index: 10;
  display: flex; flex-direction: column; min-height: 100vh;
}
.n-hero-body {
  flex: 1; display: flex; align-items: flex-end;
  padding: 0 1.5rem 5.5rem; max-width: 560px;
}
@media (min-width: 768px) { .n-hero-body { padding: 0 4rem 6rem; } }
@media (min-width: 1024px) { .n-hero-body { padding: 0 7rem 7rem; } }

.n-hero-kicker { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.2rem; }
.n-hero-kicker .line { height: 1px; width: 2rem; background: var(--n-gold); }
.n-hero-kicker span {
  color: var(--n-gold); font-size: 11px; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; font-family: var(--font-lato);
}
.n-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 700; color: var(--n-text); line-height: 1.05; margin: 0 0 20px;
}
.n-hero h1 em { color: var(--n-gold); font-style: normal; }
.n-hero p {
  font-family: var(--font-lato); font-size: 1.05rem; color: var(--n-dim);
  line-height: 1.7; margin: 0 0 2rem;
}
.n-hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }

.n-btn-gold {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border-radius: 999px; padding: 0.9rem 1.8rem;
  font-family: var(--font-lato); font-size: 0.9rem; font-weight: 700; letter-spacing: 0.5px;
  background: var(--n-gold); color: var(--n-bg);
  transition: background 0.2s ease, transform 0.2s ease;
}
.n-btn-gold:hover { background: var(--n-gold-hover); transform: translateY(-2px); }

.n-btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border-radius: 999px; padding: 0.9rem 1.8rem;
  font-family: var(--font-lato); font-size: 0.9rem; font-weight: 500;
  color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.25);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.n-btn-ghost:hover { color: var(--n-gold); border-color: var(--n-gold); }

.n-scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  opacity: 0.45; z-index: 10;
}
.n-scroll-hint span {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: #fff; font-family: var(--font-lato);
}
.n-scroll-hint .stem { width: 1px; height: 2.5rem; background: linear-gradient(to bottom, rgba(200,169,107,0.8), transparent); }

/* ==============================
   STATS BAR
============================== */
.n-statsbar {
  padding: 2.5rem 0; border-top: 1px solid rgba(200,169,107,0.12); border-bottom: 1px solid rgba(200,169,107,0.12);
  background: rgba(30,58,95,0.08);
}
.n-statsbar-grid {
  max-width: 72rem; margin: 0 auto; padding: 0 1.5rem;
  display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem;
}
@media (min-width: 768px) { .n-statsbar-grid { grid-template-columns: repeat(4,1fr); } }
.n-stat { display: flex; flex-direction: column; align-items: center; gap: 0.25rem; text-align: center; }
.n-stat .num { font-family: var(--font-cinzel); font-size: clamp(1.9rem,3.5vw,2.7rem); font-weight: 700; color: var(--n-gold); }
.n-stat .label { font-size: 15px; color: var(--n-dim); font-family: var(--font-lato); letter-spacing: 0.5px; }

/* ==============================
   SECCIONES GENERALES
============================== */
.n-section { padding: 6rem 1.5rem; }
@media (min-width: 768px) { .n-section { padding: 6rem 5rem; } }
@media (min-width: 1024px) { .n-section { padding: 6rem 7rem; } }
.n-section-inner { max-width: 72rem; margin: 0 auto; }
.n-section-head { margin-bottom: 4rem; }
.n-section-head h2 {
  font-family: var(--font-serif); font-size: clamp(2.2rem,4vw,3.5rem); font-weight: 700;
  color: var(--n-text); margin: 0 0 1rem; line-height: 1.1;
}
.n-section-head .eyebrow { display: flex; align-items: center; gap: 0.75rem; }
.n-section-head .eyebrow .line { height: 1px; width: 3rem; background: var(--n-gold); opacity: 0.5; flex-shrink: 0; }
.n-section-head .eyebrow span {
  color: var(--n-gold); font-size: 13px; letter-spacing: 5px; text-transform: uppercase;
  font-weight: 700; font-family: var(--font-lato);
}

/* ==============================
   FEATURES ("Tecnología que transforma vidas")
============================== */
.n-features-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .n-features-grid { grid-template-columns: 1fr 1fr; } }
.n-feature-card { border-radius: 1rem; padding: 2rem; background: var(--n-card); border: 1px solid rgba(200,169,107,0.12); }
.n-feature-card .icon { margin-bottom: 1.5rem; }
.n-feature-card h3 { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 600; color: var(--n-text); margin: 0 0 0.75rem; }
.n-feature-card p { font-family: var(--font-lato); font-size: 1rem; color: var(--n-dim); line-height: 1.7; margin: 0; }

/* ==============================
   VIDEO SHOWCASE ("NINA en acción")
============================== */
.n-video-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 1024px) { .n-video-grid { grid-template-columns: repeat(3,1fr); } }
.n-video-card { border-radius: 1rem; overflow: hidden; background: var(--n-card); border: 1px solid rgba(200,169,107,0.15); }
.n-video-card .clip-wrap { position: relative; overflow: hidden; height: 260px; }
.n-video-card video { width: 100%; height: 100%; object-fit: cover; display: block; }
.n-video-card .clip-fade {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 45%, rgba(13,20,32,0.92) 100%);
}
.n-video-card .clip-title { position: absolute; bottom: 1rem; left: 1.25rem; }
.n-video-card .clip-title h3 { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 700; color: var(--n-text); margin: 0; }
.n-video-card .clip-desc { padding: 1.25rem; }
.n-video-card .clip-desc p { font-family: var(--font-lato); font-size: 1rem; color: var(--n-dim); line-height: 1.7; margin: 0; }

/* ==============================
   ROBOT SHOWCASE ("Conoce a NINA")
============================== */
.n-robot-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .n-robot-grid { grid-template-columns: 1fr 1fr; } }

.n-robot-media { position: relative; }
.n-robot-frame {
  border-radius: 1rem; overflow: hidden; height: 520px;
  border: 1px solid rgba(200,169,107,0.22); box-shadow: 0 0 80px rgba(200,169,107,0.08);
}
.n-robot-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.n-robot-badge {
  position: absolute; top: 1rem; left: 1rem; border-radius: 999px; padding: 0.4rem 1rem;
  font-size: 12px; font-weight: 700; background: var(--n-gold); color: var(--n-bg);
  letter-spacing: 1.5px; text-transform: uppercase; font-family: var(--font-lato);
}
.n-robot-tabs { display: flex; gap: 0.5rem; margin-top: 1rem; }
.n-robot-tabs button {
  flex: 1; padding: 0.65rem; border-radius: 0.75rem; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; font-family: var(--font-lato);
  background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.5);
  border: 1px solid rgba(200,169,107,0.15); cursor: pointer; transition: all 0.2s ease;
}
.n-robot-tabs button.active { background: var(--n-gold); color: var(--n-bg); border-color: var(--n-gold); }

.n-robot-info { display: flex; flex-direction: column; gap: 1.75rem; }
.n-robot-info > p { font-family: var(--font-lato); font-size: 1.05rem; color: var(--n-dim); line-height: 1.8; margin: 0; }
.n-spec { display: flex; align-items: flex-start; gap: 1rem; padding-bottom: 1.25rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.n-spec .label {
  font-family: var(--font-lato); font-size: 12px; font-weight: 700; color: var(--n-gold);
  letter-spacing: 2px; text-transform: uppercase; min-width: 110px; padding-top: 2px; flex-shrink: 0;
}
.n-spec .val { font-family: var(--font-lato); font-size: 0.95rem; color: rgba(237,233,227,0.75); line-height: 1.5; }

/* ==============================
   MERCADO
============================== */
.n-market-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.25rem; margin-bottom: 4rem; }
@media (min-width: 1024px) { .n-market-stats { grid-template-columns: repeat(4,1fr); } }
.n-market-stat { border-radius: 1rem; padding: 1.75rem; text-align: center; background: var(--n-card); border: 1px solid rgba(200,169,107,0.12); }
.n-market-stat .num { font-family: var(--font-cinzel); font-size: clamp(1.5rem,2.8vw,2.2rem); font-weight: 700; color: var(--n-gold); margin-bottom: 0.6rem; }
.n-market-stat .label { font-family: var(--font-lato); font-size: 15px; color: var(--n-dim); line-height: 1.5; }

.n-market h3 { font-family: var(--font-serif); font-size: clamp(1.6rem,3vw,2.4rem); font-weight: 700; color: var(--n-text); margin: 0 0 1.75rem; }

.n-market-video {
  position: relative; border-radius: 1.25rem; overflow: hidden; margin-bottom: 1.75rem;
  border: 1px solid rgba(200,169,107,0.18); box-shadow: 0 0 60px rgba(0,0,0,0.5), 0 0 30px rgba(200,169,107,0.05);
}
.n-market-video video { width: 100%; display: block; aspect-ratio: 16/9; object-fit: cover; }
.n-market-video .badge {
  position: absolute; top: 1.25rem; right: 1.25rem;
  background: rgba(10,14,22,0.75); border: 1px solid rgba(200,169,107,0.35);
  border-radius: 100px; padding: 0.3rem 0.9rem;
  display: flex; align-items: center; gap: 0.45rem; backdrop-filter: blur(8px);
}
.n-market-video .badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--n-gold); box-shadow: 0 0 7px var(--n-gold); }
.n-market-video .badge span { font-family: var(--font-lato); font-size: 10px; font-weight: 700; letter-spacing: 2px; color: var(--n-gold); text-transform: uppercase; }

.n-reasons { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) { .n-reasons { grid-template-columns: 1fr 1fr; } }
.n-reason { display: flex; gap: 1.25rem; border-radius: 1rem; padding: 1.75rem; background: var(--n-card); border: 1px solid rgba(200,169,107,0.12); }
.n-reason .check { flex-shrink: 0; margin-top: 2px; }
.n-reason h4 { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 600; color: var(--n-text); margin: 0 0 0.6rem; }
.n-reason p { font-family: var(--font-lato); font-size: 1rem; color: var(--n-dim); line-height: 1.7; margin: 0; }

/* ==============================
   EQUIPO
============================== */
.n-team-head { text-align: center; margin-bottom: 5rem; }
.n-team-head .eyebrow { display: flex; align-items: center; justify-content: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.n-team-head .eyebrow .line { height: 1px; width: 3.5rem; background: var(--n-gold); opacity: 0.4; }
.n-team-head .eyebrow span { color: var(--n-gold); font-size: 12px; letter-spacing: 5px; text-transform: uppercase; font-weight: 700; font-family: var(--font-lato); }
.n-team-head h2 { font-family: var(--font-serif); font-size: clamp(2rem,4vw,3.2rem); font-weight: 700; color: var(--n-text); margin: 0 0 1.1rem; }
.n-team-head p { font-family: var(--font-lato); font-size: 1.05rem; color: var(--n-dim); max-width: 34rem; margin: 0 auto; line-height: 1.75; }

.n-team-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; max-width: 48rem; margin: 0 auto; }
@media (min-width: 768px) { .n-team-grid { grid-template-columns: 1fr 1fr; } }
.n-team-card {
  border-radius: 1.5rem; padding: 2.5rem; display: flex; flex-direction: column; align-items: center;
  text-align: center; position: relative; overflow: hidden;
  background: var(--n-card); border: 1px solid rgba(200,169,107,0.14); box-shadow: 0 4px 40px rgba(0,0,0,0.35);
}
.n-team-card::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 200px; height: 2px; background: linear-gradient(90deg, transparent, var(--n-gold), transparent); opacity: 0.6;
}
.n-team-avatar {
  width: 96px; height: 96px; border-radius: 50%; overflow: hidden;
  border: 2px solid rgba(200,169,107,0.5); box-shadow: 0 0 32px rgba(200,169,107,0.2);
  margin-bottom: 1.5rem; flex-shrink: 0;
}
.n-team-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.n-team-card h3 { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 700; color: var(--n-text); margin: 0 0 0.4rem; }
.n-team-card .role { font-family: var(--font-lato); font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--n-gold); margin: 0 0 1.25rem; opacity: 0.9; }
.n-team-card .divider { width: 40px; height: 1px; background: var(--n-gold); opacity: 0.25; margin-bottom: 1.25rem; }
.n-team-card .cred { font-family: var(--font-lato); font-size: 0.9rem; color: var(--n-dim); line-height: 1.7; font-style: italic; margin: 0; }

/* ==============================
   CTA FINAL (reemplaza el formulario falso — enlaza a contacto.html real)
============================== */
.n-cta { text-align: center; background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(30,58,95,0.3) 0%, var(--n-bg) 70%); }
.n-cta-inner { max-width: 40rem; margin: 0 auto; }
.n-cta .eyebrow { display: flex; align-items: center; justify-content: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.n-cta .eyebrow .line { height: 1px; width: 3rem; background: var(--n-gold); opacity: 0.5; }
.n-cta .eyebrow span { color: var(--n-gold); font-size: 13px; letter-spacing: 5px; text-transform: uppercase; font-weight: 700; font-family: var(--font-lato); }
.n-cta h2 { font-family: var(--font-serif); font-size: clamp(2rem,4vw,3.2rem); font-weight: 700; color: var(--n-text); margin: 0 0 1rem; line-height: 1.1; }
.n-cta p { font-family: var(--font-lato); font-size: 1.05rem; color: var(--n-dim); line-height: 1.7; margin: 0 0 2.5rem; }

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 900px) {
  .n-section { padding: 4rem 1.5rem; }
  .n-hero-body { padding: 0 1.5rem 4rem; }
}
