/* =============================================
   ALCAR Pinturas y Recubrimientos
   Landing page — style.css
   Colores marca: #BE2026 (rojo), #1A1A2E (oscuro)
   ============================================= */

:root {
    --red:        #BE2026;
    --red-dark:   #9e191e;
    --dark:       #1A1A2E;
    --dark-2:     #12122A;
    --white:      #FFFFFF;
    --light:      #F7F8FA;
    --gray:       #6B7280;
    --gray-light: #E5E7EB;
    --text:       #1F2937;
    --text-soft:  #6B7280;
    --radius:     12px;
    --radius-lg:  20px;
    --shadow:     0 4px 24px rgba(0,0,0,.08);
    --shadow-md:  0 8px 40px rgba(0,0,0,.12);
    --transition: 0.3s ease;
    --container:  1200px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Contenedor --- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Sección base --- */
.section { padding: 96px 0; }
.bg-light { background: var(--light); }

/* --- Encabezado de sección --- */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}
.section-header h2 { margin-top: 8px; }
.section-header p { color: var(--text-soft); margin-top: 12px; font-size: 1.05rem; }

.section-label {
    display: inline-block;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--red);
    background: rgba(190,32,38,.08);
    padding: 4px 14px;
    border-radius: 100px;
}
.section-label.light {
    color: rgba(255,255,255,.9);
    background: rgba(255,255,255,.15);
}

h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
}
h3 { font-size: 1.25rem; font-weight: 700; color: var(--dark); }
h4 { font-size: 1rem;    font-weight: 600; color: var(--dark); }

/* --- Botones --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: .95rem;
    transition: all var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
    justify-content: center;
}
.btn-primary {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}
.btn-primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(190,32,38,.35);
}
.btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.6);
}
.btn-ghost:hover {
    background: rgba(255,255,255,.15);
    border-color: var(--white);
}
.btn-wa {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
}
.btn-wa:hover {
    background: #1da851;
    border-color: #1da851;
    transform: translateY(-2px);
}
.btn-sm {
    padding: 9px 20px;
    font-size: .85rem;
    background: var(--red);
    color: var(--white);
    border-radius: 8px;
    border: 2px solid var(--red);
    font-weight: 600;
    transition: all var(--transition);
    display: inline-flex;
    margin-top: 16px;
}
.btn-sm:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-1px); }
.btn-full { width: 100%; margin-bottom: 12px; }

/* =============================================
   HEADER
   ============================================= */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all .35s ease;
}
.header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,26,.65) 0%, transparent 100%);
    pointer-events: none;
    transition: opacity .35s ease;
}
.header.scrolled::after { opacity: 0; }
.header.scrolled {
    background: rgba(13,13,26,.96);
    backdrop-filter: blur(18px) saturate(1.4);
    -webkit-backdrop-filter: blur(18px) saturate(1.4);
    padding: 10px 0;
    box-shadow: 0 1px 0 rgba(255,255,255,.06), 0 4px 24px rgba(0,0,0,.35);
}
.header .container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}
.logo img { transition: opacity var(--transition); }
.logo:hover img { opacity: .85; }

/* ── Nav links (centro) ─────────────────────────────── */
.nav {
    display: flex;
    justify-content: center;
}
.nav ul {
    display: flex;
    gap: 2px;
    align-items: center;
    list-style: none;
}
.nav a {
    color: rgba(255,255,255,.78);
    font-weight: 500;
    font-size: .92rem;
    padding: 7px 13px;
    border-radius: 8px;
    transition: all .22s ease;
    letter-spacing: .01em;
    position: relative;
}
.nav a::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 50%; right: 50%;
    height: 2px;
    background: var(--red);
    border-radius: 2px;
    transition: left .22s ease, right .22s ease;
    opacity: 0;
}
.nav a:hover {
    color: var(--white);
    background: rgba(255,255,255,.08);
}
.nav a:hover::after { left: 14px; right: 14px; opacity: 1; }
.nav a.active { color: var(--white); }
.nav a.active::after { left: 14px; right: 14px; opacity: 1; }

