/*
  Hoja de estilos base de smt (sitio público).
  Tokens verificados en skill smt-diseno-referencia (paleta/tipografía/espaciado/componentes),
  con la paleta real de marca de SinfónicaMENTE (ver AppWeb/local/conocimiento/producto/paleta-de-marca.md)
  en vez de los valores de la referencia (que son de otra marca).
*/

:root {
  /* Paleta de marca real (verificada por pixel sobre el logo real) */
  --color-primary: #00A1AF;
  --color-primary-hover: #00838F;
  --color-primary-tint: #E3F6F8;

  --color-bg: #ffffff;
  --color-bg-alt: #F5F6FB;
  --color-surface: #ffffff;

  --color-heading: #13212A;
  --color-text: #3F4B54;
  --color-muted: #6B7680;
  --color-text-dim: #94A0A8;

  --color-border: #E3E7EA;
  --color-border-soft: #ECEFF1;
  --color-border-strong: #CBD3D8;

  --color-invert-bg: #0A1414;
  --color-invert-text: #ffffff;
  --color-invert-muted: #9AA8AA;

  --font-heading: "Geist", "Inter", -apple-system, "Segoe UI", sans-serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-2xl: clamp(1.75rem, 1.3rem + 1.8vw, 2.25rem);
  --fs-3xl: clamp(2.1rem, 1.5rem + 2.6vw, 3rem);
  --fs-4xl: clamp(2.6rem, 1.7rem + 3.8vw, 3.75rem);

  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-8: 3rem;
  --sp-10: 4rem;
  --sp-12: 5rem;
  --sp-16: 7rem;

  --radius-sm: 6px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(15, 17, 23, 0.06);
  --shadow-lg: 0 18px 50px rgba(15, 17, 23, 0.14);

  --dur: 0.2s;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  margin: 0;
  line-height: 1.15;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  display: block;
  margin-bottom: var(--sp-3);
}

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border-soft);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--sp-3);
  padding-bottom: var(--sp-3);
}

.nav-logo img {
  height: 34px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}

/* ===== Botón hamburguesa (solo visible en móvil, ver @media abajo) — encerrado en su
   propia caja con borde, como un botón real, no un ícono suelto ===== */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  width: 40px;
  height: 40px;
  background: var(--color-bg);
  border: 1px solid var(--color-border-strong);
  border-radius: 12px;
  padding: 0;
  cursor: pointer;
  transition: border-color var(--dur) var(--ease);
}

.nav-toggle:hover {
  border-color: var(--color-heading);
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 18px;
  background: var(--color-heading);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-links a {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--color-text);
  transition: color var(--dur) var(--ease);
}

.nav-links a:hover {
  color: var(--color-primary);
}

/* ===== Dropdown "Dependencia Digital" -> 3 líneas de intervención ===== */
.nav-item-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.nav-caret {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid var(--color-text-dim);
  border-bottom: 1.5px solid var(--color-text-dim);
  transform: rotate(45deg);
  transition: transform var(--dur) var(--ease);
}

.nav-dropdown-toggle[aria-expanded="true"] .nav-caret {
  transform: rotate(225deg);
}

.nav-dropdown {
  display: none;
  flex-direction: column;
  position: absolute;
  top: calc(100% + var(--sp-3));
  left: 0;
  min-width: 200px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--sp-2);
  z-index: 60;
}

.nav-item-dropdown.is-open .nav-dropdown {
  display: flex;
}

.nav-dropdown a {
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

.nav-dropdown a:hover {
  background: var(--color-bg-alt);
}

/* ===== Botones ===== */
.btn {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease),
    transform var(--dur) var(--ease), background var(--dur) var(--ease);
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--color-heading);
  border-color: var(--color-border-strong);
}

.btn-secondary:hover {
  border-color: var(--color-heading);
  transform: translateY(-1px);
}

.btn-sm {
  padding: 9px 18px;
  font-size: 13.5px;
}

/* ===== Placeholder de imagen (ver smt-diseno-referencia/references/imagenes.md) ===== */
.img-slot {
  background: var(--color-bg-alt);
  border: 1px dashed var(--color-border-strong);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--color-text-dim);
  font-family: var(--font-mono);
  font-size: 12px;
  text-align: center;
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: var(--sp-4);
}

