/* ============================================================
   PORTAL LA NACION DE URANIA - Hoja de estilos v2
   Replica EXACTA del header/menu de los programas (ARGO base)
   Paleta: dorado #d4af37 sobre azul noche #0a0a2e
   Menu: marron calido (44,24,16) -> (74,44,32)
   Tipografias: Cinzel (titulos) + Cormorant Garamond (cuerpo)

   PUNTOS DE CRECIMIENTO MODULAR (buscar "MODULAR:" en este archivo):
   - MODULAR: agregar items al menu  -> .menu-bar en HTML
   - MODULAR: agregar nucleos al portal -> .portal-grid en HTML
   - MODULAR: agregar paginas nuevas -> copiar template-pagina.html
   ============================================================ */

/* ---------- 1. Variables CSS (mismas que ARGO) ---------- */
:root {
  --gold:       #d4af37;
  --gold-light: #f4d03f;
  --gold-dim:   #b8952a;
  --gold-deep:  #8a6e1f;

  --bg-deep:    #0a0a2e;
  --bg-mid:     #16213e;
  --bg-accent:  #0f3460;
  --bg-warm:    #2c1810;
  --bg-warm-2:  #4a2c20;

  --cream:      #e8dcc6;
  --cream-dim:  #b8a082;
  --cream-light:#f5ecd7;

  --border-gold:rgba(212, 175, 55, 0.4);
  --shadow-deep:0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-glow:0 0 20px rgba(212, 175, 55, 0.15);

  /* Mismas medidas que ARGO */
  --header-h:   100px;
  --menu-h:     48px;

  --container:  1240px;
  --radius:     10px;

  --font-display: 'Cinzel', 'Times New Roman', serif;
  --font-body:    'Cormorant Garamond', Georgia, serif;
  --font-ui:      'Raleway', 'Segoe UI', sans-serif;
}

/* ---------- 2. Reset y body ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--cream);
  background:
    radial-gradient(ellipse at top, var(--bg-accent) 0%, transparent 60%),
    radial-gradient(ellipse at bottom, var(--bg-mid) 0%, transparent 70%),
    var(--bg-deep);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--gold-light); }

/* ---------- 3. Tipografia (medidas reales de ARGO) ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
/* Tamanos ajustados a los programas (no exageradamente grandes) */
h1 { font-size: 1.8rem; }       /* antes 3.2rem */
h2 { font-size: 1.4rem; }       /* antes 2.4rem */
h3 { font-size: 1.15rem; }      /* antes 1.6rem */
h4 { font-size: 1rem; }
p  { margin-bottom: 1em; }

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 0.6em;
}

/* ============================================================
   HEADER - REPLICA LITERAL DE ARGO
   ============================================================ */
