/* =====================================================
   BLINDAJES DEL NORTE - ESTILOS PRINCIPALES
   Colores: Blanco | #F5004F | #242B3A | #535964
   ===================================================== */

:root {
    /* ── Colores ── */
    --red:        #F5004F;
    --dark:       #242B3A;
    --gray:       #535964;
    --white:      #FFFFFF;
    --light:      #f5f7fa;
    --red-dark:   #c8003f;
    --red-light:  #ff4d80;

    /* ════════════════════════════════════════
       TAMAÑOS DE TÍTULOS — cambia aquí para
       actualizar TODO el sitio de una vez
       ════════════════════════════════════════ */

    /* Secciones */
    --fs-eyebrow:       17px;   /* "NUESTROS SERVICIOS", etiquetas pequeñas */
    --fs-sec-title:     clamp(48px, 5.5vw, 78px); /* H2 principales de sección */
    --fs-sec-desc:      22px;   /* Párrafo descriptivo bajo el H2 */

    /* Feature band (módulo bicolor) */
    --fs-fb-title:      54px;   /* H2 dentro del feature band */
    --fs-fb-body:       21px;   /* Párrafo del feature band */
    --fs-fb-list:       19px;   /* Items de lista del feature band */

    /* Tarjetas */
    --fs-card-title:    30px;   /* H3 nombre del servicio */
    --fs-card-sub:      19px;   /* H4 subtítulo de tarjeta */
    --fs-card-detail:   16px;   /* H5 detalle de tarjeta */
    --fs-card-body:     18px;   /* Párrafo de tarjeta */
    --fs-card-feat:     16px;   /* Items de características */

    /* Estadísticas */
    --fs-stat-num:      76px;   /* Número grande (5000+, 20+) */
    --fs-stat-lbl:      17px;   /* Etiqueta bajo el número */

    /* Acordeón */
    --fs-acc-title:     19px;   /* Título del ítem acordeón */

    /* Navegación */
    --fs-nav-line1:     14px;   /* Primera línea del nav (QUIÉNES) */
    --fs-nav-line2:     12px;   /* Segunda línea del nav (SOMOS) */

    /* Botones */
    --fs-btn:           17px;   /* Texto de botones CTA */

    /* Footer */
    --fs-footer-title:  28px;   /* Títulos de columna footer */
    --fs-footer-body:   16px;   /* Texto de footer */
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--white);
    color: var(--dark);
    overflow-x: hidden;
}

/* ===== BARRA SUPERIOR REDES SOCIALES ===== */
/* OLD .topbar - replaced by .topbar-v2 */
.topbar_old {
    background: var(--dark);
    padding: 10px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.topbar_old-left {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    display: flex;
    gap: 25px;
    align-items: center;
}
.topbar-left span { display: flex; align-items: center; gap: 6px; }
.topbar_old-social {
    display: flex;
    gap: 8px;
    align-items: center;
}
.social-btn {
    width: 34px; height: 34px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
    color: white;
}
.social-btn:hover { transform: translateY(-3px) scale(1.1); }
.social-fb  { background: #1877F2; }
.social-ig  { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-yt  { background: #FF0000; }
.social-tw  { background: #1DA1F2; }
.social-pt  { background: #E60023; }

/* ===== HEADER ===== */
header {
    position: sticky; top: 0; z-index: 9999;
    background: var(--white);
    border-bottom: 4px solid var(--red);
    box-shadow: 0 3px 20px rgba(0,0,0,0.1);
    padding: 0 40px;
    height: 118px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo-img {
    height: 98px;
    width: auto;
    object-fit: contain;
    margin: 10px 0;
}
nav {
    display: flex;
    align-items: center;
    gap: 6px;
}
nav a.nav-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    padding: 13px 18px 7px;
    border-radius: 5px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0;
    white-space: nowrap;
}
nav a.nav-link:hover,
nav a.nav-link.active { background: var(--red); color: var(--white); }

.nav-item:hover > a.nav-link {
    background: var(--red);
    color: var(--white);
    border-radius: 5px 5px 0px 0px;
}

/* BOTONES SOLO ICONO */
.nav-icon-btn {
    width: 58px; height: 58px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    font-size: 26px;
    transition: all 0.3s;
    flex-shrink: 0;
    border: none;
    cursor: pointer;
}
.nav-icon-btn.home-btn {
    background: var(--dark);
    color: var(--white);
}
.nav-icon-btn.home-btn:hover { background: var(--red); transform: scale(1.1); }
.nav-icon-btn.contact-btn {
    background: var(--red);
    color: var(--white);
}
.nav-icon-btn.contact-btn:hover { background: var(--dark); transform: scale(1.1); }

/* ===== HAMBURGER MENU ===== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 48px; height: 48px;
    background: var(--dark);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    padding: 10px;
    flex-shrink: 0;
    transition: background 0.2s;
    z-index: 10001;
}
.hamburger:hover { background: var(--red); }
.hamburger span {
    display: block;
    width: 26px; height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}
/* Animated X when open */
.hamburger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Overlay behind open mobile menu */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 9990;
    backdrop-filter: blur(2px);
}
.nav-overlay.active { display: block; }

/* ===== MOBILE NAV (hamburger open) ===== */
@media (max-width: 1023px) {
    /* Show hamburger button */
    .hamburger { display: flex !important; }

    /* STEP 1: Remove nav completely from header flow */
    header #mainNav {
        display: none !important;
    }

    /* STEP 2: When open class is added, show as slide-in side panel */
    #mainNav.open {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        width: min(320px, 85vw) !important;
        height: 100vh !important;
        background: var(--dark) !important;
        gap: 0 !important;
        padding: 100px 0 40px !important;
        overflow-y: auto !important;
        z-index: 10000 !important;
        box-shadow: -8px 0 40px rgba(0,0,0,0.55) !important;
        animation: slideInNav 0.30s cubic-bezier(.4,0,.2,1) both !important;
    }
    @keyframes slideInNav {
        from { transform: translateX(100%); opacity: 0.6; }
        to   { transform: translateX(0);    opacity: 1;   }
    }

    /* Nav links inside mobile panel */
    #mainNav.open a.nav-link {
        width: 100% !important;
        border-radius: 0 !important;
        padding: 16px 28px !important;
        font-size: 15px !important;
        color: rgba(255,255,255,0.85) !important;
        border-bottom: 1px solid rgba(255,255,255,0.07) !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 3px !important;
        white-space: normal !important;
        background: transparent !important;
    }
    #mainNav.open a.nav-link:hover,
    #mainNav.open a.nav-link.active {
        background: var(--red) !important;
        color: white !important;
    }
    #mainNav.open a.nav-link .nl1 { font-size: 15px !important; font-weight: 800 !important; }
    #mainNav.open a.nav-link .nl2 { font-size: 12px !important; font-weight: 500 !important; opacity: 0.75 !important; }

    /* Nav icon buttons (home/contact) inside mobile panel */
    #mainNav.open .nav-icon-btn {
        width: 100% !important;
        border-radius: 0 !important;
        height: auto !important;
        padding: 16px 28px !important;
        justify-content: flex-start !important;
        gap: 14px !important;
        color: rgba(255,255,255,0.85) !important;
        border: none !important;
        border-bottom: 1px solid rgba(255,255,255,0.07) !important;
        background: transparent !important;
        font-size: 15px !important;
    }
    #mainNav.open .nav-icon-btn img { width: 26px !important; height: 26px !important; }
    #mainNav.open .nav-icon-btn:hover { background: var(--red) !important; }

    /* Compact header on mobile */
    header {
        height: 72px !important;
        padding: 0 16px !important;
    }
    .logo-img { height: 54px !important; }
}