.img-slot b {
  color: var(--color-muted);
  font-size: 13px;
}

.img-slot--photo {
  background: none;
  border: none;
  padding: 0;
}

.img-slot--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== Secciones ===== */
.sec {
  padding: var(--sp-16) 0;
}

.sec-alt {
  background: var(--color-bg-alt);
}

.sec-tight {
  padding: var(--sp-8) 0;
}

.sec-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--sp-10);
}

.sec-head h2 {
  font-size: var(--fs-3xl);
}

.sec-head p {
  color: var(--color-muted);
  font-size: var(--fs-md);
  margin-top: var(--sp-3);
}

/* ===== Hero ===== */
.hero {
  padding-top: var(--sp-12);
  padding-bottom: var(--sp-10);
  text-align: center;
}

.hero-inner {
  max-width: 780px;
  margin: 0 auto;
}

.hero h1 {
  font-size: var(--fs-4xl);
  letter-spacing: -0.01em;
}

.hero .lead {
  font-size: var(--fs-lg);
  color: var(--color-muted);
  margin: var(--sp-5) 0 var(--sp-8);
}

.hero-actions {
  display: flex;
  gap: var(--sp-4);
  justify-content: center;
  flex-wrap: wrap;
}

.hero-meta {
  margin-top: var(--sp-5);
  font-size: var(--fs-xs);
  color: var(--color-text-dim);
}

.hero-img {
  max-width: 1000px;
  margin: var(--sp-10) auto 0;
  aspect-ratio: 16 / 8;
}

/* ===== Stat tile ===== */
.stat-band {
  padding-top: var(--sp-10);
  padding-bottom: var(--sp-10);
}

.stat-card {
  max-width: 780px;
  margin: 0 auto;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  padding: var(--sp-8);
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: var(--fs-4xl);
  color: var(--color-primary);
  font-weight: 700;
}

.stat-caption {
  font-size: var(--fs-md);
  color: var(--color-text);
  margin-top: var(--sp-3);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.stat-source {
  font-size: var(--fs-xs);
  color: var(--color-text-dim);
  margin-top: var(--sp-4);
}

.stat-chart {
  max-width: 380px;
  margin: var(--sp-6) auto 0;
  text-align: left;
}

.stat-chart-row {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.stat-chart-row + .stat-chart-row {
  margin-top: var(--sp-3);
}

.stat-chart-label {
  flex: 0 0 68px;
  font-size: var(--fs-sm);
  color: var(--color-text);
}

.stat-chart-track {
  flex: 1 1 auto;
  height: 12px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.stat-chart-bar {
  height: 100%;
  border-radius: 0 4px 4px 0;
}

.stat-chart-bar--accent {
  background: var(--color-primary);
}

.stat-chart-bar--muted {
  background: var(--color-border-strong);
}

.stat-chart-value {
  flex: 0 0 40px;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-text-dim);
  text-align: right;
}

.stat-chart-value--accent {
  color: var(--color-primary);
}

/* ===== Grid de 3 líneas de intervención ===== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--sp-6);
  transition: box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease),
    transform var(--dur) var(--ease);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--color-border-strong);
  transform: translateY(-2px);
}

a.card {
  display: block;
}

.card-flat:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--color-border);
  transform: none;
}

.card-mark {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--color-primary-tint);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  margin-bottom: var(--sp-5);
}

.card h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-2);
}

.card p {
  color: var(--color-muted);
  font-size: var(--fs-sm);
  margin: 0 0 var(--sp-4);
}

.card-link {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-primary);
}

.card-link:hover {
  color: var(--color-primary-hover);
}

.card-link-sub {
  display: block;
  font-size: var(--fs-xs);
  margin-top: var(--sp-2);
}

/* ===== Split row (Quiénes somos) ===== */
.split-row {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: var(--sp-10);
  align-items: center;
}

.split-row .img-slot {
  aspect-ratio: 4 / 5;
}

.split-copy h2 {
  font-size: var(--fs-3xl);
  margin-bottom: var(--sp-4);
}

.split-copy p {
  color: var(--color-muted);
  font-size: var(--fs-md);
  margin-bottom: var(--sp-5);
}

/* ===== Masthead (páginas institucionales) ===== */
.masthead {
  padding-top: var(--sp-12);
  padding-bottom: var(--sp-10);
  text-align: center;
}

.masthead-inner {
  max-width: 680px;
  margin: 0 auto;
}

.masthead h1 {
  font-size: var(--fs-4xl);
  letter-spacing: -0.01em;
}

.masthead .lead {
  font-size: var(--fs-lg);
  color: var(--color-muted);
  margin-top: var(--sp-5);
}

/* ===== Story split (etiqueta izquierda + prosa larga derecha, patrón "About") ===== */
.story-split {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: var(--sp-10);
  align-items: start;
}

.story-split .story-label h2 {
  font-size: var(--fs-2xl);
}

.story-split .story-body p {
  font-size: var(--fs-md);
  color: var(--color-text);
  margin: 0 0 var(--sp-4);
  max-width: 640px;
}

.story-split .story-body p:last-child {
  margin-bottom: 0;
}

/* ===== Fundadores: filas alternadas tipo zig-zag ===== */
.founder-row {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: var(--sp-10);
  align-items: center;
  margin-bottom: var(--sp-10);
}

.founder-row:last-child {
  margin-bottom: 0;
}

.founder-row.reverse {
  grid-template-columns: 1fr 320px;
}

.founder-row.reverse .founder-photo {
  order: 2;
}

.founder-photo.img-slot {
  aspect-ratio: 4 / 5;
}

.founder-name {
  font-size: var(--fs-xl);
  font-family: var(--font-heading);
  color: var(--color-heading);
  margin-bottom: var(--sp-1);
}

.founder-role {
  font-size: var(--fs-sm);
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: var(--sp-3);
}

.founder-bio {
  color: var(--color-muted);
  font-size: var(--fs-md);
}

/* ===== Contenido genérico dentro de .founder-row/.reverse (mismo grid, reusado para
   filas temáticas imagen+texto que no son perfiles de persona) ===== */
.media-photo.img-slot {
  aspect-ratio: 4 / 3;
}

.media-copy h3 {
  font-size: var(--fs-xl);
  margin-bottom: var(--sp-3);
}

.media-copy p {
  color: var(--color-muted);
  font-size: var(--fs-md);
  margin: 0 0 var(--sp-2);
}

.media-copy .source-note {
  font-size: var(--fs-xs);
  color: var(--color-text-dim);
}

/* ===== Fila de sellos de enfoque ===== */
.seal-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--sp-8);
}