.header-top {
  height: var(--header-h);
  min-height: var(--header-h);
  background: linear-gradient(135deg,
    rgba(10, 10, 46, 0.97) 0%,
    rgba(22, 33, 62, 0.97) 100%);
  border-bottom: 2px solid var(--gold);
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Izquierda: logo + 3 lineas (igual ARGO) */
.logo-container {
  flex: 0 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: clamp(4px, 1vw, 14px);
}
.logo-img {
  height: clamp(40px, 5vw, 64px);
  width: auto;
  /* Logo PNG con transparencia (RGBA del set ARGO). Drop-shadow para integrarlo al fondo. */
  filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.35));
}
.logo-text-stack {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.logo-text {
  font-family: var(--font-display);
  font-size: clamp(0.75rem, 1.4vw, 1.35rem);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: clamp(0px, 0.05vw, 1px);
  white-space: nowrap;
  line-height: 1.2;
}
.logo-subtitle {
  font-family: var(--font-display);
  font-size: clamp(0.55rem, 0.8vw, 0.75rem);
  font-weight: 400;
  color: var(--cream-dim);
  letter-spacing: clamp(0px, 0.1vw, 2px);
  white-space: nowrap;
  line-height: 1.4;
}

/* Centro: titulo del sitio (como "ARGO" en el programa) */
.header-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  pointer-events: none;
  min-width: 0;
  overflow: hidden;
}
.header-center__title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: clamp(2px, 0.3vw, 6px);
  text-shadow: 0 0 24px rgba(212, 175, 55, 0.4);
  text-transform: uppercase;
  white-space: nowrap;
}
.header-center__subtitle {
  font-family: var(--font-display);
  font-size: clamp(0.55rem, 0.7vw, 0.75rem);
  color: var(--cream-dim);
  letter-spacing: 3px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Derecha: botones (igual ARGO) */
.header-controls {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.header-btn {
  padding: 8px 16px;
  border-radius: 8px;
  border: 1.5px solid rgba(212, 175, 55, 0.5);
  background: rgba(44, 24, 16, 0.8);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 0.8rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.header-btn:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--gold);
  transform: translateY(-2px);
  color: var(--gold-light);
}
.btn-license, .btn-api, .btn-acceso {
  background: rgba(74, 20, 140, 0.5);
  border-color: rgba(123, 31, 162, 0.6);
}
.btn-license:hover, .btn-api:hover, .btn-acceso:hover {
  background: rgba(123, 31, 162, 0.4);
}

/* ============================================================
   MENU PRINCIPAL - REPLICA LITERAL DE ARGO
   MODULAR: para agregar item, sumar <div class="menu-item">
   ============================================================ */
.menu-bar {
  height: var(--menu-h);
  min-height: var(--menu-h);
  background: linear-gradient(135deg,
    rgba(44, 24, 16, 0.97) 0%,
    rgba(74, 44, 32, 0.97) 100%);
  border-bottom: 1px solid var(--gold-dim);
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  z-index: 999;
  position: sticky;
  top: var(--header-h);
}
.menu-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  gap: 8px;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border-right: 1px solid rgba(212, 175, 55, 0.2);
  white-space: nowrap;
  text-decoration: none;
}
.menu-item:last-child { border-right: none; }
.menu-item:hover {
  background: linear-gradient(135deg,
    rgba(212, 175, 55, 0.15) 0%,
    rgba(244, 208, 63, 0.1) 100%);
  color: var(--gold-light);
}
.menu-item.active {
  background: linear-gradient(135deg,
    rgba(212, 175, 55, 0.2) 0%,
    rgba(244, 208, 63, 0.15) 100%);
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
}
.tab-sym {
  font-size: 1rem;
  display: inline-block;
}
@media (max-width: 1100px) {
  .menu-item { padding: 0 12px; font-size: 0.72rem; }
  .tab-sym { display: none; }
}

/* ============================================================
   CONTENEDOR PRINCIPAL
   ============================================================ */
.main {
  max-width: var(--container);
  margin: 0 auto;
  padding: 30px 24px 60px;
  position: relative;
  z-index: 1;
}
.page-title {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-gold);
}
.page-title h1 {
  font-size: 1.8rem;
  letter-spacing: 0.15em;
}
.page-title p {
  color: var(--cream-dim);
  font-style: italic;
  font-size: 1rem;
  margin-top: 6px;
  margin-bottom: 0;
}

/* ============================================================
   HOME - PORTAL DE ACCESO CENTRAL
   No es landing scrolleable, es UNA pantalla con los nucleos
   MODULAR: para agregar nucleos, sumar <a class="portal-card">
   ============================================================ */
.portal {
  text-align: center;
  padding: 30px 0 20px;
}
.portal__intro {
  max-width: 720px;
  margin: 0 auto 40px;
  color: var(--cream);
  font-size: 1.1rem;
  font-style: italic;
}
.portal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 30px;
}
@media (max-width: 980px) { .portal-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .portal-grid { grid-template-columns: 1fr; } }

