/* =====================================================
   LANDING.CSS — Los Ángeles Agencias Funerarias
   Tema: Mármol blanco + Dorado elegante
   ===================================================== */

/* === VARIABLES === */
:root {
  --gold:         #C9A84C;
  --gold-dark:    #8B6914;
  --gold-light:   #E8D5A3;
  --gold-mid:     #D4AF37;
  --gold-grad:    linear-gradient(135deg, #E8D5A3 0%, #D4AF37 30%, #C9A84C 60%, #8B6914 100%);
  --marble-bg:    #F7F4EF;
  --marble-alt:   #F0EDE5;
  --marble-dark:  #1C1610;
  --marble-mid:   #2D2010;
  --text-dark:    #1A1208;
  --text-mid:     #4A3820;
  --text-light:   #8B7A5E;
  --white:        #FFFFFF;
  --shadow-gold:  0 4px 24px rgba(201,168,76,0.18);
  --shadow-deep:  0 8px 40px rgba(0,0,0,0.14);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Raleway', 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background: var(--marble-bg);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* === TEXTURA MÁRMOL (CSS puro) === */
.marble-texture {
  background-color: #F9F8F6;
  background-image:
    /* Vena principal diagonal oscura */
    linear-gradient(112deg,
      transparent 28%,
      rgba(160,155,148,0.18) 28.5%, rgba(140,135,128,0.22) 29.2%, rgba(160,155,148,0.14) 30%, rgba(180,175,168,0.08) 31%,
      transparent 32.5%
    ),
    /* Vena secundaria paralela */
    linear-gradient(112deg,
      transparent 38%,
      rgba(170,165,158,0.10) 38.8%, rgba(150,145,138,0.14) 39.5%, rgba(170,165,158,0.08) 40.2%,
      transparent 41.5%
    ),
    /* Vena corta superior izquierda */
    linear-gradient(85deg,
      transparent 55%,
      rgba(155,150,143,0.12) 56%, rgba(135,130,123,0.16) 56.8%, rgba(155,150,143,0.09) 57.6%,
      transparent 59%
    ),
    /* Vena delgada inferior */
    linear-gradient(125deg,
      transparent 62%,
      rgba(165,160,153,0.09) 63%, rgba(145,140,133,0.13) 63.8%, rgba(165,160,153,0.07) 64.5%,
      transparent 66%
    ),
    /* Mancha nube superior derecha */
    radial-gradient(ellipse at 78% 15%, rgba(200,197,192,0.22) 0%, rgba(185,182,176,0.10) 30%, transparent 55%),
    /* Mancha nube inferior izquierda */
    radial-gradient(ellipse at 18% 80%, rgba(195,192,186,0.20) 0%, rgba(180,177,171,0.09) 28%, transparent 50%),
    /* Mancha nube centro */
    radial-gradient(ellipse at 50% 45%, rgba(210,208,204,0.12) 0%, transparent 45%),
    /* Vena muy fina cruzada */
    linear-gradient(60deg,
      transparent 70%,
      rgba(160,155,148,0.07) 70.5%, rgba(145,140,133,0.10) 71%, rgba(160,155,148,0.06) 71.5%,
      transparent 73%
    );
}

/* === NAVBAR === */
.landing-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 82px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(247,244,239,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,168,76,0.22);
  overflow: visible;
  transition: box-shadow 0.3s ease;
}
.landing-nav.scrolled {
  padding: 12px 48px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.09);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-logo img {
  height: 110px;
  width: auto;
  mix-blend-mode: multiply;
  position: relative;
  z-index: 1001;
}
.nav-logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  line-height: 1.4;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links .btn-nav {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff !important;
  padding: 11px 26px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  transition: all 0.3s;
  box-shadow: var(--shadow-gold);
}
.nav-links .btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201,168,76,0.35);
  color: #fff !important;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}
/* El hero hereda .marble-texture, no necesita fondo propio */
.hero::after {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(201,168,76,0.28);
  pointer-events: none;
}