.seal-row img {
  width: 96px;
  height: 96px;
}

/* ===== Franja de credibilidad institucional ===== */
.credential-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-6) var(--sp-8);
}

.credential-items {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-8);
}

.credential-item {
  font-size: var(--fs-sm);
  color: var(--color-text);
}

.credential-item b {
  display: block;
  font-family: var(--font-heading);
  color: var(--color-heading);
  font-size: var(--fs-base);
}

.media-copy .data-card {
  max-width: none;
  margin: var(--sp-4) 0 0;
}

/* ===== Tarjeta de datos (reusa .credential-item apilado en vertical dentro de un .card) ===== */
.data-card {
  max-width: 480px;
  margin: 0 auto;
}

.data-card .credential-items {
  flex-direction: column;
  gap: var(--sp-4);
}

.data-card .credential-item b {
  font-size: var(--fs-lg);
}

.data-card-cta {
  text-align: center;
  margin-top: var(--sp-6);
}

.data-card-note {
  font-size: var(--fs-xs);
  color: var(--color-text-dim);
  margin-top: var(--sp-5);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--color-border-soft);
}

/* ===== Bloque de texto centrado angosto (ej. beneficio tributario) ===== */
.text-block {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.text-block p {
  font-size: var(--fs-md);
  color: var(--color-text);
  margin: 0 0 var(--sp-3);
}

.text-block .fine-print {
  font-size: var(--fs-xs);
  color: var(--color-text-dim);
}

/* ===== Tutorial paso a paso (ej. cómo donar por PSE) — contenedor angosto, lectura larga ===== */
.tutorial {
  max-width: 640px;
  margin: 0 auto;
}

.tutorial-intro {
  color: var(--color-muted);
  font-size: var(--fs-md);
  margin-bottom: var(--sp-10);
}

.step {
  display: flex;
  gap: var(--sp-5);
  padding-bottom: var(--sp-8);
  margin-bottom: var(--sp-8);
  border-bottom: 1px solid var(--color-border-soft);
}

.step:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.step-num {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-primary-tint);
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-body h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-3);
}