.portal-card {
  background: linear-gradient(135deg,
    rgba(15, 52, 96, 0.45),
    rgba(22, 33, 62, 0.65));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  min-height: 220px;
}
.portal-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-deep), var(--shadow-glow);
  background: linear-gradient(135deg,
    rgba(15, 52, 96, 0.6),
    rgba(22, 33, 62, 0.8));
}
.portal-card__symbol {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
/* Imagen decorativa de cada nucleo (estilo site123) */
.portal-card__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: 180px;
  object-fit: contain;
  margin: 0 auto 14px;
  border-radius: 8px;
  border: 1px solid rgba(212,175,55,0.25);
  background: linear-gradient(135deg, rgba(15,52,96,0.3), rgba(22,33,62,0.5));
  transition: all 0.3s ease;
}
.portal-card:hover .portal-card__img {
  border-color: var(--gold);
  box-shadow: 0 0 16px rgba(212,175,55,0.3);
}
.portal-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 8px;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.portal-card__desc {
  font-size: 0.95rem;
  color: var(--cream-dim);
  margin-bottom: 12px;
  flex-grow: 1;
  line-height: 1.5;
}
.portal-card__cta {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: auto;
}
.portal-card__cta::after {
  content: ' \2192';
  transition: transform 0.2s ease;
  display: inline-block;
}
.portal-card:hover .portal-card__cta::after {
  transform: translateX(4px);
}

/* Banner inferior en la home (acceso rapido + datos) */
.portal-footer {
  margin-top: 40px;
  padding: 20px;
  background: rgba(44, 24, 16, 0.3);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius);
  text-align: center;
}
.portal-footer p {
  margin: 0;
  color: var(--cream-dim);
  font-size: 0.95rem;
}

/* ============================================================
   PAGINAS INTERNAS - Contenido propio (no landing)
   ============================================================ */
.content-block {
  background: rgba(22, 33, 62, 0.4);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius);
  padding: 30px;
  margin-bottom: 24px;
}
.content-block h2 {
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-gold);
}
.content-block h3 { margin: 18px 0 10px; }
.content-block ul { padding-left: 24px; margin-bottom: 1em; }
.content-block ul li { margin-bottom: 6px; }

/* Layout 2 columnas para paginas con sidebar */
.two-col {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}
@media (max-width: 880px) { .two-col { grid-template-columns: 1fr; } }

.sidebar-box {
  background: linear-gradient(135deg,
    rgba(15, 52, 96, 0.3),
    rgba(22, 33, 62, 0.5));
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 20px;
}
.sidebar-box h4 {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

/* Placeholder de imagenes (para cuando se carguen las reales) */
.img-placeholder {
  background: linear-gradient(135deg, rgba(15, 52, 96, 0.5), rgba(22, 33, 62, 0.7));
  border: 1px dashed var(--border-gold);
  border-radius: var(--radius);
  padding: 60px 20px;
  text-align: center;
  color: var(--cream-dim);
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 20px 0;
}
.img-placeholder::before {
  content: '\1F5BC';
  display: block;
  font-size: 2rem;
  margin-bottom: 10px;
  opacity: 0.6;
}

/* ============================================================
   FICHA DE SOFTWARE
   ============================================================ */
.product {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: flex-start;
}
@media (max-width: 880px) { .product { grid-template-columns: 1fr; } }

.product__media {
  background: linear-gradient(135deg, var(--bg-accent), var(--bg-mid));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 25px;
  text-align: center;
  box-shadow: var(--shadow-deep);
}
.product__media img {
  margin: 0 auto;
  max-width: 200px;
  filter: drop-shadow(0 0 14px rgba(212, 175, 55, 0.3));
}
.product__badge {
  display: inline-block;
  margin-top: 14px;
  padding: 5px 12px;
  background: var(--gold);
  color: var(--bg-deep);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 20px;
}
.product__info h1 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  letter-spacing: 0.15em;
}
.product__info .tagline {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 20px;
}
.product__price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  margin-bottom: 20px;
}
.product__price-amount {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 700;
}
.product__price-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.btn-buy {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg-deep) !important;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  margin-right: 8px;
  text-decoration: none;
}
.btn-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}
.btn-secondary {
  display: inline-block;
  padding: 12px 24px;
  border: 2px solid var(--gold);
  color: var(--gold) !important;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 25px;
  background: transparent;
  transition: all 0.25s ease;
  text-decoration: none;
}
.btn-secondary:hover { background: rgba(212, 175, 55, 0.1); }

.features {
  margin: 30px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (max-width: 560px) { .features { grid-template-columns: 1fr; } }

.feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.feature__icon {
  flex: 0 0 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
}
.feature__text { font-size: 0.95rem; color: var(--cream); }
.feature__text strong {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 2px;
}

/* ============================================================
   ARTICULO DE BLOG
   ============================================================ */
.article { max-width: 760px; margin: 0 auto; }
.article__header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-gold);
}
.article__category {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.article__header h1 {
  font-size: 2rem;
  margin-bottom: 14px;
  line-height: 1.25;
}
.article__meta {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--cream-dim);
  letter-spacing: 0.05em;
}
.article__meta span + span { margin-left: 14px; }

