/* ============================================================
   styles.css — Omar Hernández Legal
   Paleta: Navy #1C2B4A | Dorado #C9982E | Crema #F7F4EF | Blanco #FFFFFF
   Tipografías: Cormorant Garamond (títulos) | Inter (cuerpo)
   ============================================================ */

/* ---------- Variables ---------- */
:root {
  --navy:  #1C2B4A;
  --gold:  #C9982E;
  --cream: #F7F4EF;
  --white: #FFFFFF;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --max-w: 1140px;
  --radius: 6px;
  --transition: 0.25s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- Container ---------- */
.container {
  width: min(var(--max-w), 100% - 2rem);
  margin-inline: auto;
}

/* ---------- Sección genérica ---------- */
.section { padding: 96px 0; }
.section--sm { padding: 64px 0; }

/* ---------- Tipografía ---------- */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
.section-subtitle {
  font-size: 1.05rem;
  margin-top: 0.5rem;
  opacity: 0.75;
}

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.btn:hover { transform: translateY(-2px); }

/* Primario: dorado sólido */
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: #b8871f;
  border-color: #b8871f;
}

/* Secundario: contorno crema */
.btn-secondary {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.btn-secondary:hover {
  background: var(--cream);
  color: var(--navy);
}

/* WhatsApp verde */
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.btn-whatsapp:hover { background: #1ebe59; border-color: #1ebe59; }

/* Navy sobre fondo claro */
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover { background: #16223a; border-color: #16223a; }

/* ---------- Navbar ---------- */
#navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  border-bottom: 1px solid rgba(201,152,46,0.2);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.nav-logo:hover { opacity: 0.85; }

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--cream);
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* Mobile nav */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 68px; left: 0;
    width: 100%;
    flex-direction: column;
    gap: 0;
    background: var(--navy);
    border-top: 1px solid rgba(201,152,46,0.2);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .nav-links.open { max-height: 400px; }
  .nav-links a {
    display: block;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  #navbar { position: relative; } /* mobile: no sticky para no bloquear */
  #navbar.scrolled { position: sticky; }
}

/* ---------- Hero ---------- */
#hero {
  background: var(--navy);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
/* Decoración geométrica sutil */
#hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 420px; height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(201,152,46,0.12);
  pointer-events: none;
}
#hero::after {
  content: '';
  position: absolute;
  bottom: -120px; right: 60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(201,152,46,0.08);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}
.hero-text { max-width: 600px; }
.hero-subtitle {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 500;
}
.hero-name {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.hero-role {
  font-size: 0.9rem;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-style: italic;
  color: rgba(247,244,239,0.72);
  margin-bottom: 2.5rem;
  line-height: 1.4;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Foto hero */
.hero-photo {
  flex-shrink: 0;
}
.photo-placeholder {
  width: 280px;
  height: 360px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: rgba(247,244,239,0.45);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
}
.photo-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,152,46,0.06), transparent);
}
.photo-placeholder svg {
  opacity: 0.3;
}
.photo-placeholder span {
  font-family: var(--font-body);
  text-align: center;
  padding: 0 1rem;
}

/* Hero responsive */
@media (max-width: 768px) {
  #hero {
    min-height: auto;
    padding: 60px 0 48px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .hero-ctas { justify-content: center; }
  .hero-photo { display: flex; justify-content: center; }
  .photo-placeholder { width: 220px; height: 280px; }
}

/* ---------- Sobre mí ---------- */
#sobre-mi {
  background: var(--cream);
}
.sobre-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}
.sobre-photo {
  border-radius: 8px;
  overflow: hidden;
}
.sobre-photo-box {
  height: 440px;
  background: rgba(28,43,74,0.08);
  border-radius: 8px;
  border: 1px solid rgba(28,43,74,0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: rgba(28,43,74,0.4);
  font-size: 0.85rem;
}
.sobre-text p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(28,43,74,0.85);
  margin-bottom: 1.25rem;
}
.sobre-text p:last-child { margin-bottom: 0; }

@media (max-width: 768px) {
  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .sobre-photo-box { height: 280px; }
}

/* ---------- Servicios ---------- */
#servicios {
  background: var(--white);
}
.servicios-header { margin-bottom: 3rem; }
.servicios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  border: 1px solid rgba(28,43,74,0.1);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  cursor: default;
}
.service-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(201,152,46,0.12);
  transform: translateY(-4px);
}
.service-icon {
  width: 44px; height: 44px;
  color: var(--gold);
  margin-bottom: 1.25rem;
  stroke-width: 1.5;
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--navy);
}
.service-card p {
  font-size: 0.93rem;
  color: rgba(28,43,74,0.7);
  line-height: 1.65;
}
.servicios-cta {
  text-align: center;
  margin-top: 3rem;
}