/* ===== ANNOUNCEMENT TICKER ===== */
.ticker-bar {
    background: var(--red);
    padding: 8px 0;
    overflow: hidden;
}
.ticker-content {
    display: flex;
    gap: 60px;
    animation: ticker 10s linear infinite;
    white-space: nowrap;
}
.ticker-content span {
    font-size: 13px;
    font-weight: 700;
    color: white;
    letter-spacing: 0;
}
.ticker-content span::before { content: "🔒 "; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Ticker — mobile: texto más pequeño, velocidad mayor */
@media (max-width: 768px) {
    .ticker-bar { padding: 10px 0; }
    .ticker-content {
        gap: 55px;
        animation-duration: 8s;
    }
    .ticker-content span { font-size: 13px; }
}
@media (max-width: 480px) {
    .ticker-content {
        gap: 40px;
        animation-duration: 6s;
    }
    .ticker-content span { font-size: 12px; }
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: var(--dark);
    display: flex;
    flex-direction: column;
}
.hero-slide {
    position: absolute; inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
    background-size: cover;
    background-position: center;
}
.hero-slide.active { opacity: 1; }
.hs1 { background: linear-gradient(135deg, #0a0e18 0%, #1a2035 40%, #242B3A 100%); }
.hs2 { background: linear-gradient(135deg, #1a0010 0%, #3a0025 50%, #242B3A 100%); }
.hs3 { background: linear-gradient(135deg, #0d1a10 0%, #1a3020 50%, #242B3A 100%); }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(100deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
}
.hero-bg-icon {
    position: absolute;
    right: -80px; top: 50%;
    transform: translateY(-50%);
    font-size: 700px;
    opacity: 0.03;
    pointer-events: none;
    z-index: 1;
}
.hero-main {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 120px 80px 60px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}
.hero-left { max-width: 700px; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 0, 79, 0.15);
    border: 1px solid rgba(245, 0, 79, 0.4);
    color: var(--red-light);
    font-size: 13px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0;
    margin-bottom: 30px;
}
.hero h1 {
    font-size: clamp(50px, 7vw, 90px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 25px;
    letter-spacing: 0;
}
.hero h1 em { color: var(--red); font-style: normal; }
.hero-subtitle {
    font-size: clamp(18px, 2.2vw, 24px);
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 400;
    max-width: 600px;
}
.hero-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 40px;
}
.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.85);
    font-size: 16px;
    font-weight: 600;
}
.hero-feature .check {
    width: 24px; height: 24px;
    background: var(--red);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}
.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
.hero-right {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-shrink: 0;
}
.hero-stat-card {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 14px;
    padding: 22px 30px;
    color: var(--white);
    text-align: center;
    min-width: 160px;
}
.hero-stat-card .num {
    font-size: 48px;
    font-weight: 900;
    color: var(--red);
    line-height: 1;
    margin-bottom: 6px;
}
.hero-stat-card .lbl {
    font-size: 13px;
    opacity: 0.75;
    text-transform: uppercase;
    letter-spacing: 0;
}
.hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.trust-avatars { display: flex; }
.trust-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    background: linear-gradient(135deg, var(--red), var(--dark));
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    margin-left: -10px;
}
.trust-avatar:first-child { margin-left: 0; }
.trust-text { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.4; }
.trust-text strong { color: var(--white); display: block; font-size: 16px; }
.hero-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 14px;
    align-items: center;
}
.hero-dot {
    width: 16px; height: 16px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    cursor: pointer;
    border: 2px solid rgba(255,255,255,0.5);
    transition: all 0.3s;
    flex-shrink: 0;
}
.hero-dot:hover { background: rgba(255,255,255,0.6); transform: scale(1.15); }
.hero-dot.active { background: var(--red); width: 44px; border-radius: 8px; border-color: var(--red); }

/* ===== SERVICIOS RÁPIDOS BAJO HERO ===== */
.quick-services {
    background: var(--white);
    box-shadow: 0 12px 50px rgba(0,0,0,0.12);
    position: relative;
    z-index: 5;
    border-top: 3px solid var(--red);
}
.qs-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    max-width: 1500px;
    margin: 0 auto;
}
.qs-item {
    padding: 36px 18px 30px;
    text-align: center;
    border-right: 1px solid #eee;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    text-decoration: none;
    color: var(--dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    position: relative;
    overflow: hidden;
}
.qs-item::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform 0.35s ease;
    transform-origin: center;
}
.qs-item:hover::after { transform: scaleX(1); }
.qs-item:last-child { border: none; }
.qs-item:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.15);
    z-index: 2;
}
.qs-item:hover .qs-icon {
    background: var(--red);
    transform: scale(1.08);
}
.qs-item:hover .qs-icon span { filter: brightness(10); }
.qs-item:hover .qs-sub { color: rgba(255,255,255,0.6); }
.qs-icon {
    width: 80px; height: 80px;
    border-radius: 18px;
    background: #f4f6fb;
    display: flex; align-items: center; justify-content: center;
    font-size: 36px;
    transition: all 0.35s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.qs-item h5 {
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
    line-height: 1.3;
    margin: 0;
}
.qs-sub {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--gray);
    line-height: 1.4;
    transition: color 0.3s;
}
@media(max-width: 1100px) {
    .qs-grid { grid-template-columns: repeat(4, 1fr); }
    .qs-item:nth-child(4) { border-right: none; }
}
@media(max-width: 700px) {
    .qs-grid { grid-template-columns: repeat(2, 1fr); }
    .qs-item { border-right: none; border-bottom: 1px solid #eee; }
}

/* ===== SECCIONES GENERALES ===== */
section { padding: 110px 0; }
section.bg-light { background: var(--light); }
section.bg-dark { background: var(--dark); }

.container { max-width: 1400px; margin: 0 auto; padding: 0 60px; }

.sec-eyebrow {
    font-size: var(--fs-eyebrow);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
    color: var(--red);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.sec-eyebrow::before {
    content: '';
    width: 30px; height: 3px;
    background: var(--red);
    border-radius: 2px;
    display: inline-block;
}

h2.sec-title {
    font-size: var(--fs-sec-title);
    font-weight: 900;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: 0;
}
h2.sec-title em { color: var(--red); font-style: normal; }
h2.sec-title.white { color: var(--white); }

.sec-desc {
    font-size: var(--fs-sec-desc);
    color: var(--gray);
    line-height: 1.85;
    max-width: 760px;
    margin-bottom: 70px;
}
.sec-divider {
    width: 80px; height: 6px;
    background: var(--red);
    border-radius: 3px;
    margin: 20px 0 30px;
}

/* ===== CARDS ===== */
.cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 35px; }
.card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.07);
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    position: relative;
}
.card::before {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 4px; background: var(--red);
    transform: scaleX(0); transition: transform 0.4s;
}
.card:hover { transform: translateY(-10px); box-shadow: 0 25px 50px rgba(245,0,79,0.18); }
.card:hover::before { transform: scaleX(1); }
.card-img {
    height: 240px;
    display: flex; align-items: center; justify-content: center;
    font-size: 90px;
    position: relative;
    overflow: hidden;
}
.ci1 { background: linear-gradient(135deg, #242B3A 0%, #3a4560 100%); }
.ci2 { background: linear-gradient(135deg, #F5004F 0%, #ff4d80 100%); }
.ci3 { background: linear-gradient(135deg, #535964 0%, #7a8592 100%); }
.ci4 { background: linear-gradient(135deg, #1a2235 0%, #2d3850 100%); }
.ci5 { background: linear-gradient(135deg, #c8003f 0%, #F5004F 100%); }
.ci6 { background: linear-gradient(135deg, #3d4452 0%, #535964 100%); }
.card-badge {
    position: absolute; top: 18px; left: 18px;
    background: var(--red); color: white;
    font-size: 13px; font-weight: 800;
    padding: 6px 16px; border-radius: 20px;
    text-transform: uppercase; letter-spacing: 0;
}
.card-body { padding: 38px; }
h3.card-title {
    font-size: var(--fs-card-title);
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.2;
}
h4.card-sub {
    font-size: var(--fs-card-sub);
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0;
    margin-bottom: 10px;
}
h5.card-detail {
    font-size: var(--fs-card-detail);
    font-weight: 600;
    color: var(--gray);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0;
}
.card-body p {
    font-size: var(--fs-card-body);
    color: #555;
    line-height: 1.85;
    margin-bottom: 20px;
}
.card-features { list-style: none; margin-bottom: 22px; }
.card-features li {
    font-size: 16px;
    color: var(--gray);
    padding: 9px 0;
    display: flex; align-items: center; gap: 12px;
    border-bottom: 1px dashed #eee;
}
.card-features li:last-child { border: none; }
.card-features li::before { content: "✓"; color: var(--red); font-weight: 900; font-size: 17px; }
.card-link {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--red); font-size: 16px; font-weight: 800;
    text-decoration: none; text-transform: uppercase;
    letter-spacing: 0; transition: gap 0.3s;
}
.card-link:hover { gap: 16px; }

/* ===== BOTONES GENERALES ===== */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 19px 44px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 17px;
    letter-spacing: 0;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    text-transform: uppercase;
}
.btn-red { background: var(--red); color: white; }
.btn-red:hover { background: var(--red-dark); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(245,0,79,0.4); }
.btn-dark { background: var(--dark); color: white; }
.btn-dark:hover { background: #1a2030; transform: translateY(-3px); }
.btn-outline-white { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: white; color: var(--dark); }
.btn-outline-red { background: transparent; color: var(--red); border: 2px solid var(--red); }
.btn-outline-red:hover { background: var(--red); color: white; }
.btn-white { background: white; color: var(--red); }
.btn-white:hover { background: var(--dark); color: white; }

/* ===== MAIN SLIDER ===== */
.main-slider { position: relative; overflow: hidden; border-radius: 20px; margin-bottom: 70px; box-shadow: 0 20px 60px rgba(0,0,0,0.2); }
.slider-track { display: flex; transition: transform 0.6s cubic-bezier(0.4,0,0.2,1); }
.slider-slide {
    min-width: 100%; height: 520px;
    display: flex; align-items: center;
    position: relative; overflow: hidden;
}
.ss1 { background: linear-gradient(135deg, var(--dark) 0%, #3a4560 100%); }
.ss2 { background: linear-gradient(135deg, var(--red) 0%, #ff4d80 100%); }
.ss3 { background: linear-gradient(135deg, var(--gray) 0%, #7a8592 100%); }
.ss4 { background: linear-gradient(135deg, #0d1117 0%, var(--dark) 100%); }
.slider-bg-icon {
    position: absolute; right: 40px; top: 50%;
    transform: translateY(-50%); font-size: 280px;
    opacity: 0.08; pointer-events: none;
}
.slider-slide-inner { padding: 70px; z-index: 2; color: white; }
.slider-slide-inner h2 { font-size: 50px; font-weight: 900; margin-bottom: 15px; }
.slider-slide-inner h3 { font-size: 26px; font-weight: 600; margin-bottom: 20px; opacity: 0.9; }
.slider-slide-inner p { font-size: 18px; opacity: 0.8; max-width: 550px; line-height: 1.8; margin-bottom: 30px; }
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 16px;
    z-index: 10;
    pointer-events: none;
}
.slider-arrow {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: rgba(255,255,255,0.22);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 3px solid rgba(255,255,255,0.55);
    color: white;
    font-size: 0; /* hide char, use SVG */
    cursor: pointer;
    pointer-events: all;
    transition: all 0.28s cubic-bezier(0.4,0,0.2,1);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 24px rgba(0,0,0,0.30);
    flex-shrink: 0;
    position: relative;
}
/* SVG arrows via pseudo-elements */
.slider-arrow::before {
    content: '';
    display: block;
    width: 28px; height: 28px;
    border-top: 4px solid white;
    border-right: 4px solid white;
    border-radius: 2px;
    transition: border-color 0.28s;
}
.slider-arrow:first-child::before {
    transform: rotate(-135deg) translateX(4px);
}
.slider-arrow:last-child::before {
    transform: rotate(45deg) translateX(-4px);
}
.slider-arrow:hover {
    background: var(--red);
    border-color: var(--red);
    transform: scale(1.1);
    box-shadow: 0 10px 36px rgba(245,0,79,0.5);
}
.slider-arrow:hover::before { border-color: white; }
.slider-arrow:active { transform: scale(0.96); }

/* Dots */
.slider-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 24px;
}
.sl-dot {
    width: 14px; height: 14px;
    border-radius: 50%;
    background: rgba(0,0,0,0.18);
    border: 2px solid rgba(0,0,0,0.10);
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}
.sl-dot:hover { background: rgba(245,0,79,0.45); }
.sl-dot.active {
    background: var(--red);
    width: 38px;
    border-radius: 7px;
    border-color: var(--red);
}

/* ── Responsive slider nav ── */
@media (max-width: 768px) {
    .slider-arrow {
        width: 52px; height: 52px;
    }
    .slider-arrow::before {
        width: 20px; height: 20px;
        border-top-width: 3px;
        border-right-width: 3px;
    }
    .slider-nav { padding: 0 8px; }
    .sl-dot { width: 11px; height: 11px; }
    .sl-dot.active { width: 28px; }
}
@media (max-width: 480px) {
    .slider-arrow {
        width: 44px; height: 44px;
        border-width: 2px;
    }
    .slider-arrow::before {
        width: 16px; height: 16px;
    }
}

/* ===== CARRUSEL ===== */
.carousel-wrap { position: relative; }
.carousel-track {
    display: flex; gap: 25px;
    overflow-x: auto; scroll-behavior: smooth;
    scrollbar-width: none; padding: 15px 5px;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-card {
    min-width: 290px; border-radius: 14px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow: hidden; flex-shrink: 0;
    background: white; transition: transform 0.3s;
}
.carousel-card:hover { transform: translateY(-7px); }
.cc-img {
    height: 170px;
    display: flex; align-items: center; justify-content: center; font-size: 65px;
}
.cc1 { background: linear-gradient(135deg, #242B3A, #3a4560); }
.cc2 { background: linear-gradient(135deg, #F5004F, #ff4d80); }
.cc3 { background: linear-gradient(135deg, #535964, #7a8592); }
.cc4 { background: linear-gradient(135deg, #1a2235, #242B3A); }
.cc5 { background: linear-gradient(135deg, #c8003f, #F5004F); }
.cc-body { padding: 26px; }
.cc-body h4 { font-size: 22px; font-weight: 900; color: var(--dark); margin-bottom: 8px; }
.cc-body h5 { font-size: 15px; color: var(--red); font-weight: 800; text-transform: uppercase; letter-spacing: 0; margin-bottom: 12px; }
.cc-body p { font-size: 17px; color: var(--gray); line-height: 1.75; }
.carousel-arrows { display: flex; gap: 10px; justify-content: flex-end; margin-top: 20px; }
.car-btn {
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--dark); color: white;
    border: none; cursor: pointer; font-size: 18px;
    transition: all 0.3s; display: flex; align-items: center; justify-content: center;
}
.car-btn:hover { background: var(--red); transform: scale(1.1); }

/* ===== ACORDEÓN ===== */
.accordion-list { display: flex; flex-direction: column; gap: 14px; }
.acc-item { border-radius: 12px; overflow: hidden; box-shadow: 0 3px 15px rgba(0,0,0,0.07); }
.acc-header {
    background: var(--dark); color: white;
    padding: 24px 32px;
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    transition: background 0.3s; user-select: none;
}
.acc-header:hover,
.acc-header.open { background: var(--red); }
.acc-header h4 {
    font-size: 18px; font-weight: 700;
    color: white; margin: 0; line-height: 1.4;
}
.acc-icon { font-size: 24px; transition: transform 0.3s; flex-shrink: 0; margin-left: 20px; }
.acc-header.open .acc-icon { transform: rotate(45deg); }
.acc-body { background: white; max-height: 0; overflow: hidden; transition: max-height 0.45s ease; }
.acc-body.open { max-height: 700px; }
.acc-inner { padding: 30px 32px; border-left: 5px solid var(--red); }
.acc-inner h5 { font-size: 15px; font-weight: 800; color: var(--red); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0; }
.acc-inner h6 { font-size: 14px; font-weight: 700; color: var(--dark); margin: 15px 0 8px; }
.acc-inner p { font-size: 15px; color: var(--gray); line-height: 1.9; margin-bottom: 10px; }

/* ===== STATS BAR ===== */
.stats-bar {
    background: linear-gradient(135deg, var(--dark) 0%, #1a2235 100%);
    padding: 80px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.stat-item {
    text-align: center; padding: 45px 30px;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border: none; }
.stat-num {
    font-size: 76px; font-weight: 900;
    color: var(--red); display: block;
    line-height: 1; margin-bottom: 14px;
}
.stat-lbl {
    font-size: 17px; color: rgba(255,255,255,0.75);
    text-transform: uppercase; letter-spacing: 0;
}

/* ===== FEATURE BAND ===== */
.feature-band {
    display: grid; grid-template-columns: 1fr 1fr;
    min-height: 540px; border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0,0,0,0.15);
    margin: 70px 0;
}
.fb-img {
    display: flex; align-items: center; justify-content: center;
    font-size: 180px; position: relative; overflow: hidden;
}
.fb-img-1 { background: linear-gradient(135deg, #0d1117, #242B3A); }
.fb-img-2 { background: linear-gradient(135deg, var(--red), var(--red-dark)); }
.fb-img::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(45deg, rgba(245,0,79,0.25), transparent);
}
.fb-content {
    padding: 70px; background: white;
    display: flex; flex-direction: column; justify-content: center;
}
.fb-content h2 { font-size: var(--fs-fb-title); line-height: 1.15; margin-bottom: 18px; }
.fb-content p { font-size: var(--fs-fb-body); color: var(--gray); line-height: 1.85; margin-bottom: 28px; }
.fb-list { list-style: none; }
.fb-list li {
    display: flex; align-items: center; gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 19px; font-weight: 600; color: var(--dark);
}
.fb-list li:last-child { border: none; }
.fb-list li .ic { font-size: 28px; }

/* ===== VIDEOS ===== */
.video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 60px; }
.video-card { border-radius: 14px; overflow: hidden; box-shadow: 0 10px 35px rgba(0,0,0,0.15); }
.v-thumb {
    height: 270px;
    display: flex; align-items: center; justify-content: center;
    font-size: 90px; position: relative; cursor: pointer;
}
.vt1 { background: linear-gradient(135deg, #0d1117, #242B3A); }
.vt2 { background: linear-gradient(135deg, #1a0010, #3a0025); }
.vt3 { background: linear-gradient(135deg, #1a2235, #3a4560); }
.vt4 { background: linear-gradient(135deg, #2d1020, #500030); }
.play-btn {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 75px; height: 75px; border-radius: 50%;
    background: rgba(245,0,79,0.92);
    display: flex; align-items: center; justify-content: center;
    font-size: 30px; color: white;
    transition: all 0.3s; cursor: pointer;
}
.play-btn:hover { transform: translate(-50%,-50%) scale(1.15); }
.v-label { padding: 22px 25px; background: var(--dark); }
.v-label h4 { font-size: 17px; font-weight: 800; color: white; margin-bottom: 6px; }
.v-label p { font-size: 13px; color: rgba(255,255,255,0.55); }

/* ===== TESTIMONIOS ===== */
.test-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 60px; }
.test-card {
    background: white; padding: 40px; border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.07);
    border-top: 5px solid var(--red); position: relative;
}
.test-quote { font-size: 80px; color: var(--red); opacity: 0.15; position: absolute; top: 10px; right: 20px; font-family: Georgia, serif; line-height: 1; }
.test-stars { color: #ffc107; font-size: 20px; margin-bottom: 18px; }
.test-card p { font-size: 15px; color: var(--gray); line-height: 1.9; font-style: italic; margin-bottom: 25px; }
.test-author { display: flex; align-items: center; gap: 14px; }
.test-av { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; }
.tav1 { background: linear-gradient(135deg, #242B3A, #3a4560); }
.tav2 { background: linear-gradient(135deg, #F5004F, #ff4d80); }
.tav3 { background: linear-gradient(135deg, #535964, #7a8592); }
.test-author-info strong { font-size: 15px; font-weight: 800; color: var(--dark); display: block; }
.test-author-info span { font-size: 13px; color: var(--red); font-weight: 700; }

/* ===== CTA ===== */
.cta-section {
    background: linear-gradient(135deg, var(--red) 0%, #c8003f 100%);
    padding: 110px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
    content: '🛡️'; position: absolute;
    font-size: 500px; opacity: 0.03;
    top: 50%; left: 50%; transform: translate(-50%,-50%);
    pointer-events: none;
}
.cta-section h2 { color: white; font-size: clamp(38px,5vw,65px); margin-bottom: 22px; letter-spacing: 0; }
.cta-section p { color: rgba(255,255,255,0.88); font-size: 20px; max-width: 650px; margin: 0 auto 45px; line-height: 1.8; }
.cta-btns { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACTO ===== */
#contacto { background: var(--dark); padding: 110px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.contact-info h2 { color: white; margin-bottom: 12px; }
.contact-info p { color: rgba(255,255,255,0.65); font-size: 17px; line-height: 1.9; margin-bottom: 45px; }
.contact-item { display: flex; align-items: center; gap: 22px; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.ci-icon { font-size: 30px; flex-shrink: 0; }
.ci-text strong { display: block; color: white; font-size: 15px; font-weight: 800; margin-bottom: 3px; }
.ci-text span { color: rgba(255,255,255,0.55); font-size: 15px; }
.contact-form { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 18px; padding: 45px; }
.contact-form h3 { color: white; font-size: 26px; font-weight: 900; margin-bottom: 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 12px; font-weight: 800; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0; }
.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    color: white; padding: 14px 18px;
    border-radius: 8px; font-size: 15px;
    transition: border-color 0.3s;
    font-family: inherit;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { outline: none; border-color: var(--red); }
.form-group select option { background: var(--dark); color: white; }
.form-group textarea { height: 110px; resize: none; }
.mb16 { margin-bottom: 16px; }
.mb25 { margin-bottom: 25px; }

/* ===== FOOTER ===== */
footer { background: #0a0d14; color: rgba(255,255,255,0.5); padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 55px; }
.footer-logo { height: 60px; width: auto; margin-bottom: 20px; filter: brightness(1.1); }
.footer-brand p { font-size: 14px; line-height: 1.9; max-width: 300px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
    width: 38px; height: 38px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 17px; color: white; text-decoration: none;
    transition: all 0.3s;
}
.footer-social a:hover { transform: translateY(-4px) scale(1.15); }
.footer-col h4 { font-size: 15px; font-weight: 900; color: white; text-transform: uppercase; letter-spacing: 0; margin-bottom: 22px; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.45); text-decoration: none; padding: 5px 0; transition: color 0.3s; }
.footer-col a:hover { color: var(--red); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 28px;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px;
}
.footer-bottom p { font-size: 13px; }

/* ===== RESPONSIVE ===== */
@media(max-width:1200px) {
    .cards-grid { grid-template-columns: repeat(2,1fr); }
    .qs-grid { grid-template-columns: repeat(4,1fr); }
    .stats-grid { grid-template-columns: repeat(2,1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    header { padding: 0 25px; }
    .container { padding: 0 35px; }
}
@media(max-width:900px) {
    nav a.nav-link { display: none; }
    .cards-grid, .video-grid, .test-grid { grid-template-columns: 1fr; }
    .feature-band, .contact-grid { grid-template-columns: 1fr; }
    .qs-grid { grid-template-columns: repeat(3,1fr); }
    .hero-right { display: none; }
    .hero-main { padding: 100px 40px 60px; }
    .form-row { grid-template-columns: 1fr; }
}
@media(max-width:600px) {
    .topbar { display: none; }
    .hero h1 { font-size: 42px; }
    .qs-grid { grid-template-columns: repeat(2,1fr); }
    .footer-grid { grid-template-columns: 1fr; }
}

/* ====================================================
   TOPBAR V2 — Top Info Bar (replaces old .topbar)
   ==================================================== */
.topbar-v2 {
    background: #0d1117;
    height: 42px;
    display: flex;
    align-items: stretch;
    border-bottom: 2px solid rgba(245,0,79,0.25);
    position: relative;
    z-index: 10001;
    overflow: hidden;
}
.topbar-v2-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.tbv2-left, .tbv2-right {
    display: flex;
    align-items: center;
    height: 42px;
}
/* Item: icon + text */
.tbv2-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    height: 42px;
    color: rgba(255,255,255,0.85);
    font-size: 13.5px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s;
    cursor: default;
}
a.tbv2-item { cursor: pointer; }
a.tbv2-item:hover { color: white; }
/* Colored icon squares */
.tbv2-ic {
    width: 22px; height: 22px;
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.tbv2-ic svg { width: 13px; height: 13px; }
.tbv2-ic-loc     { background: #F5004F; }
.tbv2-ic-phone   { background: #F5004F; }
.tbv2-ic-hours   { background: #F5004F; }
.tbv2-ic-info    { background: #F5004F; }
.tbv2-ic-contact { background: #F5004F; }
/* Vertical divider */
.tbv2-sep {
    width: 1px;
    height: 18px;
    background: rgba(255,255,255,0.16);
    flex-shrink: 0;
    align-self: center;
}
/* Social icon buttons */
.tbv2-soc {
    width: 38px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.25s;
    flex-shrink: 0;
}
.tbv2-soc svg { width: 16px; height: 16px; fill: currentColor; }
.tbv2-soc:hover { color: white; }
/* ---- Responsive: progressive hiding ---- */
/* >1200px : show all */
/* ≤1200px : hide full address text, keep icon */
@media (max-width: 1200px) {
    .tbv2-hide-xl { display: none !important; }
    .tbv2-item { padding: 0 10px; font-size: 12px; }
}
/* ≤991px : hide hours */
@media (max-width: 1023px) {
    .tbv2-hide-lg { display: none !important; }
    .topbar-v2-inner { padding: 0 20px; }
}
/* ≤768px : hide "Sobre Nosotros" & "Contacto" text (keep icons) */
@media (max-width: 768px) {
    .tbv2-hide-md { display: none !important; }
}
/* ≤576px : hide Pinterest + Instagram social */
@media (max-width: 576px) {
    .tbv2-hide-sm { display: none !important; }
    .topbar-v2-inner { padding: 0 12px; }
}
/* ≤420px : hide topbar entirely */
@media (max-width: 420px) {
    .topbar-v2 { display: none !important; }
}

/* ====================================================
   FAQ ACCORDION MEJORADO — Iconos + 5 items
   ==================================================== */
.accordion-list { display: flex; flex-direction: column; gap: 12px; }
.acc-item {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
.acc-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 30px;
    background: var(--dark);
    cursor: pointer;
    transition: background 0.25s;
    user-select: none;
}
.acc-header:hover { background: #1e2840; }
.acc-item.open .acc-header { background: var(--red); }
/* Topic icon circle */
.acc-topic-icon {
    width: 72px; height: 72px; min-width: 72px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    border: 2px solid rgba(255,255,255,0.18);
    display: flex; align-items: center; justify-content: center;
    font-size: 38px;
    transition: background 0.25s, transform 0.25s;
    flex-shrink: 0;
}
.acc-header:hover .acc-topic-icon,
.acc-item.open  .acc-topic-icon { background: rgba(255,255,255,0.25); border-color: rgba(255,255,255,0.35); transform: scale(1.08); }
.acc-header h4 {
    flex: 1;
    font-size: 19px;
    font-weight: 700;
    color: white;
    line-height: 1.35;
    margin: 0;
}
.acc-icon {
    font-size: 30px;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    transition: transform 0.35s, color 0.25s;
    line-height: 1;
    flex-shrink: 0;
}
.acc-item.open .acc-icon { transform: rotate(45deg); color: white; }
/* Body */
.acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1);
    background: #f8f9fc;
}
.acc-item.open .acc-body { max-height: 600px; }
.acc-inner {
    padding: 28px 32px 28px 90px;
    color: var(--dark);
}
.acc-inner h5 { font-size: 16px; font-weight: 800; color: var(--red); margin-bottom: 10px; }
.acc-inner h6 { font-size: 14px; font-weight: 700; color: var(--dark); margin: 14px 0 6px; }
.acc-inner p  { font-size: 15px; line-height: 1.75; color: var(--gray); margin: 0 0 10px; }


/* ====================================================
   INLINE STYLES (MOVED FROM HTML)
   ==================================================== */

        /* ====== MODAL FORMULARIO ====== */
        .modal-overlay {
            display: none;
            position: fixed; inset: 0;
            background: rgba(0,0,0,0.7);
            z-index: 20000;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        .modal-overlay.open { display: flex; }
        .modal-box {
            background: white;
            border-radius: 20px;
            padding: 50px;
            max-width: 520px;
            width: 100%;
            position: relative;
            box-shadow: 0 30px 80px rgba(0,0,0,0.3);
            animation: modalIn 0.3s ease;
        }
        @keyframes modalIn {
            from { transform: scale(0.9); opacity: 0; }
            to   { transform: scale(1); opacity: 1; }
        }
        .modal-close {
            position: absolute; top: 18px; right: 22px;
            font-size: 28px; cursor: pointer;
            color: var(--gray); line-height: 1;
            background: none; border: none; padding: 5px;
        }
        .modal-close:hover { color: var(--red); }
        .modal-icon {
            width: 70px; height: 70px; border-radius: 50%;
            background: var(--red); color: white;
            display: flex; align-items: center; justify-content: center;
            font-size: 32px; margin: 0 auto 20px;
        }
        .modal-box h2 {
            font-size: 28px; font-weight: 900;
            color: var(--dark); text-align: center;
            margin-bottom: 8px;
        }
        .modal-box p {
            font-size: 15px; color: var(--gray);
            text-align: center; margin-bottom: 30px;
            line-height: 1.7;
        }
        .modal-field {
            margin-bottom: 18px;
        }
        .modal-field label {
            display: block;
            font-size: 12px; font-weight: 800;
            color: var(--dark); text-transform: uppercase;
            letter-spacing: 0; margin-bottom: 7px;
        }
        .modal-field input,
        .modal-field select,
        .modal-field textarea {
            width: 100%; padding: 14px 18px;
            border: 2px solid #eee; border-radius: 8px;
            font-size: 15px; font-family: inherit;
            color: var(--dark); background: #fafafa;
            transition: border-color 0.3s;
            outline: none;
        }
        .modal-field input:focus,
        .modal-field select:focus,
        .modal-field textarea:focus { border-color: var(--red); background: white; }
        .modal-field textarea { height: 90px; resize: none; }
        .modal-submit {
            width: 100%; padding: 17px;
            background: var(--red); color: white;
            border: none; border-radius: 8px;
            font-size: 16px; font-weight: 800;
            font-family: inherit; cursor: pointer;
            text-transform: uppercase; letter-spacing: 0;
            transition: all 0.3s; margin-top: 10px;
        }
        .modal-submit:hover { background: var(--red-dark); transform: translateY(-2px); }

        /* ====== BOTÓN FLOTANTE TELÉFONO ====== */
        .float-phone {
            position: fixed;
            bottom: 30px; left: 30px;
            z-index: 9000;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
        }
        .float-phone-btn {
            width: 62px; height: 62px;
            border-radius: 50%;
            background: var(--red);
            color: white; font-size: 26px;
            display: flex; align-items: center; justify-content: center;
            cursor: pointer; border: none;
            box-shadow: 0 6px 25px rgba(245,0,79,0.4);
            transition: all 0.3s;
            animation: phonePulse 2.5s infinite;
        }
        .float-phone-btn:hover {
            transform: scale(1.12);
            box-shadow: 0 10px 35px rgba(245,0,79,0.55);
        }
        @keyframes phonePulse {
            0%   { box-shadow: 0 6px 25px rgba(245,0,79,0.4); }
            50%  { box-shadow: 0 6px 40px rgba(245,0,79,0.7), 0 0 0 12px rgba(245,0,79,0.08); }
            100% { box-shadow: 0 6px 25px rgba(245,0,79,0.4); }
        }
        .float-label {
            background: var(--dark); color: white;
            font-size: 12px; font-weight: 700;
            padding: 6px 14px; border-radius: 20px;
            white-space: nowrap;
            text-transform: uppercase; letter-spacing: 0;
        }

        /* ====== BOTONES NAV ICONOS ====== */
        .nav-icon-btn {
            width: 58px; height: 58px;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            text-decoration: none;
            transition: all 0.3s;
            flex-shrink: 0;
            border: 3px solid #eee;
            background: white;
            padding: 0;
            cursor: pointer;
        }
        .nav-icon-btn img {
            width: 30px; height: 30px;
            object-fit: contain;
            transition: opacity 0.2s;
        }
        .nav-icon-btn .icon-default { display: block; }
        .nav-icon-btn .icon-hover   { display: none; }
        .nav-icon-btn:hover { border-color: var(--red); background: #fff0f5; }
        .nav-icon-btn:hover .icon-default { display: none; }
        .nav-icon-btn:hover .icon-hover   { display: block; }
    
        /* ====== NAV DOS RENGLONES ====== */
        .nav-link {
            display: flex !important;
            flex-direction: column !important;
            align-items: center;
            text-align: center;
            line-height: 1.2 !important;
            padding: 6px 16px !important;
            gap: 2px;
        }
        .nav-link .nl1 {
            font-size: 14px; font-weight: 900;
            text-transform: uppercase; letter-spacing: 0;
            display: block; white-space: nowrap;
        }
        .nav-link .nl2 {
            font-size: 12px; font-weight: 600;
            text-transform: uppercase; letter-spacing: 0;
            display: block; opacity: 0.72; white-space: nowrap;
        }
        /* ====== CARD IMAGES SIMULATED ====== */
        .card-img { position: relative; overflow: hidden; }
        .card-sim-img {
            position: absolute; inset: 0;
            width: 100%; height: 100%;
            object-fit: cover; opacity: 0.45;
        }
        .card-img > span { position: relative; z-index: 2; }
        /* ====== FOOTER NUEVO ====== */
        footer.footer-new { background: var(--dark); padding: 70px 0 0; color: rgba(255,255,255,0.8); }
        .footer-new-grid {
            display: grid; grid-template-columns: 1.2fr 0.9fr 1fr;
            gap: 50px; max-width: 1280px; margin: 0 auto; padding: 0 50px 60px;
        }
        .fnew-title { font-size: 28px; font-weight: 800; color: white; margin-bottom: 8px; }
        .fnew-bar { width: 50px; height: 3px; background: var(--red); margin-bottom: 28px; }
        .fnew-services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 16px; }
        .fnew-services-grid a {
            color: rgba(255,255,255,0.68); text-decoration: none; font-size: 16px;
            padding: 6px 0; display: flex; align-items: center; gap: 8px;
            border-bottom: 1px solid rgba(255,255,255,0.06); transition: color 0.2s;
        }
        .fnew-services-grid a:hover { color: var(--red); }
        .fnew-services-grid a::before { content: "→"; color: var(--red); font-size: 11px; flex-shrink: 0; }
        .fnew-schedule-card { background: rgba(255,255,255,0.06); border-radius: 14px; padding: 22px 24px; margin-bottom: 18px; }
        .fnew-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.09); font-size: 17px; }
        .fnew-row:last-child { border-bottom: none; }
        .fnew-row .day { color: rgba(255,255,255,0.60); }
        .fnew-row .hrs { color: white; font-weight: 700; }
        .fnew-contact-btn {
            display: block; background: var(--red); color: white;
            padding: 13px 0; border-radius: 8px; text-decoration: none;
            font-weight: 800; font-size: 18px; text-align: center;
            transition: all 0.3s; width: 100%;
        }
        .fnew-contact-btn:hover { background: #c90040; transform: translateY(-2px); }
        .fnew-contact-info { margin-top: 16px; font-size: 16px; color: rgba(255,255,255,0.5); line-height: 1.9; }
        .fnew-contact-info a { color: rgba(255,255,255,0.7); text-decoration: none; }
        .fnew-why-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
        .fnew-why-thumb { width: 105px; height: 74px; border-radius: 10px; overflow: hidden; flex-shrink: 0; background: rgba(255,255,255,0.07); }
        .fnew-why-thumb img { width: 100%; height: 100%; object-fit: cover; }
        .fnew-why-eyebrow { font-size: 13px; color: var(--red); font-weight: 700; text-transform: uppercase; letter-spacing: 0; display: flex; align-items: center; gap: 4px; margin-bottom: 4px; }
        .fnew-why-eyebrow::before { content: "→"; }
        .fnew-why-title { font-size: 18px; font-weight: 800; color: white; line-height: 1.35; }
        .fnew-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 22px 50px; max-width: 1280px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
        .fnew-bottom p { color: rgba(255,255,255,0.42); font-size: 15px; margin: 0; }
        .fnew-bottom .brand { color: var(--red); font-weight: 700; }
        /* ====== SOCIAL FLOAT BAR ====== */
        /* ====== BARRA FLOTANTE REDES SOCIALES ====== */
        .social-float-bar {
            position: fixed;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            z-index: 7900;
            display: flex;
            flex-direction: column;
            gap: 6px;
            padding: 8px 0;
        }
        .sfb-btn {
            width: 50px; height: 50px;
            border-radius: 12px 0 0 12px;
            display: flex; align-items: center; justify-content: center;
            text-decoration: none;
            box-shadow: -3px 3px 14px rgba(0,0,0,0.40);
            transition: transform 0.22s ease, box-shadow 0.22s ease, width 0.22s ease;
            position: relative;
            overflow: hidden;
        }
        /* Subtle inner highlight for 3D feel */
        .sfb-btn::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 45%;
            background: rgba(255,255,255,0.13);
            border-radius: 12px 0 0 0;
            pointer-events: none;
        }
        .sfb-btn:hover {
            width: 58px;
            box-shadow: -5px 5px 20px rgba(0,0,0,0.55);
            transform: translateX(-4px);
        }
        .sfb-btn svg { width: 30px; height: 30px; position: relative; z-index: 1; }
        /* Colores exactos de la referencia */
        .sfb-fb  { background: #1877F2; }
        .sfb-tw  { background: #0f0f0f; }
        .sfb-ig  { background: #c07927; }
        .sfb-pt  { background: #cb1f37; }
        .sfb-yt  { background: #e02020; }
        /* ====== SUB-FOOTER ====== */
        .subfooter {
            background: #0d111b;
            padding: 60px 0 0;
            color: rgba(255,255,255,0.75);
            border-top: 2px solid rgba(245,0,79,0.3);
        }
        .subfooter-grid {
            display: grid;
            grid-template-columns: 1.1fr 1fr 1fr 1fr;
            gap: 40px;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 50px 50px;
        }
        .sf-logo-img { height: 62px; width: auto; margin-bottom: 16px; }
        .sf-desc { font-size: 16px; color: rgba(255,255,255,0.5); line-height: 1.8; margin-bottom: 20px; }
        .sf-social { display: flex; gap: 10px; flex-wrap: wrap; }
        .sf-social a {
            width: 36px; height: 36px; border-radius: 50%;
            background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
            display: flex; align-items: center; justify-content: center;
            transition: all 0.2s; text-decoration: none;
        }
        .sf-social a:hover { background: var(--red); border-color: var(--red); transform: translateY(-2px); }
        .sf-col-title { font-size: 24px; font-weight: 800; color: white; margin-bottom: 6px; }
        .sf-col-bar { width: 40px; height: 2px; background: var(--red); margin-bottom: 24px; }
        .sf-contact-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
        .sf-ci-icon {
            width: 40px; height: 40px; min-width: 40px;
            border-radius: 50%; background: rgba(255,255,255,0.07);
            display: flex; align-items: center; justify-content: center;
            font-size: 18px; margin-top: 2px;
        }
        .sf-ci-text span { display: block; font-size: 13px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0; margin-bottom: 3px; }
        .sf-ci-text strong { font-size: 17px; color: white; font-weight: 700; }
        .sf-news-desc { font-size: 16px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 20px; }
        .sf-news-form { display: flex; gap: 8px; margin-bottom: 12px; }
        .sf-news-input {
            flex: 1; padding: 12px 16px;
            background: rgba(255,255,255,0.07);
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 8px; color: white; font-size: 14px;
            outline: none; transition: border-color 0.2s;
        }
        .sf-news-input:focus { border-color: var(--red); }
        .sf-news-input::placeholder { color: rgba(255,255,255,0.35); }
        .sf-news-btn {
            padding: 12px 20px; background: #1a7ae8;
            color: white; border: none; border-radius: 8px;
            font-weight: 800; font-size: 14px; cursor: pointer;
            transition: background 0.2s; white-space: nowrap;
        }
        .sf-news-btn:hover { background: #1565c0; }
        .sf-news-note { font-size: 12px; color: rgba(255,255,255,0.38); }
        .sf-news-note strong { color: #1a7ae8; }
        .sf-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
        .sf-gallery-img {
            aspect-ratio: 1; border-radius: 6px; overflow: hidden;
            background: rgba(255,255,255,0.06);
        }
        .sf-gallery-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
        .sf-gallery-img:hover img { transform: scale(1.08); }
        .subfooter-bottom {
            border-top: 1px solid rgba(255,255,255,0.08);
            padding: 24px 50px;
            max-width: 1280px; margin: 0 auto;
            text-align: center;
        }
        .subfooter-bottom p { font-size: 16px; color: rgba(255,255,255,0.38); margin: 3px 0; line-height: 1.7; }
        .subfooter-bottom strong { color: rgba(255,255,255,0.65); }
        .subfooter-bottom .sf-bottom-logo { margin-top: 16px; opacity: 0.4; height: 40px; width: auto; }
        @media(max-width:1024px){
            .subfooter-grid { grid-template-columns: 1fr 1fr; padding: 0 30px 40px; }
        }
        @media(max-width:700px){
            .subfooter-grid { grid-template-columns: 1fr; padding: 0 20px 30px; }
            .subfooter-bottom { padding: 20px; }
            /* Mantener barra lateral de redes sociales en móvil, pero más pequeña */
            .social-float-bar { gap: 4px; padding: 6px 0; }
            .sfb-btn { width: 38px; height: 38px; border-radius: 9px 0 0 9px; }
            .sfb-btn svg { width: 20px; height: 20px; }
            .sfb-btn:hover { width: 44px; }
            .footer-new-grid { grid-template-columns: 1fr; padding: 0 20px 40px; gap: 30px; }
            .fnew-bottom { padding: 18px 20px; flex-direction: column; }
        }


/* ====================================================
   TOPBAR V2 - CTA HIGHLIGHT (like reference)
   ==================================================== */
.tbv2-item-cta {
    background: #F5004F !important;
    color: white !important;
    font-weight: 700;
    padding: 0 16px !important;
    border-left: 2px solid rgba(255,255,255,0.18) !important;
}
.tbv2-item-cta .tbv2-ic-contact { background: rgba(255,255,255,0.22) !important; }
.tbv2-item-cta:hover { background: #c9003f !important; }

/* ====================================================
   BOTÓN FLOTANTE "LLÁMANOS" (bottom-left, like reference)
   ==================================================== */
.float-call {
    position: fixed;
    bottom: 72px;
    left: 24px;
    z-index: 9200;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.float-call-circle {
    width: 86px; height: 86px;
    border-radius: 50%;
    background: var(--red);
    color: white;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 32px rgba(245,0,79,0.55);
    animation: callPulse 2.5s infinite;
    transition: transform 0.2s;
    border: 4px solid rgba(255,255,255,0.25);
}
.float-call:hover .float-call-circle {
    transform: scale(1.1);
    box-shadow: 0 12px 44px rgba(245,0,79,0.75);
}
.float-call-circle svg { width: 38px; height: 38px; }
@keyframes callPulse {
    0%   { box-shadow: 0 8px 32px rgba(245,0,79,0.55); }
    50%  { box-shadow: 0 8px 48px rgba(245,0,79,0.8), 0 0 0 18px rgba(245,0,79,0.10); }
    100% { box-shadow: 0 8px 32px rgba(245,0,79,0.55); }
}
.float-call-label {
    background: var(--dark);
    color: white;
    font-size: 13px; font-weight: 800;
    padding: 6px 16px;
    border-radius: 20px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 4px 14px rgba(0,0,0,0.35);
}
.float-call-number {
    background: var(--dark);
    color: var(--red);
    font-size: 14px; font-weight: 900;
    padding: 6px 16px;
    border-radius: 20px;
    white-space: nowrap;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 4px 14px rgba(0,0,0,0.35);
    letter-spacing: 0;
}

/* ====================================================
   BARRA INFERIOR FIJA (bottom CTA bar)
   ==================================================== */
.bottom-cta-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    height: 54px;
    background: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
    z-index: 9400;
    box-shadow: 0 -3px 18px rgba(0,0,0,0.45);
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
}
.bcta-left, .bcta-right {
    display: flex;
    align-items: center;
    gap: 6px;
}
.bcta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    height: 40px;
    padding: 0 14px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: white;
    transition: opacity 0.2s, transform 0.18s;
    white-space: nowrap;
    cursor: pointer;
    border: none;
    font-size: 13px;
}
.bcta-btn:hover { opacity: 0.88; transform: translateY(-1px); color: white; }
/* Icon-only square buttons */
.bcta-icon-btn {
    width: 40px; height: 40px;
    padding: 0;
    border-radius: 8px;
}
.bcta-loc { background: #1c2e4a; }
.bcta-24h { background: #1c2e4a; font-size: 12px; font-weight: 900; letter-spacing: 0; }
.bcta-24-text { display: flex; align-items: baseline; color: white; font-size: 13px; font-weight: 900; }
.bcta-24-text small { font-size: 8px; font-weight: 700; }
/* Asesoría */
.bcta-asesoria { background: #1877f2; font-size: 13px; }
/* WhatsApp */
.bcta-whatsapp { background: #25D366; font-size: 13px; }
/* Responsive */
@media (max-width: 768px) {
    .bcta-asesoria .bcta-txt,
    .bcta-whatsapp .bcta-txt { display: none; }
    .bcta-asesoria { width: 40px; padding: 0; }
    .bcta-whatsapp { width: 40px; padding: 0; }
}
@media (max-width: 480px) {
    .bottom-cta-bar { height: 50px; padding: 0 10px; gap: 5px; }
    .bcta-btn { height: 38px; }
    .bcta-icon-btn { width: 38px; height: 38px; }
}
/* Extra bottom padding so content is not behind bar */
body { padding-bottom: 60px !important; }
/* Float call button — mobile: solo etiqueta + círculo, sin número */
@media (max-width: 768px) {
    .float-call { bottom: 66px; left: 12px; gap: 6px; }
    .float-call-circle { width: 62px; height: 62px; border-width: 3px; }
    .float-call-circle svg { width: 28px; height: 28px; }
    .float-call-label { font-size: 11px; padding: 5px 12px; }
    .float-call-number { display: none; }
}
@media (max-width: 420px) {
    .float-call { bottom: 62px; left: 8px; gap: 5px; }
    .float-call-circle { width: 56px; height: 56px; }
    .float-call-circle svg { width: 24px; height: 24px; }
    .float-call-label { font-size: 10px; padding: 4px 10px; }
    .float-call-number { display: none; }
}

/* Force fb-content h2 size even if inline style present */
.fb-content .sec-title { font-size: 54px !important; line-height: 1.15 !important; }

/* =====================================================
   MOBILE RESPONSIVE — Tamaños y paddings reducidos
   ===================================================== */
@media (max-width: 768px) {

    /* --- Contenedor y secciones --- */
    .container { padding: 0 18px !important; }
    section { padding: 40px 0 !important; }
    .stats-bar { padding: 40px 0 !important; }

    /* --- Tipografía general de sección --- */
    .sec-eyebrow { font-size: 12px; letter-spacing: 0; margin-bottom: 8px; }
    h2.sec-title { font-size: clamp(26px, 7vw, 38px) !important; margin-bottom: 12px; letter-spacing: 0; }
    .sec-desc { font-size: 15px !important; line-height: 1.7; margin-bottom: 28px !important; }

    /* --- Feature band --- */
    .feature-band { margin: 30px 0 !important; border-radius: 12px; }
    .fb-content { padding: 30px 22px !important; }
    .fb-content h2 { font-size: 26px !important; margin-bottom: 12px !important; }
    .fb-content p { font-size: 14px !important; line-height: 1.75 !important; margin-bottom: 16px !important; }
    .fb-list li { font-size: 13px !important; padding: 10px 0 !important; }
    .fb-list li .ic { font-size: 20px !important; }
    .fb-img { min-height: 180px; font-size: 90px !important; }

    /* --- Cards --- */
    .card-body { padding: 22px 18px !important; }
    h3.card-title { font-size: 19px !important; margin-bottom: 8px !important; }
    h4.card-sub { font-size: 13px !important; margin-bottom: 6px !important; }
    h5.card-detail { font-size: 12px !important; margin-bottom: 10px !important; }
    .card-body p { font-size: 13px !important; line-height: 1.75 !important; margin-bottom: 14px !important; }
    .card-features li { font-size: 12px !important; padding: 7px 0 !important; }
    .card-img { height: 180px !important; font-size: 60px !important; }
    .card-badge { font-size: 10px !important; padding: 4px 10px !important; }
    .card-link { font-size: 12px !important; }

    /* --- Botones --- */
    .btn { font-size: 13px !important; padding: 13px 24px !important; }

    /* --- Stats --- */
    .stat-item { padding: 28px 16px !important; }
    .stat-num { font-size: 46px !important; margin-bottom: 8px !important; }
    .stat-lbl { font-size: 12px !important; letter-spacing: 0; }

    /* --- Acordeón / Guía de selección --- */
    .acc-header { padding: 16px 18px !important; gap: 12px !important; }
    .acc-header h4 { font-size: 14px !important; }
    .acc-topic-icon { width: 48px !important; height: 48px !important; font-size: 24px !important; }
    .acc-inner { padding: 18px 16px !important; }

    /* --- Slider interior --- */
    .slider-slide-inner { padding: 28px 22px !important; }
    .slider-slide-inner h2 { font-size: 22px !important; }
    .slider-slide-inner h3 { font-size: 14px !important; }
    .slider-slide-inner p { font-size: 13px !important; }

    /* --- Quick select / Guía --- */
    .qs-item h5 { font-size: 12px !important; }
    .qs-sub { font-size: 11px !important; }

    /* --- Footer --- */
    .footer-grid { gap: 28px !important; }
    .footer-col h4 { font-size: 13px !important; }
    .footer-col a { font-size: 12px !important; }
    .footer-brand p { font-size: 12px !important; }
}

@media (max-width: 480px) {

    /* --- Contenedor --- */
    .container { padding: 0 14px !important; }
    section { padding: 32px 0 !important; }

    /* --- Tipografía --- */
    h2.sec-title { font-size: clamp(22px, 8vw, 30px) !important; }
    .sec-desc { font-size: 13px !important; margin-bottom: 20px !important; }

    /* --- Feature band --- */
    .fb-content { padding: 24px 16px !important; }
    .fb-content h2 { font-size: 22px !important; }
    .fb-content p { font-size: 13px !important; }

    /* --- Cards --- */
    .card-body { padding: 18px 14px !important; }
    h3.card-title { font-size: 17px !important; }
    .card-body p { font-size: 12px !important; }

    /* --- Stats --- */
    .stat-num { font-size: 38px !important; }
    .stat-lbl { font-size: 11px !important; }

    /* --- Botones --- */
    .btn { font-size: 12px !important; padding: 11px 18px !important; }
}

/* ===== nav margin-top a partir de 1024px ===== */
@media (min-width: 1024px) {
    nav {
        display: flex;
        align-items: center;
        gap: 6px;
        margin-top: 10px;
    }
}

/* ===== TABLETS HORIZONTAL (1024px - 1199px) ===== */
@media (min-width: 1024px) and (max-width: 1199px) {
    /* Estilo nav-link compacto */
    nav a.nav-link {
        display: flex !important;
        flex-direction: column !important;
        align-items: center;
        text-align: center;
        line-height: 1.2 !important;
        padding: 6px 5px !important;
        gap: 2px;
    }
    /* --- Botón CAJAS FUERTES --- */
    a[href="#cajas"].nav-link .nl2 {
        display: none !important;
    }
    a[href="#cajas"].nav-link .nl1 {
        font-size: 0 !important;
        line-height: 0 !important;
    }
    a[href="#cajas"].nav-link .nl1::before {
        content: "CAJAS";
        font-size: var(--fs-nav-line1, 14px);
        font-weight: 900;
        text-transform: uppercase;
        display: block;
        line-height: 1.3;
        white-space: nowrap;
    }
    a[href="#cajas"].nav-link .nl1::after {
        content: "FUERTES";
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0;
        display: block;
        opacity: 0.72;
        line-height: 1.3;
        white-space: nowrap;
    }
    /* --- Botón PUERTAS DE SEGURIDAD --- */
    a[href="#puertas"].nav-link .nl2 {
        display: none !important;
    }
    a[href="#puertas"].nav-link .nl1 {
        font-size: 0 !important;
        line-height: 0 !important;
    }
    a[href="#puertas"].nav-link .nl1::before {
        content: "PUERTAS DE";
        font-size: var(--fs-nav-line1, 14px);
        font-weight: 900;
        text-transform: uppercase;
        display: block;
        line-height: 1.3;
        white-space: nowrap;
    }
    a[href="#puertas"].nav-link .nl1::after {
        content: "SEGURIDAD";
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0;
        display: block;
        opacity: 0.72;
        line-height: 1.3;
        white-space: nowrap;
    }
    /* --- Botón CERRADURAS DE SEGURIDAD --- */
    a[href="#cerraduras"].nav-link .nl2 {
        display: none !important;
    }
    a[href="#cerraduras"].nav-link .nl1 {
        font-size: 0 !important;
        line-height: 0 !important;
    }
    a[href="#cerraduras"].nav-link .nl1::before {
        content: "CERRADURAS";
        font-size: var(--fs-nav-line1, 14px);
        font-weight: 900;
        text-transform: uppercase;
        display: block;
        line-height: 1.3;
        white-space: nowrap;
    }
    a[href="#cerraduras"].nav-link .nl1::after {
        content: "DE SEGURIDAD";
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0;
        display: block;
        opacity: 0.72;
        line-height: 1.3;
        white-space: nowrap;
    }
    /* --- Botón SISTEMAS DE ALARMA --- */
    a[href="#sistemas"].nav-link .nl2 {
        display: none !important;
    }
    a[href="#sistemas"].nav-link .nl1 {
        font-size: 0 !important;
        line-height: 0 !important;
    }
    a[href="#sistemas"].nav-link .nl1::before {
        content: "SISTEMAS";
        font-size: var(--fs-nav-line1, 14px);
        font-weight: 900;
        text-transform: uppercase;
        display: block;
        line-height: 1.3;
        white-space: nowrap;
    }
    a[href="#sistemas"].nav-link .nl1::after {
        content: "DE ALARMA";
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0;
        display: block;
        opacity: 0.72;
        line-height: 1.3;
        white-space: nowrap;
    }
}

/* Esconder botón Home de 1024 a 1159px */
@media (min-width: 1024px) and (max-width: 1159px) {
    a[href="#inicio"].nav-icon-btn {
        display: none !important;
    }
}

/* Mostrar botón Home de 1160px a 1179px */
@media (min-width: 1160px) and (max-width: 1179px) {
    a[href="#inicio"].nav-icon-btn {
        display: flex !important;
    }
}

/* Esconder botón Home de 1180px a 1219px */
@media (min-width: 1180px) and (max-width: 1219px) {
    a[href="#inicio"].nav-icon-btn {
        display: none !important;
    }
}

/* Mostrar botón Home de 1220px a 1239px */
@media (min-width: 1220px) and (max-width: 1239px) {
    a[href="#inicio"].nav-icon-btn {
        display: flex !important;
    }
}

/* Esconder botón Home de 1240px a 1299px */
@media (min-width: 1240px) and (max-width: 1299px) {
    a[href="#inicio"].nav-icon-btn {
        display: none !important;
    }
}

/* Mostrar botón Home de 1300px a 1365px */
@media (min-width: 1300px) and (max-width: 1365px) {
    a[href="#inicio"].nav-icon-btn {
        display: flex !important;
    }
}

/* Esconder botón Contáctenos de 1024 a 1089px */
@media (min-width: 1024px) and (max-width: 1089px) {
    a[href="#contacto"].nav-icon-btn {
        display: none !important;
    }
}

/* Margin-top botones home y contacto a partir de 1024px */
@media (min-width: 1024px) {
    a[href="#inicio"].nav-icon-btn {
        margin-top: -10px;
    }
    a[href="#contacto"].nav-icon-btn {
        margin-left: 5px;
        margin-top: -10px;
    }
}

/* ===== PC (1200px - 1439px) ===== */
@media (min-width: 1200px) and (max-width: 1439px) {
    /* Estilo nav-link compacto */
    nav a.nav-link {
        display: flex !important;
        flex-direction: column !important;
        align-items: center;
        text-align: center;
        line-height: 1.2 !important;
        padding: 6px 7px !important;
        gap: 2px;
    }
    /* --- Botón CAJAS FUERTES (sigue acortado) --- */
    a[href="#cajas"].nav-link .nl2 {
        display: none !important;
    }
    a[href="#cajas"].nav-link .nl1 {
        font-size: 0 !important;
        line-height: 0 !important;
    }
    a[href="#cajas"].nav-link .nl1::before {
        content: "CAJAS";
        font-size: var(--fs-nav-line1, 14px);
        font-weight: 900;
        text-transform: uppercase;
        display: block;
        line-height: 1.3;
        white-space: nowrap;
    }
    a[href="#cajas"].nav-link .nl1::after {
        content: "FUERTES";
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0;
        display: block;
        opacity: 0.72;
        line-height: 1.3;
        white-space: nowrap;
    }
    /* --- Botón PUERTAS DE SEGURIDAD (sigue acortado) --- */
    a[href="#puertas"].nav-link .nl2 {
        display: none !important;
    }
    a[href="#puertas"].nav-link .nl1 {
        font-size: 0 !important;
        line-height: 0 !important;
    }
    a[href="#puertas"].nav-link .nl1::before {
        content: "PUERTAS DE";
        font-size: var(--fs-nav-line1, 14px);
        font-weight: 900;
        text-transform: uppercase;
        display: block;
        line-height: 1.3;
        white-space: nowrap;
    }
    a[href="#puertas"].nav-link .nl1::after {
        content: "SEGURIDAD";
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0;
        display: block;
        opacity: 0.72;
        line-height: 1.3;
        white-space: nowrap;
    }
    /* --- Botón CERRADURAS DE SEGURIDAD (sigue acortado) --- */
    a[href="#cerraduras"].nav-link .nl2 {
        display: none !important;
    }
    a[href="#cerraduras"].nav-link .nl1 {
        font-size: 0 !important;
        line-height: 0 !important;
    }
    a[href="#cerraduras"].nav-link .nl1::before {
        content: "CERRADURAS";
        font-size: var(--fs-nav-line1, 14px);
        font-weight: 900;
        text-transform: uppercase;
        display: block;
        line-height: 1.3;
        white-space: nowrap;
    }
    a[href="#cerraduras"].nav-link .nl1::after {
        content: "DE SEGURIDAD";
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0;
        display: block;
        opacity: 0.72;
        line-height: 1.3;
        white-space: nowrap;
    }
    /* --- Botón SISTEMAS DE ALARMA (sigue acortado) --- */
    a[href="#sistemas"].nav-link .nl2 {
        display: none !important;
    }
    a[href="#sistemas"].nav-link .nl1 {
        font-size: 0 !important;
        line-height: 0 !important;
    }
    a[href="#sistemas"].nav-link .nl1::before {
        content: "SISTEMAS";
        font-size: var(--fs-nav-line1, 14px);
        font-weight: 900;
        text-transform: uppercase;
        display: block;
        line-height: 1.3;
        white-space: nowrap;
    }
    a[href="#sistemas"].nav-link .nl1::after {
        content: "DE ALARMA";
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0;
        display: block;
        opacity: 0.72;
        line-height: 1.3;
        white-space: nowrap;
    }
}

/* ===== PC (1366px - 1399px) ===== */
@media (min-width: 1366px) and (max-width: 1399px) {
    /* Estilo nav-link compacto */
    nav a.nav-link {
        display: flex !important;
        flex-direction: column !important;
        align-items: center;
        text-align: center;
        line-height: 1.2 !important;
        padding: 6px 7px !important;
        gap: 2px;
    }
    /* nl1 global */
    .nav-link .nl1 {
        font-size: 13.5px !important;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 0;
        display: block;
        white-space: nowrap;
    }
}

/* Mostrar botón Home de 1366px a 1439px */
@media (min-width: 1366px) and (max-width: 1439px) {
    a[href="#inicio"].nav-icon-btn {
        display: flex !important;
    }
}

/* Esconder Home y Contáctenos a partir de 1440px */
@media (min-width: 1440px) {
    a[href="#inicio"].nav-icon-btn {
        display: none !important;
    }
    a[href="#contacto"].nav-icon-btn {
        display: none !important;
    }
}

/* Mostrar Contáctenos a partir de 1500px */
@media (min-width: 1500px) {
    a[href="#contacto"].nav-icon-btn {
        display: flex !important;
    }
}

/* Mostrar botón Home a partir de 1650px */
@media (min-width: 1650px) {
    a[href="#inicio"].nav-icon-btn {
        display: flex !important;
    }
}

/* ===== PC GRANDE (1440px en adelante) ===== */
@media (min-width: 1440px) {
    /* Estilo nav-link */
    nav a.nav-link {
        display: flex !important;
        flex-direction: column !important;
        align-items: center;
        text-align: center;
        line-height: 1.2 !important;
        padding: 6px 5px !important;
        gap: 2px;
    }
    /* --- Botón CAJAS FUERTES completo --- */
    a[href="#cajas"].nav-link .nl1 {
        display: block !important;
        font-size: var(--fs-nav-line1, 14px) !important;
        line-height: 1.3 !important;
        white-space: nowrap !important;
    }
    a[href="#cajas"].nav-link .nl1::before,
    a[href="#cajas"].nav-link .nl1::after {
        content: none !important;
    }
    a[href="#cajas"].nav-link .nl2 {
        display: block !important;
    }
    /* --- Botón PUERTAS DE SEGURIDAD completo --- */
    a[href="#puertas"].nav-link .nl1 {
        display: block !important;
        font-size: var(--fs-nav-line1, 14px) !important;
        line-height: 1.3 !important;
        white-space: nowrap !important;
    }
    a[href="#puertas"].nav-link .nl1::before,
    a[href="#puertas"].nav-link .nl1::after {
        content: none !important;
    }
    a[href="#puertas"].nav-link .nl2 {
        display: block !important;
    }
    /* --- Botón CERRADURAS DE SEGURIDAD completo --- */
    a[href="#cerraduras"].nav-link .nl1 {
        display: block !important;
        font-size: var(--fs-nav-line1, 14px) !important;
        line-height: 1.3 !important;
        white-space: nowrap !important;
    }
    a[href="#cerraduras"].nav-link .nl1::before,
    a[href="#cerraduras"].nav-link .nl1::after {
        content: none !important;
    }
    a[href="#cerraduras"].nav-link .nl2 {
        display: block !important;
    }
    /* --- Botón SISTEMAS DE ALARMA completo --- */
    a[href="#sistemas"].nav-link .nl1 {
        display: block !important;
        font-size: var(--fs-nav-line1, 14px) !important;
        line-height: 1.3 !important;
        white-space: nowrap !important;
    }
    a[href="#sistemas"].nav-link .nl1::before,
    a[href="#sistemas"].nav-link .nl1::after {
        content: none !important;
    }
    a[href="#sistemas"].nav-link .nl2 {
        display: block !important;
    }
}

/* Esconder botón "Quiénes Somos" de 1024 a 1179px */
@media (min-width: 1024px) and (max-width: 1179px) {
    a[href="#acerca"].nav-link {
        display: none !important;
    }
}

/* Mostrar botón "Quiénes Somos" de 1180px a 1200px */
@media (min-width: 1180px) and (max-width: 1200px) {
    a[href="#acerca"].nav-link {
        display: block !important;
    }
}

/* Esconder botón "Quiénes Somos" de 1201 a 1239px */
@media (min-width: 1201px) and (max-width: 1239px) {
    a[href="#acerca"].nav-link {
        display: none !important;
    }
}

/* Mostrar botón "Quiénes Somos" de 1240px a 1439px */
@media (min-width: 1240px) and (max-width: 1439px) {
    a[href="#acerca"].nav-link {
        display: block !important;
    }
}

/* Esconder botón "Quiénes Somos" a partir de 1440px */
@media (min-width: 1440px) {
    a[href="#acerca"].nav-link {
        display: none !important;
    }
}

/* ===== PC (1500px - 1919px) ===== */
@media (min-width: 1500px) and (max-width: 1919px) {
    nav a.nav-link {
        display: flex !important;
        flex-direction: column !important;
        align-items: center;
        text-align: center;
        line-height: 1.2 !important;
        padding: 6px 6px !important;
        gap: 2px;
    }
}

/* ===== PC (1600px en adelante) ===== */
@media (min-width: 1600px) {
    nav a.nav-link {
        display: flex !important;
        flex-direction: column !important;
        align-items: center;
        text-align: center;
        line-height: 1.2 !important;
        padding: 6px 6px !important;
        gap: 2px;
    }
}


/* ===== Topbar hasta 1599px ===== */
@media (max-width: 1599px) {
    .topbar-v2-inner {
        width: 100%;
        max-width: 100%;
    }
}

/* ===== Topbar desde 1600px ===== */
@media (min-width: 1600px) {
    .topbar-v2-inner {
        max-width: 1600px;
        margin: 0 auto;
        padding: 0 40px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}


}

/* ===== Botón Buscar - oculto por defecto ===== */
.nav-search-btn {
    display: none !important;
}

/* Botón Buscar oculto en desktop hasta 1579px */
@media (min-width: 1024px) and (max-width: 1579px) {
    .nav-search-btn {
        display: none !important;
    }
}

/* Botón Buscar visible a partir de 1580px */
@media (min-width: 1580px) {
    .nav-search-btn {
        display: flex !important;
        width: 58px;
        height: 58px;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: all 0.3s;
        flex-shrink: 0;
        border: 3px solid #eee;
        background: white;
        padding: 0;
        cursor: pointer;
        margin-top: -10px;
    }
}

/* ===== Botón Buscar - mismo tamaño que email ===== */
.nav-search-btn img {
    width: 24px !important;
    height: 24px !important;
    object-fit: contain;
}

/* ===== DROPDOWN MENU ===== */
.nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-item .dropdown {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border-top: 3px solid var(--red);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    list-style: none;
    margin: 0;
    padding: 8px 0;
    min-width: 260px;
    z-index: 10000;
    border-radius: 0 0 8px 8px;
}

.nav-item:hover .dropdown {
    display: block !important;
}

.nav-item .dropdown li a {
    display: block;
    padding: 9px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-item .dropdown li:last-child a {
    border-bottom: none;
}

.nav-item .dropdown li a:hover {
    background: var(--red);
    color: white;
    padding-left: 26px;
}

/* Circulito indicador de dropdown */
.nav-item > .nav-link::after {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #F5004F;
    margin: 4px auto 0;
    flex-shrink: 0;
    transition: background 0.3s;
}

.nav-item > .nav-link:hover::after,
.nav-item > .nav-link.active::after,
.nav-item:hover > .nav-link::after {
    background: #ffffff;
}
