/* =========================================
   AJUSTES GLOBALES PARA CÁMARAS Y ESPACIADOS
   ========================================= */

/* Utilidades de centrado limpio */
.text-center { text-align: center; }
.check-list-centered { list-style: none; padding: 0; display: inline-flex; flex-direction: column; gap: 1rem; text-align: left; }
.check-list-centered li { display: flex; align-items: center; gap: 12px; color: #334155; font-size: 1.05rem; }
.check-list-centered li i { color: #10b981; font-size: 1.2rem; }
.text-green { color: #10b981; }

/* =========================================
   2. BENEFICIOS (QUÉ INCLUYE)
   ========================================= */
.included-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem; max-width: 1000px; margin: 0 auto; }
.included-item { background: #ffffff; padding: 3rem 2rem; border-radius: 16px; border: 1px solid rgba(15, 23, 42, 0.05); text-align: center; box-shadow: 0 4px 15px rgba(0,0,0,0.02); transition: transform 0.3s ease; }
.included-item:hover { transform: translateY(-8px); box-shadow: 0 15px 30px rgba(59, 130, 246, 0.08); }
.icon-wrapper { width: 60px; height: 60px; background: rgba(59, 130, 246, 0.1); color: #3b82f6; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 1.5rem; margin: 0 auto 1.5rem; }
.included-item h4 { font-size: 1.2rem; color: #0f172a; margin-bottom: 0.8rem; font-weight: 700; }
.included-item p { color: #64748b; font-size: 0.95rem; line-height: 1.5; }

/* =========================================
   3. PAQUETES
   ========================================= */
.cctv-packs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 3rem; max-width: 1100px; margin: 0 auto; }
.cctv-pack-card { background: #ffffff; border: 1px solid #e2e8f0; border-radius: 24px; padding: 3rem 2.5rem; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.03); position: relative; transition: transform 0.3s ease; display: flex; flex-direction: column; }
.cctv-pack-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.pack-popular { border: 2px solid #3b82f6; transform: scale(1.05); }
.pack-popular:hover { transform: scale(1.05) translateY(-8px); }
.popular-ribbon { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: #3b82f6; color: #fff; padding: 6px 20px; border-radius: 20px; font-weight: bold; font-size: 0.9rem; }
.pack-header i { font-size: 3rem; color: #3b82f6; margin-bottom: 1.5rem; }
.pack-header h3 { font-size: 1.8rem; color: #0f172a; margin-bottom: 1.5rem; font-weight: 800; }
.pack-price { margin-bottom: 2.5rem; }
.pack-price span { display: block; font-size: 1rem; color: #64748b; font-weight: 600; margin-bottom: 0.5rem; }
.pack-price h4 { font-size: 3rem; color: #0f172a; font-weight: 900; line-height: 1; }
.pack-features { list-style: none; padding: 0; margin: 0 auto 3rem auto; display: flex; flex-direction: column; gap: 1.2rem; text-align: left; width: fit-content; }
.pack-features li { display: flex; align-items: center; gap: 12px; color: #475569; font-weight: 600; font-size: 1.05rem; }
.pack-features i { color: #10b981; font-size: 1.2rem; width: 25px; text-align: center; }
.cctv-btn-pack { width: 100%; padding: 1.2rem; font-size: 1.1rem; border-radius: 12px; margin-top: auto; }

/* =========================================
   4. SIMULADOR INTERACTIVO PREMIUM
   ========================================= */

/* Aurora Background */
.cctv-aurora-bg {
    position: absolute;
    inset: -20%;
    background:
            radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 40%),
            radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.1) 0%, transparent 35%),
            radial-gradient(circle at 40% 90%, rgba(139, 92, 246, 0.1) 0%, transparent 30%);
    filter: blur(80px);
    animation: auroraMove 15s infinite alternate ease-in-out;
    transform: translateZ(0); /* Aceleración GPU */
    pointer-events: none;
}
@keyframes auroraMove {
    0% { transform: translate3d(0, 0, 0) scale(1); }
    100% { transform: translate3d(5%, 5%, 0) scale(1.1); }
}

/* Glassmorphism Dashboard */
.cctv-dashboard {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.6));
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow:
            0 40px 80px rgba(15, 23, 42, 0.15),
            inset 0 1px 2px rgba(255, 255, 255, 0.8);
    transform: translateZ(0);
    will-change: transform;
    max-width: 1100px;
    margin: 0 auto;
}

/* Borde RGB Animado Oculto (Glow exterior) */
.cctv-dashboard::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 34px;
    background: conic-gradient(from 0deg, transparent, #3b82f6, #06b6d4, transparent 30%);
    z-index: -1;
    animation: borderRotate 4s linear infinite;
    filter: blur(4px);
    opacity: 0.5;
}
@keyframes borderRotate {
    100% { transform: rotate3d(0, 0, 1, 360deg); }
}

/* Cursor Glow Apple-style */
.cursor-glow {
    position: absolute;
    top: 0; left: 0;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, transparent 60%);
    pointer-events: none;
    mix-blend-mode: overlay;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 50;
    will-change: transform, opacity;
}

/* Layout Grid */
.dashboard-grid { display: grid; grid-template-columns: 1.3fr 1fr; position: relative; z-index: 10; }
.cctv-dashboard input[type="radio"] { display: none; }

/* Viewport & PTZ */
.dashboard-visual { display: flex; flex-direction: column; border-right: 1px solid rgba(15, 23, 42, 0.05); }
.cctv-viewport { position: relative; width: 100%; height: 480px; background: #000; overflow: hidden; perspective: 1000px; }
.feed-layer {
    position: absolute; inset: 0;
    opacity: 0;
    transform: scale(1.1) translateZ(0);
    filter: blur(10px);
    transition: opacity 0.6s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s ease;
    will-change: opacity, transform, filter;
}
.ptz-wrapper { width: 100%; height: 100%; animation: ptzMotion 30s ease-in-out infinite alternate; will-change: transform; }
.feed-img { width: 100%; height: 100%; object-fit: cover; }
.img-breathe { animation: breathe 10s ease-in-out infinite alternate; will-change: transform; }

@keyframes ptzMotion {
    0% { transform: translate3d(-3%, -2%, 0) scale(1.15); }
    50% { transform: translate3d(3%, 2%, 0) scale(1.15); }
    100% { transform: translate3d(-2%, 3%, 0) scale(1.15); }
}
@keyframes breathe {
    0% { transform: scale(1); }
    100% { transform: scale(1.03); }
}

/* FX Visuales (Scan Lines, Radar, Particles) */
.scan-lines {
    position: absolute; inset: 0;
    background: repeating-linear-gradient(transparent 0, transparent 2px, rgba(255,255,255,0.03) 3px, transparent 4px);
    animation: scanPulse 0.15s linear infinite;
    mix-blend-mode: overlay;
    z-index: 5;
    pointer-events: none;
}
.radar-line {
    position: absolute; top: -10%; left: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, #10b981, transparent);
    box-shadow: 0 0 10px #10b981;
    animation: radarScan 4s linear infinite;
    z-index: 6;
    pointer-events: none;
    will-change: transform;
}
@keyframes radarScan {
    0% { transform: translate3d(0, 0, 0); opacity: 0; }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% { transform: translate3d(0, 600px, 0); opacity: 0; }
}

/* HUD Text */
.vms-hud { position: absolute; inset: 20px; font-family: 'Courier New', monospace; font-weight: bold; color: rgba(255,255,255,0.9); font-size: 0.85rem; z-index: 10; pointer-events: none; text-shadow: 1px 1px 2px #000; }
.hud-top-left { position: absolute; top: 0; left: 0; display: flex; align-items: center; gap: 8px; }
.hud-top-right { position: absolute; top: 0; right: 0; }
.hud-bottom-left { position: absolute; bottom: 0; left: 0; color: #10b981; }
.hud-bottom-right { position: absolute; bottom: 0; right: 0; }
.rec-dot { width: 10px; height: 10px; background: #ef4444; border-radius: 50%; display: inline-block; animation: blink 1s infinite; box-shadow: 0 0 8px #ef4444; }
@keyframes blink { 50% { opacity: 0; } }

/* AI Tracking Box con GPU */
.ai-tracking-group {
    position: absolute;
    width: 120px; height: 180px;
    top: 50%; left: 50%;
    margin-top: -90px; margin-left: -60px; /* Centrado */
    z-index: 15;
    opacity: 0;
    will-change: transform, opacity;
}
/* Secuencias específicas */
.tracking-hogar { animation: aiTrackHogar 8s infinite; }
.tracking-negocio { width: 100px; height: 220px; animation: aiTrackNegocio 10s infinite; }

.ai-bracket { position: absolute; width: 20px; height: 20px; border: 0 solid #10b981; }
.top-left { top: 0; left: 0; border-width: 3px 0 0 3px; }
.top-right { top: 0; right: 0; border-width: 3px 3px 0 0; }
.bottom-left { bottom: 0; left: 0; border-width: 0 0 3px 3px; }
.bottom-right { bottom: 0; right: 0; border-width: 0 3px 3px 0; }

.ai-glow-box { position: absolute; inset: 0; box-shadow: inset 0 0 20px rgba(16, 185, 129, 0.2); border: 1px solid rgba(16, 185, 129, 0.4); opacity: 0; animation: glowPulse 2s infinite alternate; }
.ai-status-text { position: absolute; bottom: -30px; left: 50%; transform: translateX(-50%); font-family: monospace; font-size: 0.8rem; font-weight: bold; white-space: nowrap; }
.ai-status-text span { position: absolute; left: 50%; transform: translateX(-50%); opacity: 0; background: rgba(15,23,42,0.8); padding: 4px 8px; border-radius: 4px; }

/* Animación del texto IA */
.step-1 { color: #f59e0b; animation: aiTextPhase1 8s infinite; }
.step-2 { color: #3b82f6; animation: aiTextPhase2 8s infinite; }
.step-3 { color: #10b981; background: #10b981 !important; color: #fff; animation: aiTextPhase3 8s infinite; }

/* Keyframes AI TRACKING HOGAR (GPU ONLY) */
@keyframes aiTrackHogar {
    0% { opacity: 0; transform: translate3d(-100px, 50px, 0) scale(1.5); }
    10% { opacity: 1; transform: translate3d(-80px, 40px, 0) scale(1.2); }
    30% { transform: translate3d(-40px, 20px, 0) scale(1); }
    50% { transform: translate3d(0px, 0px, 0) scale(0.9); }
    70% { transform: translate3d(20px, -10px, 0) scale(0.9); }
    85% { opacity: 1; transform: translate3d(30px, -15px, 0) scale(0.9); }
    95% { opacity: 0; transform: translate3d(30px, -15px, 0) scale(0.9); }
    100% { opacity: 0; }
}
@keyframes aiTextPhase1 { 10%, 29% { opacity: 1; } 0%, 9%, 30%, 100% { opacity: 0; } }
@keyframes aiTextPhase2 { 30%, 49% { opacity: 1; } 0%, 29%, 50%, 100% { opacity: 0; } }
@keyframes aiTextPhase3 { 50%, 85% { opacity: 1; } 0%, 49%, 86%, 100% { opacity: 0; } }

/* Night Vision Avanzada */
.night-vision-filter { filter: grayscale(100%) contrast(1.5) brightness(0.7) sepia(0.2) hue-rotate(80deg); }
.night-vision-fx {
    position: absolute; inset: 0; z-index: 4; pointer-events: none;
    background-image: radial-gradient(circle, transparent 40%, rgba(0,20,0,0.9) 100%), url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
    opacity: 0.15;
    mix-blend-mode: overlay;
    box-shadow: inset 0 0 80px rgba(0,0,0,0.8);
}
.ir-indicator { position: absolute; bottom: 20px; left: 20px; color: #10b981; font-family: monospace; font-weight: bold; font-size: 1.2rem; z-index: 10; text-shadow: 0 0 10px #10b981; animation: breathe 4s infinite alternate; }

/* TABS PREMIUM */
.cctv-controls { display: flex; background: rgba(255,255,255,0.5); backdrop-filter: blur(10px); border-top: 1px solid rgba(255,255,255,0.4); }
.control-tab {
    flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 1.5rem 0.5rem; font-size: 1.05rem; font-weight: 700; color: #64748b;
    cursor: pointer; position: relative; overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), color 0.35s, box-shadow 0.35s, background 0.35s;
    will-change: transform;
}
.control-tab i { font-size: 1.6rem; margin-bottom: 8px; transition: transform 0.3s; }
.tab-indicator { position: absolute; bottom: 0; left: 0; width: 100%; height: 4px; background: currentColor; transform: scaleX(0); transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1); transform-origin: left; }

.control-tab:hover {
    transform: translate3d(0, -4px, 0);
    color: #0f172a;
    background: rgba(255,255,255,0.8);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.control-tab:hover i { transform: scale(1.1); }

/* CONTADORES (HUD Info) */
.dashboard-info { padding: 3rem 2rem; background: rgba(255,255,255,0.4); display: flex; flex-direction: column; justify-content: center; align-items: center; position: relative; }
.ai-counters { display: flex; gap: 15px; margin-bottom: 3rem; width: 100%; justify-content: center; }
.counter-item { background: #fff; border: 1px solid rgba(15,23,42,0.08); padding: 12px 20px; border-radius: 16px; display: flex; align-items: center; gap: 15px; box-shadow: 0 4px 15px rgba(0,0,0,0.03); }
.counter-item i { font-size: 1.8rem; color: #94a3b8; }
.counter-data { display: flex; flex-direction: column; text-align: left; }
.counter-data .lbl { font-size: 0.8rem; font-weight: 700; color: #64748b; text-transform: uppercase; }
.counter-data .num { font-size: 1.5rem; font-weight: 900; color: #0f172a; line-height: 1; }
.counter-item.alert i { color: #ef4444; }
.pulse-alert { color: #ef4444 !important; animation: pulseAlert 1s infinite; }
@keyframes pulseAlert { 50% { opacity: 0.4; } }

/* Texto Info */
.info-panel { position: absolute; opacity: 0; transform: translate3d(0, 20px, 0) scale(0.95); transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); pointer-events: none; }
.info-panel h3 { font-size: 2rem; color: #0f172a; margin-bottom: 1rem; font-weight: 800; }
.info-desc { font-size: 1.1rem; color: #475569; line-height: 1.6; max-width: 90%; margin: 0 auto; }

/* =========================================
   LÓGICA DE TRANSICIONES (CINEMÁTICAS)
   ========================================= */
#sim-hogar:checked ~ .dashboard-grid .feed-hogar,
#sim-negocio:checked ~ .dashboard-grid .feed-negocio,
#sim-night:checked ~ .dashboard-grid .feed-night {
    opacity: 1; transform: scale(1) translateZ(0); filter: blur(0px); z-index: 2;
}

#sim-hogar:checked ~ .dashboard-grid .info-hogar,
#sim-negocio:checked ~ .dashboard-grid .info-negocio,
#sim-night:checked ~ .dashboard-grid .info-night {
    opacity: 1; transform: translate3d(0, 0, 0) scale(1); pointer-events: auto; position: relative;
}

#sim-hogar:checked ~ .dashboard-grid .tab-hogar { color: #3b82f6; background: #fff; transform: translate3d(0, -4px, 0); box-shadow: 0 10px 20px rgba(59, 130, 246, 0.1); }
#sim-negocio:checked ~ .dashboard-grid .tab-negocio { color: #f59e0b; background: #fff; transform: translate3d(0, -4px, 0); box-shadow: 0 10px 20px rgba(245, 158, 11, 0.1); }
#sim-night:checked ~ .dashboard-grid .tab-night { color: #10b981; background: #fff; transform: translate3d(0, -4px, 0); box-shadow: 0 10px 20px rgba(16, 185, 129, 0.1); }

#sim-hogar:checked ~ .dashboard-grid .tab-hogar .tab-indicator,
#sim-negocio:checked ~ .dashboard-grid .tab-negocio .tab-indicator,
#sim-night:checked ~ .dashboard-grid .tab-night .tab-indicator { transform: scaleX(1); }

/* =========================================
   RESPONSIVE: SWIPE HORIZONTAL
   ========================================= */
@media (max-width: 992px) {
    .dashboard-grid { grid-template-columns: 1fr; }
    .dashboard-visual { border-right: none; border-bottom: 1px solid rgba(15, 23, 42, 0.05); }

    /* Scroll Horizontal Nativo para Tabs en Móvil */
    .cctv-controls {
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
    }
    .cctv-controls::-webkit-scrollbar { display: none; } /* Chrome */
    .control-tab { flex: 0 0 33.33%; min-width: 120px; scroll-snap-align: start; }

    .ai-counters { flex-wrap: wrap; }
    .counter-item { flex: 1 1 40%; justify-content: center; }
}

/* =========================================
   5. GALERÍA DE INSTALACIONES
   ========================================= */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; max-width: 1100px; margin: 0 auto; }
.gallery-img { width: 100%; height: 250px; object-fit: cover; border-radius: 16px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease; }
.gallery-img:hover { transform: scale(1.03); box-shadow: 0 10px 25px rgba(0,0,0,0.1); }

/* =========================================
   6. TESTIMONIOS CCTV
   ========================================= */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; max-width: 1000px; margin: 0 auto; }
.testim-card { background: #ffffff; padding: 3rem 2rem; border-radius: 16px; border: 1px solid rgba(15, 23, 42, 0.05); text-align: center; box-shadow: 0 4px 15px rgba(0,0,0,0.02); }
.testim-card .stars { color: #fbbf24; font-size: 1.2rem; margin-bottom: 1.5rem; }
.testim-card p { font-size: 1.1rem; color: #475569; font-style: italic; margin-bottom: 2rem; line-height: 1.6; }
.testim-card h5 { font-size: 1.1rem; color: #0f172a; font-weight: 800; }

/* =========================================
   SISTEMA DE COLAPSO PARA TESTIMONIOS
   ========================================= */

.hidden-testim {
    display: none;
    opacity: 0;
}

/* Clase que se inyecta por JavaScript para mostrarlos */
.show-testim {
    display: block !important;
    animation: fadeTestim 0.5s ease forwards;
}

@keyframes fadeTestim {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Efecto hover suave para el botón de ver más */
#toggle-testim-btn:hover {
    background: #f1f5f9;
    color: #0f172a !important;
    border-color: #94a3b8;
}

/* =========================================
   7. MARCAS
   ========================================= */
.brands-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1.5rem; align-items: center; justify-items: center; max-width: 1000px; margin: 0 auto;}
.brand-item { background: #ffffff; border: 1px solid rgba(15, 23, 42, 0.05); padding: 1.5rem; border-radius: 16px; width: 100%; height: 90px; display: flex; justify-content: center; align-items: center; box-shadow: 0 4px 15px rgba(0,0,0,0.02); transition: all 0.3s; }
.brand-item img { max-width: 100%; max-height: 100%; object-fit: contain; filter: grayscale(100%) opacity(0.6); transition: all 0.3s ease; }
.brand-item:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(59, 130, 246, 0.1); border-color: rgba(59, 130, 246, 0.3); }
.brand-item:hover img { filter: grayscale(0%) opacity(1); transform: scale(1.1); }

/* =========================================
   8. COMPARATIVA DE PAQUETES (TABLA)
   ========================================= */
.table-responsive { overflow-x: auto; max-width: 1000px; margin: 0 auto; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.compare-table { width: 100%; border-collapse: collapse; background: #ffffff; text-align: left; }
.compare-table th, .compare-table td { padding: 1.5rem; border-bottom: 1px solid #e2e8f0; font-size: 1.1rem; }
.compare-table th { background: #0f172a; color: #ffffff; font-weight: 800; }
.compare-table tbody tr:hover { background: #f8fafc; }
.compare-table td:first-child { font-weight: 700; color: #334155; }
.compare-table td { color: #64748b; }

/* =========================================
   9. PREGUNTAS FRECUENTES (FAQ)
   ========================================= */
.faq-accordion { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-details { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 12px; padding: 1.5rem; transition: all 0.3s ease; }
.faq-details[open] { background: #ffffff; border-color: #3b82f6; box-shadow: 0 10px 25px rgba(59, 130, 246, 0.1); }
.faq-details summary { font-size: 1.2rem; font-weight: 700; color: #0f172a; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-details summary::-webkit-details-marker { display: none; }
.faq-details summary::after { content: '+'; font-size: 1.5rem; color: #3b82f6; font-weight: 400; transition: transform 0.3s; }
.faq-details[open] summary::after { content: '−'; transform: rotate(180deg); }
.faq-content { padding-top: 1.5rem; font-size: 1.05rem; color: #475569; line-height: 1.6; border-top: 1px solid #e2e8f0; margin-top: 1.5rem; }

/* =========================================
   10. CTA FINAL (BOTONES)
   ========================================= */
.cta-actions { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.btn-whatsapp-solid { background: #25D366; color: #ffffff !important; border: none; border-radius: 12px; font-weight: 700; transition: all 0.3s; box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3); display: inline-flex; align-items: center; gap: 10px;}
.btn-whatsapp-solid:hover { background: #1ebc59; transform: translateY(-3px); box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4); }
.btn-call-outline { background: transparent; color: #ffffff !important; border: 2px solid #ffffff; border-radius: 12px; font-weight: 700; transition: all 0.3s; display: inline-flex; align-items: center; gap: 10px; }
.btn-call-outline:hover { background: #ffffff; color: #0f172a !important; transform: translateY(-3px); }

/* =========================================
   RESPONSIVE GLOBAL (MÓVIL Y TABLET)
   ========================================= */
@media screen and (max-width: 968px) {
    .dashboard-grid { grid-template-columns: 1fr; }
    .dashboard-visual { border-right: none; border-bottom: 1px solid rgba(15, 23, 42, 0.05); }
    .cctv-viewport { height: 300px; }
    .dashboard-info { padding: 3rem 1.5rem; }
    .cctv-pack-card { padding: 2.5rem 1.5rem; }
    .pack-popular { transform: scale(1); border-width: 1px; }
    .pack-popular:hover { transform: translateY(-5px); }
    .brands-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-actions { flex-direction: column; align-items: stretch; }
    .compare-table th, .compare-table td { padding: 1rem; font-size: 0.95rem; }
    .security-hero { padding-top: 7rem; }
}