.article__body { font-size: 1.05rem; line-height: 1.75; }
.article__body p { margin-bottom: 1.2em; }
.article__body p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  float: left;
  line-height: 0.9;
  margin: 6px 10px 0 0;
}
.article__body h2 {
  font-size: 1.4rem;
  margin: 1.6em 0 0.6em;
}
.article__body h3 {
  font-size: 1.15rem;
  margin: 1.4em 0 0.5em;
  color: var(--cream-light);
}
.article__body blockquote {
  border-left: 3px solid var(--gold);
  padding: 12px 20px;
  margin: 1.6em 0;
  font-style: italic;
  color: var(--cream-light);
  background: rgba(212, 175, 55, 0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1rem;
}

.ad-slot {
  margin: 30px auto;
  padding: 18px;
  background: rgba(22, 33, 62, 0.5);
  border: 1px dashed var(--border-gold);
  border-radius: var(--radius);
  text-align: center;
  color: var(--cream-dim);
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  max-width: 728px;
}
.ad-slot strong { display: block; color: var(--gold); margin-bottom: 6px; }

.share {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 40px 0 20px;
  padding-top: 24px;
  border-top: 1px solid var(--border-gold);
}
.share span {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-dim);
  align-self: center;
  margin-right: 6px;
}
.share a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all 0.25s ease;
}
.share a:hover {
  background: var(--gold);
  color: var(--bg-deep);
  border-color: var(--gold);
}

/* ============================================================
   LISTADO DE ARTICULOS (pagina Contenidos)
   ============================================================ */
.article-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.article-list__item {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 20px;
  padding: 18px;
  background: rgba(22, 33, 62, 0.4);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius);
  transition: all 0.25s ease;
  text-decoration: none;
  color: inherit;
}
@media (max-width: 660px) { .article-list__item { grid-template-columns: 1fr; } }
.article-list__item:hover {
  border-color: var(--gold);
  background: rgba(22, 33, 62, 0.55);
}
.article-list__thumb {
  background: linear-gradient(135deg, var(--bg-accent), var(--bg-mid));
  border-radius: 6px;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-dim);
  font-size: 2rem;
}
.article-list__content h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.article-list__content p {
  font-size: 0.95rem;
  color: var(--cream-dim);
  margin-bottom: 8px;
}
.article-list__meta {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--cream-dim);
  letter-spacing: 0.05em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-gold);
  padding: 30px 0 20px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}
.site-footer .container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.site-footer p {
  font-size: 0.85rem;
  color: var(--cream-dim);
  margin: 0;
}
.site-footer a { color: var(--cream-dim); }
.site-footer a:hover { color: var(--gold); }

/* ============================================================
   NEWSLETTER COMPACTO (en footer de paginas internas)
   ============================================================ */
.newsletter-inline {
  background: rgba(15, 52, 96, 0.3);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 30px;
  text-align: center;
}
.newsletter-inline h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  letter-spacing: 0.1em;
}
.newsletter-inline p {
  font-size: 0.9rem;
  color: var(--cream-dim);
  margin-bottom: 14px;
}
.newsletter-form {
  display: flex;
  gap: 8px;
  max-width: 460px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter-form input {
  flex: 1 1 220px;
  padding: 10px 14px;
  border: 1px solid var(--border-gold);
  border-radius: 25px;
  background: rgba(10, 10, 46, 0.6);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.newsletter-form input::placeholder { color: var(--cream-dim); }
.newsletter-form input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.3);
}
.newsletter-form button {
  padding: 10px 22px;
  border: none;
  border-radius: 25px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg-deep);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
}
.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
}

/* ============================================================
   BREADCRUMB (migas de pan en paginas internas)
   ============================================================ */
.breadcrumb {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--cream-dim);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.breadcrumb a { color: var(--cream-dim); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb__sep { margin: 0 8px; opacity: 0.5; }
