@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Syne:wght@400;500;600;700&display=swap');

/* --- VARIABLES --- */
:root {
    --azul:        #38bdf8;
    --azul-dim:    rgba(56,189,248,0.12);
    --azul-glow:   rgba(56,189,248,0.35);
    --verde:       #22c55e;
    --verde-dim:   rgba(34,197,94,0.12);
    --fondo:       #040608;
    --fondo-card:  #0b0f14;
    --fondo-card2: #0f1319;
    --borde:       rgba(255,255,255,0.07);
    --borde-hover: rgba(56,189,248,0.3);
    --blanco:      #f1f5f9;
    --gris:        #64748b;
    --gris-claro:  #94a3b8;
}

/* --- BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Roboto', sans-serif;
    background: var(--fondo);
    color: var(--blanco);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--fondo); }
::-webkit-scrollbar-thumb { background: var(--azul); border-radius: 2px; }

/* ============================================
   NAVBAR
============================================ */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 5%;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(4,6,8,0.85);
    border-bottom: 1px solid var(--borde);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: padding 0.3s, background 0.3s;
}
.navbar.scrolled {
    padding: 10px 5%;
    background: rgba(4,6,8,0.97);
}

.logo-container { display: flex; align-items: center; gap: 12px; }
.main-logo {
    height: 48px; width: auto;
    filter: drop-shadow(0 0 10px var(--azul));
    transition: filter 0.3s;
}
.main-logo:hover { filter: drop-shadow(0 0 20px red); }

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--azul);
    letter-spacing: 3px;
    text-shadow: 0 0 16px var(--azul-glow);
}

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
    color: var(--gris-claro);
    text-decoration: none;
    padding: 7px 14px;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--blanco); background: rgba(0, 132, 255, 0.788); }

.btn-nav {
    background: var(--azul) !important;
    color: #000 !important;
    font-weight: 700 !important;
    padding: 8px 20px !important;
    font-size: 0.78rem !important;
    letter-spacing: 1px;
    transition: all 0.25s !important;
}
.btn-nav:hover {
    background: var(--blanco) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 24px var(--azul-glow) !important;
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block; width: 22px; height: 2px;
    background: var(--blanco); border-radius: 2px;
    transition: all 0.3s;
}

/* ============================================
   HERO
============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--fondo);
}

/* Animated grid background */
.hero-bg-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(56,189,248,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(56,189,248,0.05) 1px, transparent 1px);
    background-size: 55px 55px;
    animation: gridScroll 25s linear infinite;
    z-index: 1;
}
@keyframes gridScroll {
    0%   { background-position: 0 0; }
    100% { background-position: 55px 55px; }
}

/* Diagonal scan line */
.hero-scan {
    position: absolute; inset: 0; z-index: 2; pointer-events: none;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(56,189,248,0.03) 50%,
        transparent 100%
    );
    background-size: 100% 8px;
    animation: scan 6s linear infinite;
}
@keyframes scan {
    0%   { background-position: 0 -100vh; }
    100% { background-position: 0 100vh; }
}

.hero-glow {
    position: absolute;
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56,189,248,0.1) 0%, transparent 65%);
    top: 50%; left: 50%;
    transform: translate(-50%, -55%);
    z-index: 1;
    animation: glowPulse 5s ease-in-out infinite;
}
@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%,-55%) scale(1); }
    50%       { opacity: 1;   transform: translate(-50%,-55%) scale(1.12); }
}

#hero-intro {
    position: absolute; inset: 0; z-index: 3;
    transition: opacity 1s ease, visibility 1s ease;
}
.hero-video {
    position: absolute; top: 50%; left: 50%;
    min-width: 100%; min-height: 100%;
    transform: translate(-50%,-50%);
    object-fit: cover;
}
.video-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(4,6,8,0.25) 0%, rgba(4,6,8,0.6) 70%, rgba(4,6,8,1) 100%);
    z-index: 1;
}
.hidden-intro { opacity: 0 !important; visibility: hidden !important; }

/* Hero content */
.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    padding: 0 24px;
    max-width: 780px;
}

.hero-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 6px;
    color: var(--azul);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 18px;
    opacity: 0;
    animation: riseUp 0.7s ease forwards 0.3s;
}