@media (max-width: 900px) {
  .servicios-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .servicios-grid { grid-template-columns: 1fr; }
}

/* ---------- Por qué yo ---------- */
#por-que-yo {
  background: var(--navy);
}
#por-que-yo .section-title { color: var(--cream); }
.diferencias-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}
.diferencia-item {
  text-align: center;
}
.diferencia-icon {
  width: 48px; height: 48px;
  color: var(--gold);
  margin: 0 auto 1.25rem;
  stroke-width: 1.5;
}
.diferencia-item h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.6rem;
}
.diferencia-item p {
  font-size: 0.95rem;
  color: rgba(247,244,239,0.65);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .diferencias-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ---------- Columnas recientes ---------- */
#columnas {
  background: var(--cream);
}
.columnas-header { margin-bottom: 2.5rem; }
.columnas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.article-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid rgba(28,43,74,0.08);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.article-card:hover {
  box-shadow: 0 8px 28px rgba(28,43,74,0.1);
  transform: translateY(-3px);
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: rgba(28,43,74,0.5);
}
.article-medium {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.8rem;
}
.article-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}
.article-card p {
  font-size: 0.9rem;
  color: rgba(28,43,74,0.65);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-card .btn {
  margin-top: auto;
  align-self: flex-start;
  padding: 0.55rem 1.2rem;
  font-size: 0.88rem;
}
.columnas-cta {
  text-align: center;
  margin-top: 2.5rem;
}

@media (max-width: 900px) {
  .columnas-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .columnas-grid { grid-template-columns: 1fr; }
}

/* ---------- Newsletter ---------- */
#newsletter {
  background: var(--navy);
}
.newsletter-inner {
  max-width: 600px;
  margin-inline: auto;
  text-align: center;
}
.newsletter-inner .section-title { color: var(--cream); }
.newsletter-inner .section-subtitle {
  color: rgba(247,244,239,0.7);
  margin-bottom: 2rem;
  font-size: 1rem;
}
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.newsletter-form input {
  width: 100%;
  padding: 0.85rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(247,244,239,0.2);
  background: rgba(247,244,239,0.07);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(247,244,239,0.45); }
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form .btn { width: 100%; justify-content: center; }
.newsletter-legal {
  font-size: 0.78rem;
  color: rgba(247,244,239,0.45);
  margin-top: 0.75rem;
}