/* ── CTA Contacto ──────────────────────────── */
.nav-cta {
    background: var(--red) !important;
    color: var(--white) !important;
    padding: 8px 20px !important;
    box-shadow: 0 2px 12px rgba(190,32,38,.4);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
    background: var(--red-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 18px rgba(190,32,38,.5) !important;
}

/* ── Hamburger ─────────────────────────────── */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 10px;
    cursor: pointer;
    padding: 10px 11px;
    transition: background .22s ease;
    z-index: 1100;
    position: relative;
}
.menu-toggle:hover { background: rgba(255,255,255,.14); }
.menu-toggle span {
    display: block;
    width: 22px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all .3s ease;
    transform-origin: center;
}
.menu-toggle.active { background: rgba(255,255,255,.12); }
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Nav-end: botones de acción (desktop derecha) ─── */
.nav-end {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ── Nav-drawer-actions: oculto en desktop, visible en drawer móvil ─── */
.nav-drawer-actions { display: none; }

/* =============================================
   HERO
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark-2);
}

/* ── Video fondo hero ─────────────────────────────────────────── */
.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;   /* sin interacción con el iframe */
}
.hero-video-wrap iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Cubre toda el área manteniendo aspecto 16:9 */
    width: 177.78vh;   /* 100 * 16/9 */
    height: 56.25vw;   /* 100 * 9/16 */
    min-width: 100%;
    min-height: 100%;
    pointer-events: none;
    border: 0;
}
/* Overlay oscuro para asegurar legibilidad del texto */
.hero-video-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        135deg,
        rgba(18,18,42,.70) 0%,
        rgba(26,26,46,.55) 50%,
        rgba(13,13,26,.65) 100%
    );
}
.hero .container { position: relative; z-index: 2; padding-top: 96px; padding-bottom: 80px; }
.hero-content { max-width: 680px; }

.badge {
    display: inline-block;
    background: rgba(190,32,38,.2);
    border: 1px solid rgba(190,32,38,.4);
    color: #ff8080;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
}
.hero-content h1 {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
}
.hero-content .highlight { color: var(--red); }
.hero-content p {
    font-size: 1.15rem;
    color: rgba(255,255,255,.7);
    max-width: 520px;
    margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-wave {
    position: absolute;
    bottom: -1px; left: 0; right: 0;
}
.hero-wave svg { display: block; width: 100%; height: 60px; }

/* =============================================
   DOS COLUMNAS — Nosotros
   ============================================= */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.img-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #1A1A2E, #BE2026);
}
.img-frame img { width: 100%; height: 100%; object-fit: cover; }
.img-badge {
    position: absolute;
    bottom: 24px; left: 24px;
    background: var(--red);
    color: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-md);
}
.img-badge strong { display: block; font-size: 2rem; font-weight: 800; line-height: 1; }
.img-badge span   { font-size: .8rem; opacity: .9; }

.col-text .section-label { margin-bottom: 12px; }
.col-text h2 { margin-bottom: 16px; }
.col-text p  { color: var(--text-soft); margin-bottom: 12px; }

.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.mv-card {
    background: var(--light);
    border-radius: var(--radius);
    padding: 20px;
    border-left: 3px solid var(--red);
}
.mv-icon { font-size: 1.5rem; margin-bottom: 8px; }
.mv-card h3 { font-size: 1rem; margin-bottom: 6px; }
.mv-card p  { font-size: .875rem; color: var(--text-soft); margin: 0; }

/* =============================================
   LÍNEAS DE PRODUCTOS
   ============================================= */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.linea-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.linea-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gray-light);
    transition: background var(--transition);
}
.linea-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.linea-card:hover::before { background: var(--red); }
.linea-card.featured { border: 2px solid var(--red); }
.linea-card.featured::before { background: var(--red); }
.card-badge {
    position: absolute;
    top: 20px; right: 20px;
    background: var(--red);
    color: var(--white);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
}
.linea-icon {
    width: 64px; height: 64px;
    border-radius: var(--radius);
    margin-bottom: 20px;
}
.linea-icon.auto { background: linear-gradient(135deg, #1A1A2E, #4A4A6E); }
.linea-icon.arq  { background: linear-gradient(135deg, #BE2026, #FF6B6B); }
.linea-icon.ind  { background: linear-gradient(135deg, #374151, #6B7280); }

.linea-card h3 { margin-bottom: 10px; }
.linea-card p  { color: var(--text-soft); font-size: .9rem; margin-bottom: 16px; }
.linea-card ul { color: var(--text-soft); font-size: .875rem; }
.linea-card ul li {
    padding: 5px 0 5px 16px;
    border-bottom: 1px solid var(--gray-light);
    position: relative;
}
.linea-card ul li::before { content: '→'; position: absolute; left: 0; color: var(--red); font-size: .8rem; }
.linea-card ul li:last-child { border-bottom: none; }

/* =============================================
   POR QUÉ AXALTA
   ============================================= */
.ventajas {
    background: linear-gradient(135deg, var(--dark-2), var(--dark));
    color: var(--white);
}
.ventajas h2, .ventajas h3, .ventajas h4 { color: var(--white); }
.ventajas .section-header p { color: rgba(255,255,255,.65); }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}
.stat-item {
    text-align: center;
    padding: 32px 16px;
    background: rgba(255,255,255,.06);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,.08);
    transition: all var(--transition);
}
.stat-item:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.stat-num {
    font-size: 3rem;
    font-weight: 800;
    color: var(--red);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-num span { font-size: 2rem; }
.stat-item p { font-size: .875rem; color: rgba(255,255,255,.65); margin: 0; }

.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature { text-align: center; padding: 28px 20px; }
.feature-icon { font-size: 2.25rem; margin-bottom: 12px; }
.feature h4   { margin-bottom: 8px; font-size: .95rem; }
.feature p    { font-size: .875rem; color: rgba(255,255,255,.6); margin: 0; }

/* =============================================
   GALERÍA
   ============================================= */
.galeria-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}
.g-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--gray-light), #D1D5DB);
    cursor: pointer;
}
.g-item.g-tall { grid-row: span 2; aspect-ratio: unset; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.g-item:hover img { transform: scale(1.07); }
.g-label {
    position: absolute;
    bottom: 14px; left: 14px;
    background: rgba(0,0,0,.65);
    backdrop-filter: blur(4px);
    color: var(--white);
    font-size: .8rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 100px;
    transition: all var(--transition);
}
.g-item:hover .g-label { background: var(--red); }

/* =============================================
   CONTACTO
   ============================================= */
.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
}
.info-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.info-item strong { display: block; font-weight: 600; margin-bottom: 4px; }
.info-item p { color: var(--text-soft); font-size: .9rem; margin: 0; }
.info-item a { color: var(--red); transition: opacity var(--transition); }
.info-item a:hover { opacity: .75; }

.mapa { border-radius: var(--radius); overflow: hidden; margin-top: 8px; box-shadow: var(--shadow); }
.mapa iframe { display: block; }

.contacto-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-light);
}
.form-static { display: flex; flex-direction: column; }
.form-intro { color: var(--text-soft); font-size: .95rem; margin-bottom: 24px; line-height: 1.6; }
.form-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 4px 0 16px;
    color: var(--gray);
    font-size: .8rem;
}
.form-divider::before,
.form-divider::after { content: ''; flex: 1; height: 1px; background: var(--gray-light); }