.hero-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 2px;
    margin-bottom: 18px;
    text-shadow: 0 0 50px rgba(56,189,248,0.3);
    opacity: 0;
    animation: riseUp 0.7s ease forwards 0.5s;
}
.hero-content h2 span { color: var(--azul); }

.hero-content > p {
    color: var(--gris-claro);
    font-size: 1.05rem;
    margin-bottom: 30px;
    font-weight: 400;
    opacity: 0;
    animation: riseUp 0.7s ease forwards 0.7s;
}

@keyframes riseUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Badges */
.hero-badges {
    display: flex; gap: 10px;
    justify-content: center; flex-wrap: wrap;
    margin-bottom: 30px;
    opacity: 0; animation: riseUp 0.7s ease forwards 0.85s;
}
.badge {
    background: rgba(56,189,248,0.09);
    border: 1px solid rgba(56,189,248,0.28);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--azul);
    letter-spacing: 0.8px;
    backdrop-filter: blur(8px);
}

/* WhatsApp btn */
.whatsapp-box-hero {
    opacity: 0; animation: riseUp 0.7s ease forwards 1s;
    display: inline-flex;
}
.btn-whatsapp-green {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--verde);
    color: #fff; font-weight: 700;
    padding: 15px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.88rem;
    letter-spacing: 1.5px;
    transition: all 0.3s;
    box-shadow: 0 0 40px rgba(34,197,94,0.25);
    font-family: 'Orbitron', sans-serif;
}
.btn-whatsapp-green::before { content: '💬'; font-size: 1rem; font-family: sans-serif; }
.btn-whatsapp-green:hover {
    background: #16a34a;
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(34,197,94,0.4);
}

/* Scroll hint */
.scroll-hint {
    position: absolute; bottom: 28px; left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex; flex-direction: column;
    align-items: center; gap: 8px;
    opacity: 0; animation: riseUp 0.7s ease forwards 1.3s;
}
.scroll-hint span { font-size: 0.6rem; letter-spacing: 3px; color: var(--gris); }
.scroll-hint-arrow {
    width: 18px; height: 18px;
    border-right: 2px solid var(--gris);
    border-bottom: 2px solid var(--gris);
    transform: rotate(45deg);
    animation: arrowBounce 1.8s ease-in-out infinite;
}
@keyframes arrowBounce {
    0%,100% { transform: rotate(45deg) translateY(0); }
    50%      { transform: rotate(45deg) translateY(5px); }
}

/* ============================================
   STATS BAR
============================================ */
.stats-bar {
    background: var(--fondo-card);
    border-top: 1px solid var(--borde);
    border-bottom: 1px solid var(--borde);
    padding: 30px 5%;
}
.stats-grid {
    max-width: 900px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4,1fr);
    gap: 20px; text-align: center;
}
.stat-item { display: flex; flex-direction: column; gap: 5px; }
.stat-number {
    font-family: 'Roboto', sans-serif;
    font-size: 1.8rem; font-weight: 900;
    color: var(--azul);
    text-shadow: 0 0 20px var(--azul-glow);
}
.stat-label { font-size: 0.68rem; color: var(--gris-claro); letter-spacing: 1.5px; text-transform: uppercase; }

/* ============================================
   BRANDS MARQUEE
============================================ */
.brands-section {
    padding: 48px 0;
    border-bottom: 1px solid var(--borde);
    overflow: hidden;
}
.mini-title {
    font-family: 'roboto', sans-serif;
    font-size: 0.9rem; letter-spacing: 5px;
    color: var(--azul); text-align: center;
    margin-bottom: 28px; text-transform: uppercase;
}
.brands-track-wrap {
    overflow: hidden; position: relative;
}
.brands-track-wrap::before,
.brands-track-wrap::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2;
}
.brands-track-wrap::before { left: 0;  background: linear-gradient(to right,  var(--fondo), transparent); }
.brands-track-wrap::after  { right: 0; background: linear-gradient(to left, var(--fondo), transparent); }

