
  :root {
    --negro: #0a0a0f;
    --azul-oscuro: #0d1b2a;
    --azul: #1a3a5c;
    --azul-medio: #1e5799;
    --dorado: #c9a84c;
    --dorado-claro: #f0c040;
    --blanco: #f5f5f0;
    --gris: #8a8a9a;
    --rojo: #c0392b;
    --verde: #27ae60;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Nunito', sans-serif;
    background: var(--negro);
    color: var(--blanco);
    overflow-x: hidden;
  }

  /* ─── BARRA SUPERIOR ─── */
  .topbar {
    background: var(--dorado);
    color: var(--negro);
    text-align: center;
    padding: 8px 20px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
  }
  .topbar a { color: var(--negro); text-decoration: none; }
  .topbar span { display: flex; align-items: center; gap: 6px; }

  /* ─── NAVBAR ─── */
  nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(10,10,15,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--dorado);
    padding: 0 5%;
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
  }
  .nav-logo {
    display: flex; align-items: center; gap: 14px;
  }
  .nav-logo-icon {
    width: 44px; height: 44px;
    background: var(--dorado);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .nav-logo-icon svg { width: 28px; height: 28px; }
  .nav-logo-text { line-height: 1.1; }
  .nav-logo-text .g1 { font-family: 'Oswald', sans-serif; font-size: 0.72rem; letter-spacing: 0.15em; color: var(--dorado); text-transform: uppercase; }
  .nav-logo-text .g2 { font-family: 'Oswald', sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--blanco); letter-spacing: 0.05em; }
  .nav-links { display: flex; gap: 28px; align-items: center; }
  .nav-links a {
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--blanco); text-decoration: none;
    position: relative; padding-bottom: 4px;
    transition: color .25s;
  }
  .nav-links a::after {
    content:''; position: absolute; bottom:0; left:0;
    width:0; height:2px; background: var(--dorado);
    transition: width .3s;
  }
  .nav-links a:hover { color: var(--dorado); }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta {
    background: var(--dorado); color: var(--negro)!important;
    padding: 9px 20px!important; border-radius: 6px;
    font-weight: 600!important;
    transition: background .25s, transform .2s !important;
  }
  .nav-cta:hover { background: var(--dorado-claro)!important; transform: translateY(-2px); }
  .nav-cta::after { display:none!important; }

  /* ─── HERO ─── */
  .hero {
    min-height: 92vh;
    position: relative;
    display: flex; align-items: center;
    overflow: hidden;
    background: var(--azul-oscuro);
  }
  .hero-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 70% 50%, rgba(30,87,153,0.35) 0%, transparent 70%),
      radial-gradient(ellipse 50% 40% at 20% 80%, rgba(201,168,76,0.12) 0%, transparent 60%),
      linear-gradient(135deg, #0a0a0f 0%, #0d1b2a 50%, #0a1525 100%);
  }
  /* Road lines decorative */
  .hero-road {
    position: absolute; bottom: 0; left: 0; right: 0; height: 180px;
    background: linear-gradient(to bottom, transparent, rgba(30,87,153,0.08));
    overflow: hidden;
  }
  .hero-road::before {
    content:'';
    position: absolute; bottom: 20px; left: 0; right: 0; height: 4px;
    background: repeating-linear-gradient(90deg, var(--dorado) 0px, var(--dorado) 60px, transparent 60px, transparent 100px);
    opacity: 0.5;
    animation: roadMove 4s linear infinite;
  }
  @keyframes roadMove {
    from { transform: translateX(0); }
    to { transform: translateX(-100px); }
  }

  /* Plate decorative element */
  .hero-plate {
    position: absolute; right: 6%; top: 50%;
    transform: translateY(-50%);
    width: min(380px, 38vw);
    animation: floatPlate 6s ease-in-out infinite;
  }
  @keyframes floatPlate {
    0%,100% { transform: translateY(-50%) translateX(0) rotate(-2deg); }
    50%      { transform: translateY(-52%) translateX(-8px) rotate(1deg); }
  }

  .hero-content {
    position: relative; z-index: 2;
    padding: 80px 6%;
    max-width: 660px;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.4);
    border-radius: 30px; padding: 6px 16px;
    font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--dorado); margin-bottom: 24px;
    animation: fadeUp .7s ease both;
  }
  .hero-badge::before {
    content:''; width:8px; height:8px; border-radius:50%;
    background: var(--dorado); animation: pulse 2s infinite;
  }
  @keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }

  .hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 700; line-height: 1.05;
    letter-spacing: 0.02em;
    animation: fadeUp .7s .15s ease both;
  }
  .hero h1 em {
    font-style: normal; color: var(--dorado);
    display: block;
  }
  .hero p {
    margin: 20px 0 36px;
    font-size: 1.05rem; color: rgba(245,245,240,0.75);
    line-height: 1.7; max-width: 500px;
    animation: fadeUp .7s .3s ease both;
  }
  .hero-btns {
    display: flex; gap: 14px; flex-wrap: wrap;
    animation: fadeUp .7s .45s ease both;
  }
  .btn-primary {
    background: var(--dorado); color: var(--negro);
    padding: 14px 32px; border-radius: 8px;
    font-family: 'Oswald', sans-serif; font-size: 1rem;
    font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
    text-decoration: none;
    transition: background .25s, transform .2s, box-shadow .25s;
    box-shadow: 0 4px 20px rgba(201,168,76,0.3);
  }
  .btn-primary:hover {
    background: var(--dorado-claro); transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(201,168,76,0.5);
  }
  .btn-secondary {
    background: transparent; color: var(--blanco);
    border: 2px solid rgba(245,245,240,0.3);
    padding: 14px 32px; border-radius: 8px;
    font-family: 'Oswald', sans-serif; font-size: 1rem;
    letter-spacing: 0.08em; text-transform: uppercase;
    text-decoration: none;
    transition: border-color .25s, color .25s;
  }
  .btn-secondary:hover { border-color: var(--dorado); color: var(--dorado); }

  .hero-stats {
    display: flex; gap: 36px; margin-top: 52px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
    animation: fadeUp .7s .6s ease both;
  }
  .stat-item { text-align: center; }
  .stat-num {
    font-family: 'Oswald', sans-serif; font-size: 2rem; font-weight: 700;
    color: var(--dorado); line-height: 1;
  }
  .stat-label { font-size: 0.75rem; color: var(--gris); letter-spacing: 0.08em; margin-top: 4px; }

  @keyframes fadeUp {
    from { opacity:0; transform: translateY(24px); }
    to   { opacity:1; transform: translateY(0); }
  }

  /* ─── SVG PLATE ILLUSTRATION ─── */
  .plate-svg-wrap {
    filter: drop-shadow(0 20px 60px rgba(30,87,153,0.5));
  }

  /* ─── SECTION BASE ─── */
  section { padding: 90px 6%; }
  .section-tag {
    font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--dorado); font-family: 'Oswald', sans-serif;
    margin-bottom: 12px;
  }
  .section-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.9rem, 3.5vw, 3rem);
    font-weight: 700; line-height: 1.1;
    margin-bottom: 16px;
  }
  .section-title span { color: var(--dorado); }
  .section-sub {
    color: rgba(245,245,240,0.65); font-size: 1rem; line-height: 1.7;
    max-width: 560px; margin-bottom: 52px;
  }

  /* ─── SERVICIOS ─── */
  #servicios { background: #0d0d14; }
  .servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
  }
  .servicio-card {
    background: linear-gradient(135deg, rgba(26,58,92,0.4), rgba(13,27,42,0.6));
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 14px; padding: 28px 24px;
    position: relative; overflow: hidden;
    cursor: default;
    transition: transform .3s, border-color .3s, box-shadow .3s;
  }
  .servicio-card::before {
    content:''; position: absolute; top:-50%; left:-50%;
    width:200%; height:200%;
    background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 60%);
    opacity: 0; transition: opacity .4s;
  }
  .servicio-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201,168,76,0.5);
    box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  }
  .servicio-card:hover::before { opacity: 1; }
  .serv-icon {
    width: 52px; height: 52px; border-radius: 12px;
    background: linear-gradient(135deg, var(--dorado), #a07828);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px; font-size: 1.5rem;
  }
  .serv-name {
    font-family: 'Oswald', sans-serif; font-size: 1.05rem;
    font-weight: 600; letter-spacing: 0.03em;
    color: var(--blanco); margin-bottom: 8px;
  }
  .serv-desc {
    font-size: 0.85rem; color: rgba(245,245,240,0.58); line-height: 1.6;
  }
  .serv-badge {
    display: inline-block; margin-top: 12px;
    background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.3);
    color: var(--dorado); font-size: 0.72rem; letter-spacing: 0.08em;
    text-transform: uppercase; padding: 3px 10px; border-radius: 20px;
  }

  /* ─── POR QUÉ ELEGIRNOS ─── */
  #por-que {
    background: linear-gradient(135deg, #0a0a0f 0%, #0d1b2a 100%);
    position: relative; overflow: hidden;
  }
  #por-que::before {
    content:''; position:absolute; right:-200px; top:-200px;
    width:600px; height:600px; border-radius:50%;
    background: radial-gradient(circle, rgba(30,87,153,0.15), transparent 70%);
    pointer-events: none;
  }
  .features-layout {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  }
  .features-list { display: flex; flex-direction: column; gap: 20px; }
  .feature-item {
    display: flex; gap: 18px; align-items: flex-start;
    padding: 20px; border-radius: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    transition: background .3s, border-color .3s;
  }
  .feature-item:hover {
    background: rgba(201,168,76,0.07);
    border-color: rgba(201,168,76,0.2);
  }
  .feat-icon {
    width: 46px; height: 46px; border-radius: 10px; flex-shrink: 0;
    background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(201,168,76,0.05));
    border: 1px solid rgba(201,168,76,0.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
  }
  .feat-text h4 {
    font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 600;
    margin-bottom: 4px; color: var(--blanco);
  }
  .feat-text p { font-size: 0.85rem; color: rgba(245,245,240,0.6); line-height: 1.5; }

  /* Car visual */
  .car-visual {
    position: relative; display: flex; align-items: center; justify-content: center;
  }
  .car-glow {
    position: absolute; width: 400px; height: 300px;
    background: radial-gradient(ellipse, rgba(30,87,153,0.3), transparent 70%);
    border-radius: 50%;
  }

  /* ─── SUCURSALES ─── */
  #sucursales { background: #0d0d14; }
  .sucursales-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
  }
  .sucursal-card {
    background: linear-gradient(145deg, rgba(26,58,92,0.35), rgba(10,10,15,0.8));
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 18px; overflow: hidden;
    transition: transform .3s, box-shadow .3s;
  }
  .sucursal-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  }
  .sucursal-header {
    background: linear-gradient(135deg, var(--azul), var(--azul-medio));
    padding: 24px 28px;
    display: flex; align-items: center; gap: 14px;
  }
  .suc-num {
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(201,168,76,0.2); border: 2px solid var(--dorado);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Oswald', sans-serif; font-size: 1.3rem; font-weight: 700;
    color: var(--dorado); flex-shrink: 0;
  }
  .suc-title { font-family: 'Oswald', sans-serif; font-size: 1.1rem; font-weight: 600; }
  .suc-subtitle { font-size: 0.8rem; color: rgba(245,245,240,0.65); margin-top: 2px; }
  .sucursal-body { padding: 26px 28px; }
  .suc-info { display: flex; flex-direction: column; gap: 14px; }
  .suc-row {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 0.9rem;
  }
  .suc-row-icon {
    width: 34px; height: 34px; border-radius: 8px; flex-shrink: 0;
    background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
  }
  .suc-row-text { color: rgba(245,245,240,0.8); line-height: 1.5; padding-top: 6px; }
  .suc-row-text strong { color: var(--blanco); display: block; }
  .btn-wapp {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    margin-top: 22px; padding: 12px;
    background: #25D366; color: white; border-radius: 10px;
    text-decoration: none; font-family: 'Oswald', sans-serif;
    font-size: 0.92rem; letter-spacing: 0.06em; font-weight: 500;
    transition: background .25s, transform .2s;
  }
  .btn-wapp:hover { background: #1ebe5d; transform: translateY(-2px); }

  /* ─── TRAMITES DIGITALES ─── */
  #digitales {
    background: linear-gradient(135deg, var(--azul) 0%, var(--azul-oscuro) 100%);
    position: relative; overflow: hidden;
  }
  #digitales::after {
    content:''; position:absolute; inset:0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
  }
  .digitales-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 18px;
  }
  .digital-card {
    background: rgba(255,255,255,0.07); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px; padding: 24px 20px;
    text-align: center;
    transition: background .3s, transform .3s;
  }
  .digital-card:hover {
    background: rgba(201,168,76,0.15); transform: translateY(-5px);
  }
  .dig-icon { font-size: 2.2rem; margin-bottom: 12px; }
  .dig-name {
    font-family: 'Oswald', sans-serif; font-size: 0.95rem;
    font-weight: 500; letter-spacing: 0.04em;
  }

  /* ─── PROCESO ─── */
  #proceso { background: #0a0a0f; }
  .proceso-steps {
    display: flex; gap: 0; position: relative;
    flex-wrap: wrap; justify-content: center;
  }
  .proceso-steps::before {
    content:''; position:absolute; top: 38px; left: 10%; right: 10%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--dorado), transparent);
  }
  .paso {
    flex: 1; min-width: 180px; max-width: 220px;
    text-align: center; padding: 0 20px;
    position: relative;
  }
  .paso-num {
    width: 76px; height: 76px; border-radius: 50%; margin: 0 auto 18px;
    background: linear-gradient(135deg, var(--azul), var(--negro));
    border: 3px solid var(--dorado);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Oswald', sans-serif; font-size: 1.6rem; font-weight: 700;
    color: var(--dorado); position: relative; z-index: 1;
    box-shadow: 0 0 24px rgba(201,168,76,0.25);
  }
  .paso h4 {
    font-family: 'Oswald', sans-serif; font-size: 1rem;
    font-weight: 600; margin-bottom: 8px;
  }
  .paso p { font-size: 0.82rem; color: rgba(245,245,240,0.6); line-height: 1.5; }

  /* ─── CTA FINAL ─── */
  #cta {
    background: linear-gradient(135deg, #1a3a5c 0%, #0a0a0f 100%);
    text-align: center; padding: 100px 6%;
    position: relative; overflow: hidden;
  }
  #cta::before {
    content:''; position:absolute; inset:0;
    background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(201,168,76,0.1), transparent 70%);
  }
  #cta .section-title { margin-bottom: 20px; }
  #cta p {
    color: rgba(245,245,240,0.7); font-size: 1.05rem; max-width: 560px;
    margin: 0 auto 40px; line-height: 1.7;
  }
  .cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

  /* ─── FOOTER ─── */
  footer {
    background: #050508;
    border-top: 1px solid rgba(201,168,76,0.2);
    padding: 50px 6% 28px;
  }
  .footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px;
    margin-bottom: 40px;
  }
  .footer-brand .nav-logo { margin-bottom: 16px; }
  .footer-brand p { font-size: 0.87rem; color: rgba(245,245,240,0.55); line-height: 1.7; max-width: 280px; }
  .footer-col h5 {
    font-family: 'Oswald', sans-serif; font-size: 0.85rem;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--dorado); margin-bottom: 16px;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
  .footer-col ul li a {
    font-size: 0.87rem; color: rgba(245,245,240,0.6); text-decoration: none;
    transition: color .2s;
  }
  .footer-col ul li a:hover { color: var(--dorado); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 20px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.8rem; color: rgba(245,245,240,0.35);
    flex-wrap: wrap; gap: 8px;
  }

  /* ─── WHATSAPP FLOAT ─── */
  .wapp-float {
    position: fixed; bottom: 28px; right: 28px; z-index: 999;
    width: 58px; height: 58px; border-radius: 50%;
    background: #25D366;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 28px rgba(37,211,102,0.45);
    text-decoration: none;
    animation: wappBounce 3s ease-in-out infinite;
    transition: transform .2s;
  }
  .wapp-float:hover { transform: scale(1.1); }
  @keyframes wappBounce {
    0%,100% { box-shadow: 0 6px 28px rgba(37,211,102,0.45); }
    50%      { box-shadow: 0 10px 40px rgba(37,211,102,0.7); }
  }

  @keyframes floatCar {
    0%,100% { transform: translateY(0) rotate(-1deg); }
    50%      { transform: translateY(-14px) rotate(1deg); }
  }
  .car-img-wrap { position: relative; z-index:2; }
  /* ─── MODAL MAPA ─── */
  .modal-overlay {
    display: none; position: fixed; inset: 0; z-index: 2000;
    background: rgba(0,0,0,0.85); backdrop-filter: blur(6px);
    align-items: center; justify-content: center;
  }
  .modal-overlay.active { display: flex; animation: fadeIn .25s ease; }
  @keyframes fadeIn { from{opacity:0} to{opacity:1} }
  .modal-box {
    background: #0d0d14; border: 1px solid rgba(201,168,76,0.3);
    border-radius: 18px; overflow: hidden;
    width: min(700px, 94vw); max-height: 90vh;
    box-shadow: 0 30px 80px rgba(0,0,0,0.7);
    display: flex; flex-direction: column;
    animation: slideUp .3s ease;
  }
  @keyframes slideUp { from{transform:translateY(30px);opacity:0} to{transform:translateY(0);opacity:1} }
  .modal-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 18px 24px;
    background: linear-gradient(135deg, #1a3a5c, #0d1b2a);
    border-bottom: 1px solid rgba(201,168,76,0.2);
  }
  .modal-header h3 {
    font-family: 'Oswald', sans-serif; font-size: 1.1rem;
    font-weight: 600; color: var(--blanco);
    display: flex; align-items: center; gap: 8px;
  }
  .modal-close {
    width: 36px; height: 36px; border-radius: 50%; border: none; cursor: pointer;
    background: rgba(255,255,255,0.08); color: var(--blanco);
    font-size: 1.2rem; display: flex; align-items: center; justify-content: center;
    transition: background .2s;
  }
  .modal-close:hover { background: rgba(201,168,76,0.2); color: var(--dorado); }
  .modal-map { flex:1; min-height: 420px; }
  .modal-map iframe { width:100%; height:100%; min-height:420px; border:none; display:block; }
  .modal-footer {
    padding: 14px 24px;
    background: #0a0a0f;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex; gap: 10px; flex-wrap: wrap;
  }
  .btn-maps-ext {
    display: inline-flex; align-items: center; gap: 7px;
    background: var(--dorado); color: var(--negro);
    padding: 9px 18px; border-radius: 8px; text-decoration: none;
    font-family: 'Oswald', sans-serif; font-size: 0.88rem; font-weight: 600;
    letter-spacing: 0.05em; transition: background .2s;
  }
  .btn-maps-ext:hover { background: var(--dorado-claro); }

  /* Botón "Ver mapa" en sucursal */
  .btn-mapa {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    margin-top: 10px; padding: 11px;
    background: rgba(30,87,153,0.2); color: var(--blanco);
    border: 1px solid rgba(30,87,153,0.5);
    border-radius: 10px; cursor: pointer;
    font-family: 'Oswald', sans-serif; font-size: 0.9rem;
    letter-spacing: 0.06em; font-weight: 500;
    transition: background .25s, border-color .25s, transform .2s;
    width: 100%;
  }
  .btn-mapa:hover {
    background: rgba(30,87,153,0.4); border-color: var(--azul-medio);
    transform: translateY(-2px);
  }

  /* Entre otros card especial */
  .digital-card-otros {
    background: rgba(201,168,76,0.08)!important;
    border-color: rgba(201,168,76,0.3)!important;
  }
  .digital-card-otros .dig-name { color: var(--dorado); }
  .dig-sub { font-size: 0.75rem; color: rgba(245,245,240,0.5); margin-top: 6px; }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    .features-layout { grid-template-columns: 1fr; }
    .car-visual { display: none; }
    .hero-plate { display: none; }
    .hero-content { max-width: 100%; }
    nav .nav-links { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .proceso-steps::before { display: none; }
  }
  @media (max-width: 600px) {
    section { padding: 60px 5%; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .hero-stats { gap: 20px; }
  }
.sucursal-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