.btn-ghost.btn-full { color: var(--text); border-color: var(--gray-light); }
.btn-ghost.btn-full:hover { background: var(--light); }

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--dark-2);
    color: rgba(255,255,255,.75);
    padding: 72px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand p { font-size: .875rem; margin-top: 16px; line-height: 1.7; }
.footer-nav h4, .footer-contact h4 {
    color: var(--white);
    font-size: .875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 16px;
}
.footer-nav ul li { padding: 5px 0; font-size: .875rem; }
.footer-nav ul li a { transition: color var(--transition); }
.footer-nav ul li a:hover { color: var(--red); }
.footer-contact p { font-size: .875rem; margin-bottom: 10px; }
.footer-contact a { color: rgba(255,255,255,.75); }
.footer-contact a:hover { color: var(--red); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: .8rem;
    color: rgba(255,255,255,.4);
}
.footer-bottom strong { color: rgba(255,255,255,.65); }

/* =============================================
   WHATSAPP FLOTANTE
   ============================================= */
.wa-float {
    position: fixed;
    bottom: 28px; right: 28px;
    z-index: 900;
    background: #25D366;
    color: var(--white);
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,.45);
    transition: all var(--transition);
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 6px 28px rgba(37,211,102,.55); }
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }
.wa-tooltip {
    position: absolute;
    right: 72px;
    background: var(--dark);
    color: var(--white);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: .8rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(8px);
    transition: all var(--transition);
    pointer-events: none;
}
.wa-tooltip::after {
    content: '';
    position: absolute;
    left: 100%; top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--dark);
}