.brands-track {
    display: flex; gap: 14px;
    animation: marquee 22s linear infinite;
    width: max-content;
}
@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.brand-item {
    background: var(--fondo-card);
    border: 1px solid var(--borde);
    padding: 9px 24px;
    border-radius: 100px;
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 2.5px; white-space: nowrap;
    transition: border-color 0.3s, color 0.3s, box-shadow 0.3s;
    cursor: default;
}
.brand-item:hover {
    border-color: var(--azul); color: var(--azul);
    box-shadow: 0 0 16px var(--azul-dim);
}
.brand-item span { color: var(--azul); margin-right: 8px; font-family: 'Orbitron', sans-serif; }

/* ============================================
   SECTION TITLE
============================================ */
.section-title {
    font-family: 'roboto', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    letter-spacing: 4px;
    margin-bottom: 44px;
    position: relative;
    padding-bottom: 18px;
    color: var(--blanco);
}
.section-title::after {
    content: '';
    position: absolute; bottom: 0; left: 0;
    width: 44px; height: 2px;
    background: var(--azul);
    box-shadow: 0 0 12px var(--azul);
}

/* ============================================
   CONTAINER & LAYOUT
============================================ */
.container {
    max-width: 1100px;
    margin: 80px auto;
    padding: 0 28px;
}
.grid-vertical { display: flex; flex-direction: column; gap: 24px; }

/* Responsive grid: 3 cols on desktop, 1 on mobile */
.row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 22px;
}

/* ============================================
   SERVICE CARDS — Premium redesign
============================================ */
.card {
    background: var(--fondo-card);
    border-radius: 14px;
    border: 1px solid var(--borde);
    overflow: hidden;
    position: relative;
    transition: transform 0.35s cubic-bezier(.25,.8,.25,1),
                border-color 0.35s,
                box-shadow 0.35s;
    cursor: default;
}

/* Top glow line on hover */
.card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--azul), transparent);
    opacity: 0;
    transition: opacity 0.35s;
    z-index: 2;
}
.card:hover {
    transform: translateY(-6px);
    border-color: var(--borde-hover);
    box-shadow: 0 20px 60px rgba(56,189,248,0.1), 0 0 0 1px rgba(56,189,248,0.08);
}
.card:hover::before { opacity: 1; }

/* Photo wrapper with overlay label */
.card-img-wrap {
    position: relative;
    overflow: hidden;
    height: 200px;
}
.card-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.75) saturate(0.65);
    transition: filter 0.4s, transform 0.4s;
}
.card:hover .card-img-wrap img {
    filter: brightness(0.9) saturate(0.9);
    transform: scale(1.04);
}

/* Service tag on photo */
.card-img-tag {
    position: absolute; bottom: 10px; left: 12px;
    background: rgba(4,6,8,0.75);
    border: 1px solid var(--borde-hover);
    color: var(--azul);
    font-size: 0.6rem; font-weight: 700;
    letter-spacing: 2px; padding: 4px 10px;
    border-radius: 4px;
    backdrop-filter: blur(8px);
    font-family: 'Orbitron', sans-serif;
}

.card-body { padding: 22px 20px 24px; }

.card-body h3 {
    font-family: 'roboto', sans-serif;
    font-size: 0.82rem; font-weight: 700;
    letter-spacing: 2px;
    color: var(--blanco);
    margin-bottom: 10px;
}
.card-body p {
    color: var(--gris-claro);
    font-size: 0.875rem;
    line-height: 1.7;
}

/* Icon-only cards */
.card-icon {
    font-size: 2.4rem;
    margin-bottom: 14px;
    display: block;
    filter: drop-shadow(0 0 10px rgba(56,189,248,0.3));
}

/* ============================================
   POR QUÉ ELEGIRNOS — numbered feature cards
============================================ */
.feature-card {
    background: var(--fondo-card);
    border: 1px solid var(--borde);
    border-radius: 14px;
    padding: 32px 26px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.feature-card::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--azul), transparent);
    opacity: 0; transition: opacity 0.3s;
}
.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--borde-hover);
    box-shadow: 0 20px 50px rgba(56,189,248,0.08);
}
.feature-card:hover::after { opacity: 1; }

.feature-num {
    font-family: 'roboto', sans-serif;
    font-size: 2.5rem; font-weight: 900;
    color: rgba(56,189,248,0.1);
    line-height: 1;
    margin-bottom: 16px;
    transition: color 0.3s;
}
.feature-card:hover .feature-num { color: rgba(56,189,248,0.25); }