.hero-logo {
  width: 160px;
  height: auto;
  margin-bottom: 32px;
  position: relative;
  mix-blend-mode: multiply; /* integra el PNG sobre el fondo mármol */
  filter: drop-shadow(0 4px 24px rgba(201,168,76,0.22));
  animation: fadeDown 0.8s ease both;
}
.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(56px, 9vw, 96px);
  font-weight: 700;
  letter-spacing: 8px;
  text-transform: uppercase;
  line-height: 1.0;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #E8D5A3 0%, #D4AF37 28%, #C9A84C 55%, #8B6914 78%, #C9A84C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--gold); /* fallback */
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero-de {
  font-family: 'Cinzel', 'Trajan Pro', Georgia, serif;
  font-size: clamp(22px, 3.2vw, 42px);
  font-weight: 600;
  letter-spacing: 4px;
  background: linear-gradient(135deg, #E8D5A3 0%, #D4AF37 35%, #C9A84C 60%, #8B6914 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--gold);
  margin-bottom: 14px;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 18px auto;
  animation: fadeUp 0.8s 0.3s ease both;
}
.hero-divider::before,
.hero-divider::after {
  content: '';
  display: block;
  width: 70px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hero-diamond {
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.hero-subtitle {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 400;
  letter-spacing: 9px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 44px;
  animation: fadeUp 0.8s 0.35s ease both;
}
.hero-tagline {
  font-size: clamp(15px, 1.9vw, 18px);
  font-weight: 300;
  color: var(--text-mid);
  max-width: 580px;
  line-height: 1.8;
  margin-bottom: 52px;
  animation: fadeUp 0.8s 0.45s ease both;
}
.hero-ctas {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 0.8s 0.55s ease both;
}

/* === BOTONES === */
.btn-gold {
  background: linear-gradient(135deg, #C9A84C, #8B6914);
  color: #fff;
  padding: 17px 44px;
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(201,168,76,0.38);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--gold-dark);
  padding: 16px 44px;
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1.5px solid var(--gold);
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--marble-dark);
  transform: translateY(-3px);
}

/* === STATS BAR === */
.stats-bar {
  background: linear-gradient(135deg, #1A1208 0%, #2D2010 50%, #1A1208 100%);
  padding: 44px 24px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
  padding: 16px 52px;
  border-right: 1px solid rgba(201,168,76,0.18);
  flex: 1;
  min-width: 150px;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}

/* === SECCIONES COMUNES === */
.section { padding: 100px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 4.5px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 18px;
}
.section-title em { color: var(--gold-dark); font-style: normal; }
.section-lead {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-mid);
  max-width: 580px;
  line-height: 1.85;
  margin-bottom: 56px;
}
.divider-gold {
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  margin-bottom: 24px;
}

/* === NOSOTROS === */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.value-list { display: flex; flex-direction: column; gap: 20px; }
.value-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 24px;
  background: rgba(255,255,255,0.80);
  border-left: 3px solid var(--gold);
  box-shadow: 0 2px 16px rgba(201,168,76,0.10);
  transition: transform 0.2s, box-shadow 0.2s;
}
.value-item:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-gold);
}
.value-icon { font-size: 26px; flex-shrink: 0; margin-top: 2px; }
.value-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 5px;
}
.value-desc { font-size: 13px; color: var(--text-mid); line-height: 1.75; }

/* === PLANES === */
.planes-section { background-color: #EDE8DF; background-image:
  linear-gradient(95deg, transparent 38%, rgba(180,172,158,0.10) 39%, transparent 41%),
  radial-gradient(ellipse at 70% 50%, rgba(210,205,195,0.18) 0%, transparent 55%);
}
.planes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 24px;
}
.plan-card {
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(201,168,76,0.22);
  padding: 36px 26px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}
.plan-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  opacity: 0;
  transition: opacity 0.3s;
}
.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(201,168,76,0.18);
  border-color: var(--gold);
}
.plan-card:hover::before { opacity: 1; }
/* Plan destacado */
.plan-card.featured {
  background: linear-gradient(160deg, #2D2010, #1A1208);
  border-color: var(--gold);
}
.plan-card.featured::before { opacity: 1; }
.plan-card.featured .plan-name  { color: var(--gold); }
.plan-card.featured .plan-desc  { color: rgba(255,255,255,0.78); }
.plan-card.featured .plan-features li { color: rgba(255,255,255,0.72); border-color: rgba(201,168,76,0.18); }
.plan-card.featured .plan-features li::before { color: var(--gold); }
.plan-badge {
  display: none;
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 18px;
  white-space: nowrap;
}
.plan-card.featured .plan-badge { display: block; }
.plan-icon { font-size: 38px; margin-bottom: 18px; display: block; }
.plan-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}
.plan-desc { font-size: 12px; color: var(--text-light); line-height: 1.8; margin-bottom: 20px; }
.plan-features { list-style: none; text-align: left; margin-bottom: 28px; }
.plan-features li {
  font-size: 12px;
  color: var(--text-mid);
  padding: 7px 0;
  border-bottom: 1px solid rgba(201,168,76,0.11);
  display: flex;
  align-items: center;
  gap: 8px;
}
.plan-features li::before { content: '✦'; color: var(--gold); font-size: 8px; flex-shrink: 0; }
.plan-cta {
  display: block;
  width: 100%;
  padding: 12px;
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-align: center;
  border: 1.5px solid var(--gold);
  color: var(--gold-dark);
  transition: all 0.2s;
  cursor: pointer;
}
.plan-cta:hover { background: var(--gold); color: #fff; }
.plan-card.featured .plan-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  border: none;
}
.plan-card.featured .plan-cta:hover { opacity: 0.88; }