/* =============================================
   ANIMACIONES DE ENTRADA
   ============================================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .stats-grid, .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .section { padding: 64px 0; }
    h2 { font-size: 1.75rem; }

    .menu-toggle { display: flex; }

    /* En móvil el grid pasa a 2 columnas: logo | nav-end (con solo el hamburguesa) */
    .header .container { grid-template-columns: 1fr auto; gap: 16px; }

    /* Ocultar botones de acción del nav-end en móvil (van dentro del drawer) */
    .nav-end .nav-cta,
    .nav-end .nav-igualados { display: none; }

    /* Backdrop oscuro al abrir menú */
    .nav-backdrop {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,.6);
        backdrop-filter: blur(3px);
        z-index: 998;
        opacity: 0;
        transition: opacity .3s ease;
    }
    .nav-backdrop.open { display: block; opacity: 1; }

    .nav {
        position: fixed;
        top: 0; right: -100%;
        width: 82%; max-width: 340px;
        height: 100vh;
        background: linear-gradient(160deg, #0d0d1a 0%, #1a1a2e 60%, #1c0a0c 100%);
        padding: 0;
        transition: right .35s cubic-bezier(.4,0,.2,1);
        box-shadow: -12px 0 40px rgba(0,0,0,.5);
        z-index: 999;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
    .nav.open { right: 0; }

    /* Cabecera del drawer */
    .nav::before {
        content: '';
        display: block;
        height: 72px;
        border-bottom: 1px solid rgba(255,255,255,.07);
        flex-shrink: 0;
    }

    .nav ul {
        flex-direction: column;
        gap: 0;
        padding: 16px 20px;
        overflow-y: auto;
    }
    .nav ul li { width: 100%; }
    .nav a {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: .97rem;
        padding: 13px 16px;
        border-radius: 10px;
        color: rgba(255,255,255,.75);
        width: 100%;
    }
    .nav a::after { display: none; }
    .nav a:hover {
        background: rgba(255,255,255,.08);
        color: var(--white);
        padding-left: 20px;
    }

    /* Botones de acción dentro del drawer */
    .nav-drawer-actions {
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding: 16px 20px 28px;
        border-top: 1px solid rgba(255,255,255,.08);
        margin-top: 4px;
    }
    .nav-drawer-actions .nav-cta {
        justify-content: center;
        box-shadow: 0 2px 12px rgba(190,32,38,.35) !important;
    }
    .nav-drawer-actions .nav-igualados {
        justify-content: flex-start;
    }

    .hero-btns { flex-direction: column; }
    .hero-btns .btn { text-align: center; }

    .two-col { grid-template-columns: 1fr; gap: 40px; }
    .col-img { order: -1; }
    .mv-grid { grid-template-columns: 1fr; }

    .cards-grid { grid-template-columns: 1fr; }

    .galeria-grid { grid-template-columns: 1fr 1fr; }
    .g-item.g-tall { grid-row: span 1; aspect-ratio: 4/3; }

    .contacto-grid { grid-template-columns: 1fr; }
    .contacto-form { padding: 28px 20px; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }

    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .galeria-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 2rem; }
}

/* =============================================
   SCROLL PROGRESS BAR
   ============================================= */
.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--red), #ff6b6b);
    z-index: 9999;
    transition: width .1s linear;
    border-radius: 0 3px 3px 0;
}

/* =============================================
   IGUALADOS / PORTAL NAV BUTTONS
   ============================================= */
.nav-igualados {
    background: transparent !important;
    color: rgba(255,255,255,.82) !important;
    border: 1.5px solid rgba(255,255,255,.22) !important;
    padding: 7px 15px !important;
    border-radius: 8px !important;
    transition: all .22s ease !important;
    display: inline-flex !important;
    align-items: center;
    gap: 7px;
    font-size: .875rem !important;
    letter-spacing: .01em;
}
.nav-igualados::after { display: none !important; }
.nav-igualados i { font-size: .85rem; }
.nav-igualados:hover {
    background: rgba(255,255,255,.1) !important;
    border-color: rgba(255,255,255,.5) !important;
    color: var(--white) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0,0,0,.2);
}
.header.scrolled .nav-igualados {
    border-color: rgba(255,255,255,.18) !important;
}

/* =============================================
   FONT AWESOME ICON OVERRIDES
   ============================================= */
.mv-icon i {
    font-size: 1.4rem;
    color: var(--red);
}
.feature-icon i {
    font-size: 2rem;
    color: rgba(255,255,255,.85);
}
.info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    background: rgba(190,32,38,.08);
    border-radius: 10px;
    flex-shrink: 0;
    margin-top: 2px;
}
.info-icon i {
    font-size: 1.1rem;
    color: var(--red);
}
.footer-contact i {
    color: var(--red);
    width: 16px;
    margin-right: 4px;
}
.btn i { font-size: .9em; }

/* =============================================
   STAT COUNTER ANIMATION
   ============================================= */
.stat-num[data-target] { transition: none; }

/* =============================================
   HERO FLOATING SHAPES
   ============================================= */
.hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: .06;
    animation: floatShape linear infinite;
}
.hero-shape:nth-child(1) {
    width: 280px; height: 280px;
    background: var(--red);
    top: 10%; right: 15%;
    animation-duration: 18s;
}
.hero-shape:nth-child(2) {
    width: 180px; height: 180px;
    background: white;
    bottom: 20%; right: 30%;
    animation-duration: 24s;
    animation-delay: -8s;
}
.hero-shape:nth-child(3) {
    width: 120px; height: 120px;
    background: var(--red);
    top: 50%; right: 5%;
    animation-duration: 15s;
    animation-delay: -4s;
}
@keyframes floatShape {
    0%   { transform: translateY(0) scale(1); }
    33%  { transform: translateY(-30px) scale(1.04); }
    66%  { transform: translateY(15px) scale(.97); }
    100% { transform: translateY(0) scale(1); }
}

/* =============================================
   TOOLTIP / BADGE IMPROVEMENTS
   ============================================= */
/* (linea-card list arrows kept in original rules above) */