.feature-card h3 {
    font-family: 'roboto', sans-serif;
    font-size: 0.82rem; letter-spacing: 2px;
    color: var(--blanco); margin-bottom: 10px;
    display: flex; align-items: center; gap: 8px;
}
.feature-card p { color: var(--gris-claro); font-size: 0.875rem; line-height: 1.7; }

/* ============================================
   UBICACIÓN
============================================ */
.info-ubicacion {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 18px; margin-bottom: 24px;
}
.direccion, .horarios {
    background: var(--fondo-card);
    border: 1px solid var(--borde);
    border-radius: 12px;
    padding: 24px 22px;
}
.direccion h4, .horarios h4 {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem; letter-spacing: 2.5px;
    color: var(--azul); margin-bottom: 12px;
}
.direccion p, .horarios p {
    color: var(--gris-claro); font-size: 0.9rem; line-height: 1.7;
}

.map-container {
    border-radius: 14px; overflow: hidden;
    border: 1px solid var(--borde);
    box-shadow: 0 0 50px rgba(56,189,248,0.06);
}
.map-container iframe {
    width: 100%; height: 380px; display: block;
    filter: grayscale(0.4) invert(0.92) hue-rotate(180deg) brightness(0.85);
}

/* ============================================
   PAGE HERO (servicios / nosotros)
============================================ */
.page-hero {
    padding: 150px 5% 80px;
    text-align: center;
    position: relative; overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(56,189,248,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(56,189,248,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
}
.page-hero * { position: relative; z-index: 1; }

.page-hero-tag {
    font-family: 'Roboto', sans-serif;
    font-size: 0.62rem; letter-spacing: 5px;
    color: var(--azul); text-transform: uppercase;
    font-weight: 700; margin-bottom: 16px;
}
.page-hero h1 {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 900; line-height: 1.15;
    margin-bottom: 18px;
    text-shadow: 0 0 40px rgba(56,189,248,0.25);
}
.page-hero p {
    color: var(--gris-claro);
    max-width: 560px; margin: 0 auto;
    font-size: 1rem; line-height: 1.75;
}

/* ============================================
   NOSOTROS — About grid
============================================ */
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 56px; align-items: center;
}
.about-text h3 {
    font-family: 'roboto', sans-serif;
    font-size: 0.78rem; letter-spacing: 3px;
    color: var(--azul); margin-bottom: 18px;
}
.about-text p {
    color: var(--gris-claro); line-height: 1.85;
    margin-bottom: 14px; font-size: 0.95rem;
}

.about-img-wrap {
    border-radius: 16px; overflow: hidden;
    border: 1px solid var(--borde);
    position: relative;
}
.about-img-wrap img {
    width: 100%; height: 400px;
    object-fit: cover;
    filter: brightness(0.75) saturate(0.6);
    transition: filter 0.4s;
    display: block;
}
.about-img-wrap:hover img { filter: brightness(0.9) saturate(0.85); }

.about-img-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 22px;
    background: linear-gradient(transparent, rgba(4,6,8,0.92));
}
.about-img-overlay p {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.6rem; letter-spacing: 2.5px; color: var(--azul);
}

/* Valores */
.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px,1fr));
    gap: 18px;
}
.valor-card {
    background: var(--fondo-card);
    border: 1px solid var(--borde);
    border-radius: 12px; padding: 28px 22px;
    transition: all 0.3s; position: relative; overflow: hidden;
}
.valor-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: var(--azul); opacity: 0; transition: opacity 0.3s;
}
.valor-card:hover { border-color: var(--borde-hover); transform: translateY(-4px); }
.valor-card:hover::before { opacity: 1; }

.valor-icon { font-size: 2rem; margin-bottom: 14px; display: block; }
.valor-card h4 {
    font-family: 'Roboto', sans-serif;
    font-size: 0.75rem; letter-spacing: 2px;
    color: var(--blanco); margin-bottom: 10px;
}
.valor-card p { color: var(--gris-claro); font-size: 0.85rem; line-height: 1.65; }