.step-body p {
  color: var(--color-text);
  font-size: var(--fs-base);
  margin: 0 0 var(--sp-4);
}

.step-body img {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  margin-bottom: var(--sp-4);
  max-width: 100%;
}

.step-body table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--sp-4);
  font-size: var(--fs-sm);
}

.step-body table td {
  padding: var(--sp-2) var(--sp-3);
  border-bottom: 1px solid var(--color-border-soft);
}

.step-body table td:first-child {
  color: var(--color-muted);
}

.step-body table td:last-child {
  font-weight: 600;
  color: var(--color-heading);
  text-align: right;
}

@media (max-width: 640px) {
  .step {
    flex-direction: column;
  }
}

@media (max-width: 860px) {
  .story-split,
  .founder-row,
  .founder-row.reverse {
    grid-template-columns: 1fr;
  }

  .founder-row.reverse .founder-photo {
    order: 0;
  }
}

/* ===== CTA band ===== */
.cta-band {
  background: var(--color-invert-bg);
  color: var(--color-invert-text);
  border-radius: var(--radius-xl);
  padding: var(--sp-10) var(--sp-8);
  text-align: center;
  max-width: 1180px;
  margin: 0 auto;
}

.cta-band h2 {
  color: #fff;
  font-size: var(--fs-3xl);
}

.cta-band p {
  color: var(--color-invert-muted);
  font-size: var(--fs-md);
  margin: var(--sp-3) 0 var(--sp-6);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-band .btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.cta-band .btn-secondary:hover {
  border-color: #fff;
}

/* ===== Footer ===== */
.footer {
  background: #0a1414;
  color: #9aa8aa;
  padding-top: var(--sp-12);
  padding-bottom: var(--sp-6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--sp-8);
  padding-bottom: var(--sp-10);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-icon {
  height: 56px;
  width: 56px;
  margin-bottom: var(--sp-4);
}

.footer-brand p {
  font-size: var(--fs-sm);
  max-width: 260px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  color: #fff;
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-4);
  font-weight: 600;
}

.footer-col a {
  display: block;
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-3);
  transition: color var(--dur) var(--ease);
}

.footer-col a:hover {
  color: #fff;
}

.footer-handle {
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-4);
}

.social-icons {
  display: flex;
  gap: var(--sp-4);
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9aa8aa;
  transition: color var(--dur) var(--ease);
}

.social-icons svg {
  width: 20px;
  height: 20px;
}

.social-icons a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--sp-6);
  font-size: var(--fs-xs);
  flex-wrap: wrap;
  gap: var(--sp-3);
}

@media (max-width: 860px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

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

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

  .nav-toggle {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border-soft);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--dur) var(--ease);
  }

  .nav-links.is-open {
    max-height: 400px;
  }

  .nav-links a {
    padding: var(--sp-4) var(--sp-6);
    border-top: 1px solid var(--color-border-soft);
  }

  .nav-links a.nav-links-cta {
    color: var(--color-primary);
    font-weight: 600;
  }

  .nav-item-dropdown {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-item-dropdown > a {
    padding: var(--sp-4) var(--sp-6);
    border-top: 1px solid var(--color-border-soft);
  }

  .nav-dropdown-toggle {
    position: absolute;
    top: 0;
    right: 0;
    width: 52px;
    height: 52px;
  }

  .nav-dropdown {
    position: static;
    display: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
    background: var(--color-bg-alt);
    padding: 0;
  }

  .nav-item-dropdown.is-open .nav-dropdown {
    display: flex;
  }

  .nav-dropdown a {
    padding: var(--sp-3) var(--sp-6) var(--sp-3) var(--sp-8);
    border-top: 1px solid var(--color-border-soft);
    border-radius: 0;
  }
}

/* .nav-links-cta solo se muestra en el menú móvil desplegable — en escritorio el botón
   "Donar ahora" ya vive aparte en .nav-cta, no hace falta duplicarlo visualmente */
.nav-links-cta {
  display: none;
}

@media (max-width: 860px) {
  .nav-links-cta {
    display: block;
  }
}