/* ---------- Contacto ---------- */
#contacto {
  background: var(--cream);
}
.contacto-inner { text-align: center; }
.contacto-inner .section-title { color: var(--navy); }
.contacto-inner .section-subtitle {
  font-size: 1.05rem;
  color: rgba(28,43,74,0.65);
  margin-bottom: 2.5rem;
  margin-top: 0.4rem;
}
.contacto-opciones {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.contacto-opcion {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 2rem 1.5rem;
  background: var(--white);
  border: 1px solid rgba(28,43,74,0.1);
  border-radius: var(--radius);
  min-width: 180px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.contacto-opcion:hover {
  box-shadow: 0 6px 24px rgba(28,43,74,0.1);
  transform: translateY(-3px);
}
.contacto-opcion svg {
  width: 28px; height: 28px;
  stroke-width: 1.5;
}
.contacto-opcion.whatsapp svg { color: #25D366; }
.contacto-opcion.email svg { color: var(--gold); }
.contacto-opcion.linkedin svg { color: var(--navy); }
.contacto-opcion span {
  font-size: 0.88rem;
  color: rgba(28,43,74,0.7);
  font-weight: 500;
}
.contacto-frase {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--navy);
  margin-top: 2rem;
  opacity: 0.7;
}

/* ---------- Footer ---------- */
#footer {
  background: var(--navy);
  padding: 2.5rem 0;
  border-top: 1px solid rgba(201,152,46,0.15);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.82rem;
  color: rgba(247,244,239,0.5);
  line-height: 1.6;
}
.footer-links {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}
.footer-links a {
  color: rgba(247,244,239,0.5);
  font-size: 0.82rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(247,244,239,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(247,244,239,0.5);
  transition: color var(--transition), border-color var(--transition);
}
.footer-social a:hover { color: var(--gold); border-color: var(--gold); }
.footer-social svg { width: 16px; height: 16px; }

@media (max-width: 600px) {
  .footer-inner { flex-direction: column; text-align: center; }
}

/* ---------- WhatsApp flotante ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}
.whatsapp-float svg { width: 30px; height: 30px; }

/* ---------- Blog hero mini ---------- */
.page-hero {
  background: var(--navy);
  padding: 80px 0 64px;
  text-align: center;
}
.page-hero .section-title { color: var(--cream); margin-bottom: 0.5rem; }
.page-hero .section-subtitle {
  color: rgba(247,244,239,0.6);
  font-style: italic;
  font-size: 1.05rem;
}
.page-hero .hero-breadcrumb {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* ---------- Blog grid ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  margin-top: 2.5rem;
}
@media (max-width: 700px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* Blog card extendida */
.blog-card {
  background: var(--white);
  border: 1px solid rgba(28,43,74,0.09);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.blog-card:hover {
  box-shadow: 0 8px 32px rgba(28,43,74,0.1);
  transform: translateY(-3px);
}
.blog-card-body { padding: 1.75rem; display: flex; flex-direction: column; flex: 1; gap: 0.6rem; }
.blog-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}
.blog-card p {
  font-size: 0.92rem;
  color: rgba(28,43,74,0.65);
  line-height: 1.65;
}
.blog-card .btn {
  margin-top: auto;
  align-self: flex-start;
  padding: 0.55rem 1.2rem;
  font-size: 0.88rem;
}

/* ---------- Article page ---------- */
.article-hero {
  background: var(--navy);
  padding: 88px 0 72px;
  text-align: center;
}
.article-hero .section-title {
  color: var(--cream);
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 1rem;
}
.article-hero-meta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(247,244,239,0.55);
}
.article-hero-meta .category {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.article-cover {
  max-width: 760px;
  margin: -2rem auto 0;
  position: relative;
  z-index: 1;
  padding: 0 1rem;
}
.article-cover-box {
  height: 380px;
  background: rgba(28,43,74,0.06);
  border: 1px solid rgba(28,43,74,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(28,43,74,0.3);
  font-size: 0.85rem;
  gap: 0.5rem;
}

.article-body {
  max-width: 720px;
  margin: 3rem auto 0;
  padding: 0 1rem;
  font-size: 1.125rem;
  line-height: 1.85;
  color: rgba(28,43,74,0.85);
}
.article-body h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--navy);
  margin: 2.5rem 0 1rem;
}
.article-body h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
  margin: 2rem 0 0.75rem;
}
.article-body p { margin-bottom: 1.25rem; }
.article-body blockquote {
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: rgba(28,43,74,0.7);
}

.article-divider {
  max-width: 720px;
  margin: 3rem auto;
  padding: 0 1rem;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  border: none;
}

.article-cta-section {
  max-width: 720px;
  margin: 0 auto 4rem;
  padding: 0 1rem;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}
.article-cta-section h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.article-cta-section p {
  color: rgba(28,43,74,0.65);
  margin-bottom: 1.5rem;
}

.related-section {
  background: var(--white);
  padding: 64px 0;
}
.related-section .section-title { margin-bottom: 2rem; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .related-grid { grid-template-columns: 1fr; }
  .article-cover-box { height: 220px; }
  .article-body { font-size: 1rem; }
  .article-hero-meta { flex-direction: column; gap: 0.5rem; }
}

/* ---------- Animaciones fade-in ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Variantes de delay */
.fade-in.delay-1 { transition-delay: 0.1s; }
.fade-in.delay-2 { transition-delay: 0.2s; }
.fade-in.delay-3 { transition-delay: 0.3s; }
.fade-in.delay-4 { transition-delay: 0.4s; }
.fade-in.delay-5 { transition-delay: 0.5s; }

/* Siempre visible dentro del hero (no esperar scroll) */
#hero .fade-in {
  opacity: 0;
  animation: heroFade 0.8s ease forwards;
}
#hero .fade-in.delay-1 { animation-delay: 0.15s; }
#hero .fade-in.delay-2 { animation-delay: 0.3s; }
#hero .fade-in.delay-3 { animation-delay: 0.45s; }
#hero .fade-in.delay-4 { animation-delay: 0.6s; }
#hero .fade-in.delay-5 { animation-delay: 0.75s; }
@keyframes heroFade {
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Separador decorativo ---------- */
.gold-line {
  width: 56px;
  height: 2px;
  background: var(--gold);
  margin: 1rem 0 1.75rem;
}
.gold-line--center { margin-inline: auto; }

/* ---------- Utilidades ---------- */
.text-gold { color: var(--gold); }
.text-cream { color: var(--cream); }
.text-navy { color: var(--navy); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