/* Team */
.team-card {
    background: var(--fondo-card);
    border: 1px solid var(--borde);
    border-radius: 14px; overflow: hidden;
    transition: all 0.3s; max-width: 340px;
}
.team-card:hover { transform: translateY(-5px); border-color: var(--borde-hover); box-shadow: 0 20px 50px rgba(56,189,248,0.1); }
.team-photo {
    width: 100%; height: 300px;
    object-fit: cover; object-position: top;
    filter: grayscale(0.4) brightness(0.8);
    transition: filter 0.4s;
    display: block;
}
.team-card:hover .team-photo { filter: grayscale(0) brightness(0.9); }
.team-info { padding: 22px; text-align: center; }
.team-info h4 {
    font-family: 'Roboto', sans-serif;
    font-size: 0.8rem; letter-spacing: 2px; margin-bottom: 5px;
}
.team-role { color: var(--azul); font-size: 0.75rem; letter-spacing: 1px; font-weight: 600; }
.team-desc { color: var(--gris-claro); font-size: 0.82rem; margin-top: 10px; line-height: 1.65; }

/* ============================================
   FOOTER
============================================ */
footer {
    background: #030507;
    padding: 64px 5% 28px;
    border-top: 1px solid rgba(56,189,248,0.18);
    margin-top: 20px;
}
.footer-grid {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1.3fr;
    gap: 60px; margin-bottom: 44px;
}
.logo-footer {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem; font-weight: 900;
    color: var(--azul); letter-spacing: 4px;
    margin-bottom: 14px;
    text-shadow: 0 0 18px var(--azul-glow);
}
.footer-info p { color: var(--gris-claro); font-size: 0.85rem; line-height: 1.8; }

.footer-links { display: flex; gap: 14px; margin-top: 20px; flex-wrap: wrap; }
.footer-links a {
    color: var(--gris); text-decoration: none;
    font-size: 0.78rem; font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--azul); }

.footer-form h4 {
    font-family: 'Roboto', sans-serif;
    font-size: 0.68rem; letter-spacing: 3px;
    color: var(--azul); margin-bottom: 20px;
}

.footer-form input,
.footer-form textarea {
    width: 100%; display: block;
    background: var(--fondo-card2);
    border: 1px solid var(--borde);
    color: var(--blanco);
    padding: 12px 15px;
    border-radius: 7px;
    font-size: 0.85rem;
    font-family: 'Syne', sans-serif;
    margin-bottom: 10px;
    transition: border-color 0.25s, box-shadow 0.25s;
}
.footer-form input:focus,
.footer-form textarea:focus {
    outline: none;
    border-color: var(--azul);
    box-shadow: 0 0 0 3px rgba(56,189,248,0.08);
}
.footer-form input::placeholder,
.footer-form textarea::placeholder { color: #334155; }
.footer-form textarea { resize: vertical; }

.btn-submit {
    background: var(--azul); color: #000;
    border: none; padding: 13px 20px;
    width: 100%; font-weight: 700;
    font-size: 0.72rem; letter-spacing: 2.5px;
    cursor: pointer; border-radius: 7px;
    font-family: 'Orbitron', sans-serif;
    transition: all 0.3s;
}
.btn-submit:hover {
    background: var(--blanco);
    box-shadow: 0 8px 28px rgba(56,189,248,0.25);
    transform: translateY(-1px);
}

.footer-bottom {
    max-width: 1100px; margin: 0 auto;
    padding-top: 22px;
    border-top: 1px solid var(--borde);
    display: flex; justify-content: space-between;
    align-items: center; flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { color: #1e293b; font-size: 0.72rem; }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-links {
        display: none;
        position: fixed; top: 68px; left: 0; right: 0;
        background: rgba(4,6,8,0.98);
        flex-direction: column;
        padding: 16px; gap: 4px;
        border-bottom: 1px solid var(--borde);
    }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 12px 16px; width: 100%; }
    .logo-text { display: none; }

    .hero-content h2 { font-size: 2rem; }
    .stats-grid { grid-template-columns: repeat(2,1fr); }
    .info-ubicacion, .about-grid, .footer-grid { grid-template-columns: 1fr; }
    .row { grid-template-columns: 1fr; }
    .page-hero { padding: 120px 5% 60px; }
}