/* === COMO FUNCIONA === */
.como-section {
  background: linear-gradient(150deg, #1A1208 0%, #2D2010 55%, #1A1208 100%);
}
.como-section .section-title { color: #fff; }
.como-section .section-lead  { color: rgba(255,255,255,0.80); }
.pasos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.paso-item {
  text-align: center;
  padding: 52px 28px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(201,168,76,0.10);
  position: relative;
}
.paso-item::after {
  content: '→';
  position: absolute;
  right: -16px; top: 50%;
  transform: translateY(-50%);
  color: rgba(201,168,76,0.35);
  font-size: 22px;
  z-index: 1;
}
.paso-item:last-child::after { display: none; }
.paso-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 60px;
  font-weight: 700;
  color: rgba(201,168,76,0.12);
  line-height: 1;
  margin-bottom: 14px;
}
.paso-icon  { font-size: 34px; margin-bottom: 16px; display: block; }
.paso-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 10px;
}
.paso-desc  { font-size: 12px; color: rgba(255,255,255,0.78); line-height: 1.85; }

/* === SUCURSALES === */
.sucursales-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 14px;
}
.sucursal-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(201,168,76,0.16);
  transition: all 0.22s;
  cursor: default;
}
.sucursal-item:hover {
  border-color: var(--gold);
  transform: translateX(5px);
  box-shadow: var(--shadow-gold);
}
.sucursal-pin {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sucursal-pin-inner {
  width: 11px; height: 11px;
  background: var(--marble-bg);
  border-radius: 50%;
  transform: rotate(45deg);
}
.sucursal-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-dark);
  line-height: 1.3;
}
.sucursal-estado {
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--text-light);
  text-transform: uppercase;
}

/* === PORTAL CTA === */
.portal-section { background: var(--marble-alt); }
.portal-card {
  background: linear-gradient(150deg, #1A1208, #2D2010);
  border: 1px solid rgba(201,168,76,0.28);
  padding: 80px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
  position: relative;
  overflow: hidden;
}
/* Ala decorativa de fondo */
.portal-card::before {
  content: '✦';
  position: absolute;
  right: -30px; top: -50px;
  font-size: 260px;
  color: rgba(201,168,76,0.04);
  font-family: 'Playfair Display', Georgia, serif;
  user-select: none;
  line-height: 1;
}
.portal-text .section-title { color: #fff; }
.portal-text .section-lead  { color: rgba(255,255,255,0.80); margin-bottom: 0; }
.portal-actions {
  flex-shrink: 0;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.portal-label {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 4px;
  display: block;
}
.portal-input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.28);
  color: #fff;
  padding: 13px 16px;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.portal-input::placeholder { color: rgba(255,255,255,0.28); }
.portal-input:focus { border-color: var(--gold); }
.portal-hint {
  font-size: 11px;
  color: rgba(255,255,255,0.62);
  text-align: center;
}

/* === FOOTER === */
.footer {
  background: #0D0A05;
  padding: 68px 24px 32px;
  border-top: 1px solid rgba(201,168,76,0.18);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-brand img   { height: 58px; margin-bottom: 16px; filter: brightness(0) invert(1) opacity(0.85); }
.footer-brand-name  { font-family: 'Playfair Display', Georgia, serif; font-size: 19px; color: var(--gold); letter-spacing: 2px; margin-bottom: 3px; }
.footer-brand-sub   { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.62); margin-bottom: 18px; }
.footer-brand-desc  { font-size: 12px; color: rgba(255,255,255,0.72); line-height: 1.9; max-width: 310px; }
.footer-col-title   { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid rgba(201,168,76,0.18); }
.footer-links       { list-style: none; }
.footer-links li    { margin-bottom: 10px; }
.footer-links a     { font-size: 12px; color: rgba(255,255,255,0.72); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.footer-contact-icon { color: var(--gold); font-size: 14px; flex-shrink: 0; margin-top: 1px; }
.footer-contact-text { font-size: 12px; color: rgba(255,255,255,0.72); line-height: 1.65; }
.footer-contact-text small { color: rgba(255,255,255,0.55); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy        { font-size: 11px; color: rgba(255,255,255,0.52); }
.footer-copy span   { color: rgba(201,168,76,0.7); }

/* === WHATSAPP FLOTANTE === */
.wa-float {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 62px; height: 62px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.42);
  z-index: 999;
  transition: all 0.3s;
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 8px 32px rgba(37,211,102,0.52); }
.wa-float svg   { width: 30px; height: 30px; fill: #fff; }

/* === ANIMACIONES === */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* === RESPONSIVE === */
@media (max-width: 960px) {
  .landing-nav { padding: 14px 24px; }
  .landing-nav.scrolled { padding: 10px 24px; }
  .about-grid   { grid-template-columns: 1fr; gap: 48px; }
  .pasos-grid   { grid-template-columns: repeat(2, 1fr); }
  .paso-item::after { display: none; }
  .portal-card  { flex-direction: column; padding: 52px 36px; text-align: center; }
  .portal-text .section-lead { max-width: 100%; }
  .portal-actions { width: 100%; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner > *:first-child { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .nav-links    { display: none; }
  .hero         { padding: 100px 20px 56px; }
  .hero::after  { inset: 10px; }
  .stats-bar    { flex-direction: column; }
  .stat-item    { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.14); padding: 22px; }
  .stat-item:last-child { border-bottom: none; }
  .pasos-grid   { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .portal-card  { padding: 40px 24px; }
  .hero-ctas    { flex-direction: column; align-items: stretch; }
  .btn-gold, .btn-outline { text-align: center; }
}
