/* =========================================
   1. RESET Y VARIABLES GLOBALES
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #050507;        /* Fondo Principal */
    --bg-card: #0d0d12;        /* Fondo de Tarjetas */
    --primary-pink: #f0a1cf;   /* Rosa Neón (Marca) */
    --primary-green: #00ff8c;  /* Verde Neón (Seguridad) */
    --text-white: #ffffff;
    --text-gray: #b0b0b5;
    --font-main: 'Inter', sans-serif;
    --nav-height: 80px;

    /* AGREGADO: Colores de Alerta para el SOC */
    --color-critical: #ff4d4d; /* Rojo */
    --color-high: #ffae42;     /* Naranja */
    --color-medium: #ffd700;   /* Amarillo */
    --color-low: #00ff8c;      /* Verde */
}

/* --- CORRECCIÓN GLOBAL: OCULTAR ELEMENTOS MÓVILES --- */
.mobile-toggle, 
.mobile-only-btn { 
    display: none !important; 
}

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-dark);
    font-family: var(--font-main);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

ul { list-style: none; }
a { text-decoration: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* =========================================
   2. HEADER & NAVEGACIÓN
   ========================================= */
.main-header {
    background-color: rgba(5, 5, 7, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: fixed;
    top: 0; left: 0; width: 100%; height: var(--nav-height);
    z-index: 1000; display: flex; align-items: center;
}

.header-inner { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.logo a img { height: 42px; display: block; transition: transform 0.3s; }
.logo a:hover img { transform: scale(1.05); }

.nav-menu { height: 100%; }
.nav-menu > ul { display: flex; height: 100%; align-items: center; gap: 5px; }
.nav-menu > ul > li {
    position: relative; height: 100%; display: flex; align-items: center;
    padding: 0 18px; cursor: pointer; transition: all 0.3s;
}
.nav-menu > ul > li > a {
    color: var(--text-white); font-size: 15px; font-weight: 500;
    transition: color 0.3s; display: flex; align-items: center; gap: 6px;
}
.nav-menu > ul > li:hover > a { color: var(--primary-pink); }
.nav-arrow { font-size: 10px; opacity: 0.6; transition: transform 0.3s ease; }
.nav-menu > ul > li:hover .nav-arrow { transform: rotate(180deg); opacity: 1; }

/* =========================================
   3. MENÚ DESPLEGABLE
   ========================================= */
.dropdown-content {
    display: none; position: absolute; top: 100%; left: 0;
    background-color: var(--bg-card); min-width: 250px;
    border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 0 0 12px 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.8); padding: 10px 0;
    flex-direction: column; z-index: 9999;
}
.nav-menu > ul > li:hover .dropdown-content { display: flex; animation: slideUp 0.2s ease-out forwards; }
.dropdown-content li {
    width: 100%; padding: 0 !important; margin: 0 !important;
    height: auto !important; display: block !important;
}
.dropdown-content a {
    display: block; padding: 12px 24px; color: var(--text-gray); font-size: 14px;
    font-weight: 400; transition: all 0.2s; border-left: 2px solid transparent;
}
.dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.03); color: var(--text-white);
    padding-left: 30px; border-left-color: var(--primary-pink);
}
@keyframes slideUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.header-action .btn-header {
    background-color: var(--primary-pink); color: #000; font-weight: 700;
    padding: 12px 28px; border-radius: 8px; font-size: 14px;
    transition: transform 0.2s, box-shadow 0.2s; display: inline-block;
}
.header-action .btn-header:hover {
    transform: translateY(-2px); box-shadow: 0 10px 20px rgba(255, 77, 148, 0.3);
    background-color: #ff6bfa;
}

/* =========================================
   4. HERO SECTION
   ========================================= */
.hero-section {
    position: relative; height: 100vh; min-height: 600px; display: flex; align-items: center;
    background-image: url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?w=1920&q=80'); 
    background-size: cover; background-position: center; background-repeat: no-repeat;
}
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(5,5,7,0.6) 0%, rgba(5,5,7,1) 100%); z-index: 1;
}
.hero-content { position: relative; z-index: 2; padding-top: 60px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 16px; border-radius: 30px; font-size: 13px; font-weight: 600;
    color: #e2e8f0; margin-bottom: 25px; backdrop-filter: blur(5px);
}
.hero-title {
    font-size: clamp(40px, 5vw, 72px); font-weight: 800; line-height: 1.1;
    margin-bottom: 25px; letter-spacing: -1px;
}
.text-gradient {
    background: linear-gradient(90deg, #f0a1cf, #aebaff);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-desc {
    font-size: 18px; color: var(--text-gray); max-width: 650px;
    margin-bottom: 40px; line-height: 1.7;
}
.hero-buttons { display: flex; gap: 20px; flex-wrap: wrap; }
.btn-primary {
    background-color: var(--primary-pink); color: #000; padding: 16px 36px;
    border-radius: 8px; font-weight: 700; font-size: 16px; transition: all 0.3s;
    display: inline-flex; align-items: center; gap: 10px;
}
.btn-primary:hover { transform: translateY(-4px); box-shadow: 0 10px 25px rgba(255, 77, 148, 0.4); }
.btn-secondary {
    background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff; padding: 16px 36px; border-radius: 8px; font-weight: 600;
    font-size: 16px; transition: all 0.3s;
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.1); border-color: #fff; }

/* =========================================
   5. FOOTER
   ========================================= */
.site-footer {
    background-color: #2c2c2e; padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05); font-size: 15px;
}
.footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px; margin-bottom: 60px;
}
.footer-brand p { color: var(--text-gray); margin: 20px 0; line-height: 1.6; max-width: 300px; }
.social-links { display: flex; gap: 12px; }
.social-links a {
    width: 40px; height: 40px; background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 18px; transition: 0.3s;
}
.social-links a:hover {
    background: var(--primary-pink); border-color: var(--primary-pink);
    color: #000; transform: translateY(-3px);
}
.footer-col h4 { font-size: 16px; color: #fff; margin-bottom: 25px; font-weight: 700; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col a { color: var(--text-gray); transition: 0.3s; }
.footer-col a:hover { color: var(--primary-pink); padding-left: 5px; }
.contact-item { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 18px; color: var(--text-gray); }
.contact-icon { color: var(--primary-pink); margin-top: 4px; }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.459); padding-top: 30px;
    display: flex; justify-content: space-between; flex-wrap: wrap;
    gap: 20px; font-size: 14px; color: #93939b;
}
.legal-links a { color: #93939b; margin-left: 20px; transition: 0.3s; }
.legal-links a:hover { color: #fff; }

/* =========================================
   6. RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
    .mobile-toggle {
        display: block !important; background: none; border: none;
        color: #fff; font-size: 26px; cursor: pointer; padding: 10px; z-index: 1002;
    }
    .header-action { display: none !important; }
    .nav-menu {
        position: fixed; top: var(--nav-height); left: 0; width: 100%;
        height: auto; max-height: 0; background-color: #050507;
        overflow-y: auto; transition: max-height 0.4s ease-in-out;
        box-shadow: 0 10px 30px rgba(0,0,0,0.9); display: block;
    }
    .nav-menu.active { max-height: 90vh; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
    .nav-menu > ul {
        flex-direction: column !important; align-items: flex-start !important;
        padding: 20px 20px 40px 20px; gap: 0 !important; display: flex !important;
    }
    .nav-menu > ul > li {
        width: 100%; display: block !important; height: auto !important;
        padding: 0 !important; margin: 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        opacity: 1 !important; visibility: visible !important;
    }
    .nav-menu > ul > li > a {
        padding: 18px 0; display: flex; justify-content: space-between;
        font-size: 16px; color: #fff; width: 100%;
    }
    .dropdown-content {
        position: static !important; background: rgba(255, 255, 255, 0.03) !important;
        box-shadow: none !important; border: none !important;
        display: block !important; min-width: 100%;
        padding: 5px 0 15px 15px !important; margin-top: -5px;
        opacity: 1 !important; transform: none !important; animation: none !important;
    }
    .dropdown-content a {
        padding: 12px 0 !important; font-size: 14px !important;
        color: #b0b0b5 !important; border-left: 2px solid rgba(255, 255, 255, 0.1) !important;
        padding-left: 15px !important;
    }
    .mobile-only-btn { 
        display: block !important; border: none !important;
        margin-top: 25px !important; padding-top: 10px !important;
    }
    .mobile-only-btn .btn-primary {
        width: 100%; justify-content: center; background-color: var(--primary-pink);
    }
    /* Fix Móvil SOC */
    .soc-grid { grid-template-columns: 1fr; }
    .soc-dashboard-col { height: auto; }
}
@media (max-width: 768px) {
    .stats-grid { grid-template-columns: 1fr 1fr; margin-top: 20px; }
    .stats-section { margin-top: 0; padding-top: 40px; }
}

/* =========================================
   7, 8, 9 (ESTADÍSTICAS, SERVICIOS, CIBER)
   (Mantenidos de tu original)
   ========================================= */
.stats-section { padding: 40px 0 80px; position: relative; z-index: 2; margin-top: -60px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-card {
    background: rgba(13, 13, 18, 0.8); backdrop-filter: blur(10px);
    border: 5px solid rgba(255, 255, 255, 0.1); border-radius: 16px;
    padding: 30px 20px; text-align: center; transition: transform 0.3s ease;
}
.stat-card:hover { transform: translateY(-5px); border-color: rgba(255, 77, 148, 0.3); }
.stat-number {
    font-size: 36px; font-weight: 800; margin-bottom: 5px;
    background: linear-gradient(90deg, #ff9a9e 0%, #ff4d94 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-card p { color: #b0b0b5; font-size: 14px; font-weight: 500; }

.services-section { padding: 80px 0; }
.section-header.center { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.badge-green {
    display: inline-block; background: rgba(0, 255, 140, 0.1); color: #00ff8c;
    border: 1px solid rgba(0, 255, 140, 0.2); padding: 6px 14px;
    border-radius: 20px; font-size: 11px; font-weight: 700; margin-bottom: 20px;
}
.section-title { font-size: 42px; font-weight: 800; color: #fff; margin-bottom: 15px; }
.section-desc { color: #8e92a2; font-size: 17px; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.service-card {
    background: #0d0d12; border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px; padding: 35px 30px; transition: all 0.3s;
    display: flex; flex-direction: column; align-items: flex-start;
}
.service-card:hover {
    border-color: #00ff8c; transform: translateY(-5px); background: rgba(255,255,255,0.02);
}
.icon-box {
    width: 50px; height: 50px; border-radius: 12px; display: flex;
    align-items: center; justify-content: center; font-size: 20px; margin-bottom: 25px;
}
.icon-box.green { background: rgba(0, 255, 140, 0.1); color: #00ff8c; }
.icon-box.blue { background: rgba(64, 123, 255, 0.1); color: #407bff; }
.icon-box.yellow { background: rgba(255, 174, 66, 0.1); color: #ffae42; }
.icon-box.purple { background: rgba(155, 93, 229, 0.1); color: #9b5de5; }
.service-card h3 { color: #fff; font-size: 20px; font-weight: 700; margin-bottom: 15px; }
.service-card p { color: #8e92a2; font-size: 14px; line-height: 1.6; margin-bottom: 25px; flex-grow: 1; }
.link-arrow {
    color: #fff; font-size: 14px; font-weight: 600; display: flex;
    align-items: center; gap: 8px; transition: 0.3s;
}
.link-arrow:hover { gap: 12px; color: #00ff8c; }

.cyber-section { padding: 80px 0; background: linear-gradient(180deg, var(--bg-dark) 0%, #0d0d12 100%); }
.badge-purple {
    display: inline-block; background: rgba(155, 93, 229, 0.1); color: #9b5de5;
    border: 1px solid rgba(155, 93, 229, 0.2); padding: 6px 14px;
    border-radius: 20px; font-size: 11px; font-weight: 700; margin-bottom: 20px;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.cyber-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.cyber-card {
    background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px; padding: 40px 30px; transition: all 0.3s ease;
    position: relative; overflow: hidden; display: flex; flex-direction: column; align-items: flex-start;
}
.cyber-card:hover {
    transform: translateY(-5px); border-color: rgba(255, 77, 148, 0.3);
    box-shadow: 0 10px 30px rgba(255, 77, 148, 0.05); background: rgba(255, 255, 255, 0.04);
}
.cyber-icon-box {
    width: 50px; height: 50px; background: rgba(255, 77, 148, 0.1); color: #ff4d94;
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    font-size: 20px; margin-bottom: 25px; border: 1px solid rgba(255, 77, 148, 0.1);
    transition: 0.3s;
}
.cyber-card:hover .cyber-icon-box {
    background: #ff4d94; color: #fff; box-shadow: 0 0 15px rgba(255, 77, 148, 0.4);
}
.cyber-card h3 { color: #fff; font-size: 20px; font-weight: 700; margin-bottom: 15px; }
.cyber-card p { color: #b0b0b5; font-size: 15px; line-height: 1.6; margin-bottom: 30px; flex-grow: 1; }
.link-pink {
    color: #ff4d94; font-size: 14px; font-weight: 600; display: flex;
    align-items: center; gap: 8px; transition: 0.3s;
}
.link-pink:hover { color: #fff; gap: 12px; }

/* =========================================
   10. SECCIÓN SOC (CORREGIDO Y REEMPLAZADO)
   ========================================= */
.soc-section { padding: 80px 0; background-color: #050507; }

.badge-red {
    display: inline-block; background: rgba(255, 77, 77, 0.1); color: #ff4d4d;
    border: 1px solid rgba(255, 77, 77, 0.2); padding: 6px 14px;
    border-radius: 20px; font-size: 11px; font-weight: 700; margin-bottom: 20px;
    text-transform: uppercase;
}

/* Grid Principal */
.soc-grid {
    display: grid; grid-template-columns: 1fr 1.8fr; gap: 30px;
    align-items: stretch; margin-bottom: 40px;
}

/* Tarjeta General */
.soc-card {
    background: #0d0d12; border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px; position: relative;
}

/* 6.1 RADAR CARD */
.radar-card {
    height: 520px; /* Altura Fija */
    padding: 25px; display: flex; flex-direction: column; justify-content: space-between;
}
.card-header-flex {
    display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px;
}
.soc-card h3 { font-size: 16px; font-weight: 700; display: flex; align-items: center; gap: 10px; color: #fff; }

.radar-container {
    position: relative; width: 260px; height: 260px; margin: 0 auto;
    border-radius: 50%; background: radial-gradient(circle, #14141e, #0a0a0f);
    border: 1px solid rgba(255,255,255,0.05); overflow: hidden;
}
.radar-circle {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    border: 1px solid rgba(0,255,140,0.1); border-radius: 50%;
}
.c1 { width: 33%; height: 33%; } .c2 { width: 66%; height: 66%; } .c3 { width: 99%; height: 99%; }
.radar-scan {
    position: absolute; top: 50%; left: 50%; width: 50%; height: 50%;
    background: linear-gradient(45deg, rgba(0,255,140,0.4), transparent 50%);
    transform-origin: top left; animation: scan 3s linear infinite; z-index: 2;
}
.threat-dot {
    position: absolute; width: 8px; height: 8px; border-radius: 50%;
    animation: blink 2s infinite; box-shadow: 0 0 8px currentColor; z-index: 3;
}
.t1 { top: 30%; left: 70%; background: var(--color-critical); }
.t2 { top: 60%; left: 20%; background: var(--color-high); }
.t3 { top: 80%; left: 60%; background: var(--color-medium); }
@keyframes scan { to { transform: rotate(360deg); } }
@keyframes blink { 50% { opacity: 0.3; } }

.radar-legend { display: flex; justify-content: center; gap: 15px; font-size: 12px; color: #8e92a2; }
.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; margin-right: 5px; }
.red { background: var(--color-critical); }
.orange { background: var(--color-high); }
.yellow { background: var(--color-medium); }

/* 6.2 COLUMNA DERECHA */
.soc-dashboard-col {
    height: 520px; display: flex; flex-direction: column; gap: 20px;
}
.stats-row {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; height: 90px;
}
.mini-stat-card {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px; padding: 15px; display: flex; flex-direction: column; justify-content: center;
}
.stat-label { font-size: 12px; color: #8e92a2; }
.mini-stat-card h4 { font-size: 24px; margin: 0; }
.green-text { color: var(--color-low); } .blue-text { color: #407bff; } .orange-text { color: var(--color-high); }

/* 6.3 FEED CARD FIXED (Solución desborde y texto) */
.feed-card-fixed {
    flex-grow: 1; display: flex; flex-direction: column;
    overflow: hidden; /* IMPORTANTE: Corta el contenido */
    padding: 0; border: 1px solid rgba(255, 255, 255, 0.08);
    background: #0d0d12; border-radius: 20px;
}
.feed-header { padding: 20px 25px 10px; }
.live-status { color: var(--color-low); font-size: 12px; font-weight: 700; display: flex; align-items: center; gap: 5px; }
.live-status::before {
    content: ''; width: 6px; height: 6px; background: var(--color-low);
    border-radius: 50%; animation: blink 1.5s infinite;
}

.threat-window {
    flex-grow: 1; position: relative; overflow: hidden; margin: 10px 25px;
    mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
}
.threat-scroller {
    display: flex; flex-direction: column; gap: 10px;
    animation: scrollFeed 20s linear infinite;
}
.threat-scroller:hover { animation-play-state: paused; }

/* Estilos de ITEMS (Solución texto aplastado) */
.threat-item {
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(255,255,255,0.03); padding: 12px 15px;
    border-radius: 8px; border: 1px solid rgba(255,255,255,0.02);
}
.ti-left { display: flex; align-items: center; gap: 12px; }
.dot-status { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dot-status.red { background: var(--color-critical); }
.dot-status.orange { background: var(--color-high); }
.dot-status.yellow { background: var(--color-medium); }
.dot-status.green { background: var(--color-low); }

.ti-info strong { display: block; font-size: 13px; color: #fff; line-height: 1.2; }
.ti-info span { font-size: 11px; color: #8e92a2; }

.ti-right { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.badge-alert {
    font-size: 9px; font-weight: 800; padding: 2px 6px; border-radius: 4px;
    text-transform: uppercase;
}
.badge-alert.critical { background: rgba(255, 77, 77, 0.2); color: var(--color-critical); }
.badge-alert.high { background: rgba(255, 174, 66, 0.2); color: var(--color-high); }
.badge-alert.medium { background: rgba(255, 215, 0, 0.2); color: var(--color-medium); }
.badge-alert.low { background: rgba(0, 255, 140, 0.2); color: var(--color-low); }
.time { font-size: 10px; color: #525263; }

@keyframes scrollFeed { from { transform: translateY(0); } to { transform: translateY(-50%); } }

.soc-footer-bar {
    background: rgba(0, 255, 140, 0.1); color: var(--color-low);
    text-align: center; padding: 12px; font-size: 12px; font-weight: 600;
    border-top: 1px solid rgba(0,255,140,0.1);
}

.center-cta { text-align: center; margin-top: 30px; }
.cta-text { color: #8e92a2; margin-bottom: 15px; }
.pink-btn { background: #ff9a9e; color: #111; }


/* =========================================
   11. SECCIÓN PARTNERS (CARRUSEL)
   ========================================= */
.partners-section {
    padding: 60px 0 100px;
    background-color: var(--bg-dark);
    overflow: hidden; /* Evita scroll horizontal */
}

/* Área del Slider */
.slider-area {
    position: relative;
    margin: 0 auto;
    width: 100%;
    height: 120px; /* Altura del carrusel */
    overflow: hidden;
    margin-top: 40px;
}

/* Pista que se mueve */
.slide-track {
    display: flex;
    width: calc(200px * 14); /* 200px por slide * 14 items (7 reales + 7 duplicados) */
    animation: scrollLogos 30s linear infinite;
}

/* Pausar animación al pasar el mouse */
.slider-area:hover .slide-track {
    animation-play-state: paused;
}

/* Tarjeta individual de Logo */
.slide-item {
    width: 200px;
    height: 100px;
    padding: 20px;
    margin: 0 15px; /* Espacio entre tarjetas */
    
    background: rgba(243, 186, 186, 0.705);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Efecto Hover en la tarjeta individual */
.slide-item:hover {
    background: rgba(255, 255, 255, 0.582);
    border-color: var(--primary-pink);
    transform: scale(1.05);
}

/* Estilo de las imágenes (Logos) */
.slide-item img {
    max-width: 100%;
    max-height: 100%;
    /* Filtro para volverlos blancos/grises por defecto */
    filter: grayscale(100%) brightness(1.5) opacity(0.7); 
    transition: 0.3s;
}

.slide-item:hover img {
    /* Al pasar el mouse recuperan su color original */
    filter: grayscale(0%) opacity(1);
}

/* Sombras laterales para suavizar bordes (Fade effect) */
.slider-overlay-left,
.slider-overlay-right {
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none; /* Permite clicks a través de la sombra */
}

.slider-overlay-left {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark), transparent);
}

.slider-overlay-right {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark), transparent);
}

/* Animación Keyframes */
@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-200px * 7)); } /* Mueve la mitad exacta */
}

/* Responsive */
@media (max-width: 768px) {
    .slide-item {
        width: 150px; /* Más pequeños en móvil */
        height: 80px;
        margin: 0 10px;
    }
    .slide-track {
        width: calc(150px * 14);
        animation: scrollLogos 20s linear infinite; /* Más rápido en móvil */
    }
    @keyframes scrollLogos {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-150px * 7)); }
    }
}

/* =========================================
   12. SECCIÓN TESTIMONIOS (SLIDER)
   ========================================= */
.testimonials-section {
    padding: 80px 0;
    background-color: #050507;
    position: relative;
}

.badge-gold {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255, 184, 0, 0.1); color: #ffb800;
    border: 1px solid rgba(255, 184, 0, 0.2);
    padding: 6px 14px; border-radius: 20px;
    font-size: 11px; font-weight: 700; margin-bottom: 20px;
}

/* Contenedor Principal (Máscara) */
.testimonial-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden; /* Oculta los slides que no están activos */
}

/* Pista que se mueve */
.testi-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1); /* Movimiento suave */
    width: 100%;
}

/* Cada Slide individual */
.testimonial-slide {
    min-width: 100%; /* Cada slide ocupa el 100% del ancho del contenedor */
    box-sizing: border-box;
    padding: 0 5px; /* Pequeño espacio lateral */
}

/* Tarjeta */
.testimonial-card {
    background: #0d0d12;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 50px 40px 40px;
    position: relative;
    height: 100%; /* Para que todas midan lo mismo */
}

.quote-icon-float {
    position: absolute; top: 10px; left: 40px;
    width: 50px; height: 50px; background: #f0a1cf; color: #000;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 24px; z-index: 5; box-shadow: 0 10px 20px rgba(240, 161, 207, 0.3);
}

.testi-grid {
    display: grid; grid-template-columns: 200px 1fr; gap: 40px; align-items: center;
}

/* Perfil */
.testi-profile {
    text-align: center; border-right: 1px solid rgba(255,255,255,0.05); padding-right: 20px;
}
.profile-img-box {
    position: relative; width: 100px; height: 100px; margin: 0 auto 15px;
}
.profile-img-box img {
    width: 100%; height: 100%; border-radius: 50%; object-fit: cover;
    border: 3px solid rgba(255,255,255,0.1);
}
.verified-badge {
    position: absolute; bottom: 5px; right: 0; width: 24px; height: 24px;
    background: #00ff8c; color: #000; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 12px;
}
.client-name { font-size: 18px; color: #fff; font-weight: 700; margin-bottom: 2px; }
.client-role { font-size: 13px; color: #8e92a2; margin-bottom: 2px; }
.client-company { font-size: 13px; color: #f0a1cf; font-weight: 600; margin-bottom: 10px; }
.client-rating { color: #ffb800; font-size: 12px; letter-spacing: 2px; }

/* Contenido */
.testi-content blockquote {
    font-size: 18px; line-height: 1.6; color: #e2e2e2; font-style: italic; margin-bottom: 25px;
}
.service-tag {
    display: inline-block; padding: 6px 16px; border-radius: 20px;
    background: rgba(240, 161, 207, 0.1); border: 1px solid rgba(240, 161, 207, 0.2);
    color: #f0a1cf; font-size: 12px; font-weight: 600;
}

/* Controles */
.testi-controls {
    display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 30px;
}
.nav-btn {
    width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1); color: #fff; cursor: pointer; transition: 0.3s;
    display: flex; align-items: center; justify-content: center;
}
.nav-btn:hover { background: #fff; color: #000; }
.dots { display: flex; gap: 8px; }
.dot {
    width: 8px; height: 8px; background: rgba(255,255,255,0.2); border-radius: 50%;
    cursor: pointer; transition: 0.3s;
}
.dot.active { background: #f0a1cf; width: 24px; border-radius: 10px; }

@media (max-width: 768px) {
    .testi-grid { grid-template-columns: 1fr; text-align: center; }
    .testi-profile { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 20px; padding-right: 0; }
    .quote-icon-float { left: 50%; transform: translateX(-50%); }
}

/* =========================================
   13. SECCIÓN PLANES (PRICING)
   ========================================= */
.pricing-section {
    padding: 80px 0;
    background-color: var(--bg-dark); /* Fondo oscuro general */
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Columnas */
    gap: 30px;
    align-items: center; /* Alineación vertical */
    margin-bottom: 40px;
}

/* Tarjeta Base */
.pricing-card {
    background: #0d0d12;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px 30px;
    position: relative;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

/* --- TARJETA POPULAR (CENTRAL) --- */
.pricing-card.popular {
    background: rgba(240, 161, 207, 0.03); /* Fondo rosado muy sutil */
    border: 1px solid rgba(240, 161, 207, 0.5); /* Borde rosa */
    box-shadow: 0 0 30px rgba(240, 161, 207, 0.1); /* Resplandor */
    transform: scale(1.05); /* Ligeramente más grande */
    z-index: 2;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

/* Badge "Más Popular" */
.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #f0a1cf; /* Rosa neón */
    color: #000;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(240, 161, 207, 0.4);
}

/* Iconos de Cabecera */
.plan-icon {
    width: 60px; height: 60px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    margin: 0 auto 25px;
}

.green-icon { background: rgba(0, 255, 140, 0.1); color: #00ff8c; }
.pink-icon { background: rgba(240, 161, 207, 0.1); color: #f0a1cf; }
.purple-icon { background: rgba(155, 93, 229, 0.1); color: #9b5de5; }

/* Títulos y Textos */
.pricing-card h3 {
    font-size: 24px; font-weight: 700; color: #fff; text-align: center; margin-bottom: 10px;
}

.plan-subtitle {
    text-align: center; color: #8e92a2; font-size: 14px; margin-bottom: 30px; line-height: 1.5; min-height: 42px;
}

/* Lista de Características */
.plan-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1; /* Empuja el botón al fondo */
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    margin-bottom: 15px;
    color: #e2e2e2;
}

.plan-features li.excluded {
    color: #525263; /* Gris oscuro para lo no incluido */
    text-decoration: line-through; /* Opcional: tachado sutil si quieres */
}

/* Iconos de la lista */
.color-green { color: #00ff8c; }
.color-pink { color: #f0a1cf; }
.color-purple { color: #9b5de5; }
.fa-times-circle { color: #3f3f46; font-size: 14px; } /* X gris */

/* Botones */
.btn-pricing {
    display: block;
    width: 100%;
    padding: 14px;
    text-align: center;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    transition: 0.3s;
    text-decoration: none;
}

.btn-pricing.dark {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.btn-pricing.dark:hover { background: rgba(255, 255, 255, 0.2); }

.btn-pricing.pink {
    background: #f0a1cf;
    color: #000;
    box-shadow: 0 5px 20px rgba(240, 161, 207, 0.2);
}
.btn-pricing.pink:hover { background: #ffb8e0; transform: translateY(-2px); }

/* Nota al pie */
.pricing-footer-note {
    text-align: center;
    color: #525263;
    font-size: 12px;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr; /* Una columna en móvil */
        gap: 50px; /* Más espacio entre tarjetas por el efecto escala */
    }
    .pricing-card.popular {
        transform: scale(1); /* Quitar zoom en móvil para que no se salga */
    }
    .pricing-card.popular:hover { transform: translateY(-5px); }
}

/* =========================================
   14. SECCIÓN FAQ
   ========================================= */
.faq-section {
    padding: 80px 0;
    background-color: #050507;
}

.badge-red-outline {
    display: inline-block;
    border: 1px solid rgba(255, 77, 94, 0.3);
    color: #ff4d5e;
    padding: 6px 14px; border-radius: 20px;
    font-size: 11px; font-weight: 700; margin-bottom: 20px;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Caja de la Pregunta */
.faq-item {
    background: #0d0d12;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Estado Activo (Abierto) */
.faq-item.active {
    border-color: rgba(240, 161, 207, 0.5); /* Borde rosa al abrir */
    background: rgba(255,255,255,0.02);
}

/* Botón de la Pregunta (Header) */
.faq-header {
    width: 100%;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-main);
}

.faq-header:hover {
    color: var(--primary-pink);
}

.faq-icon {
    font-size: 14px;
    color: #8e92a2;
    transition: transform 0.3s ease;
}

/* Rotar flecha cuando está activo */
.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--primary-pink);
}

/* Contenido de la Respuesta (Oculto por defecto) */
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 25px;
}

.faq-content p {
    padding-bottom: 25px;
    color: #b0b0b5;
    font-size: 15px;
    line-height: 1.6;
}

/* Footer de la Sección */
.faq-footer {
    text-align: center;
    margin-top: 40px;
}

.faq-footer p {
    color: #8e92a2;
    font-size: 14px;
    margin-bottom: 10px;
}

.contact-link {
    color: var(--primary-pink);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.contact-link:hover {
    color: #fff;
    gap: 12px;
}

/* =========================================
   15. PÁGINA NOSOTROS (CORREGIDO)
   ========================================= */

/* Hero Interno */
.page-hero {
    position: relative;
    height: 40vh; min-height: 350px;
    display: flex; align-items: center; justify-content: center;
    /* Fondo tecnológico */
    background: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?w=1920&q=80') center/cover no-repeat;
    margin-top: 0;
}
.hero-title.small { font-size: 48px; text-align: center; }

/* Sección Quiénes Somos */
.about-section { padding: 80px 0; background-color: var(--bg-dark); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.highlight-text { font-size: 18px; color: #fff; line-height: 1.6; margin-bottom: 20px; }
.about-text p { color: #b0b0b5; margin-bottom: 20px; font-size: 16px; }

.about-check-list { margin-top: 30px; display: grid; gap: 15px; }
.about-check-list div { display: flex; align-items: center; gap: 10px; font-weight: 600; color: #fff; }

/* IMAGEN Y BADGE (Corrección visual) */
.about-image-container {
    position: relative;
    border-radius: 20px;
}

.main-img {
    width: 100%;
    border-radius: 20px;
    display: block;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
}

/* El recuadro flotante */
.floating-badge {
    position: absolute;
    bottom: -30px; /* Sale un poco por abajo */
    left: -30px;   /* Sale un poco por la izquierda */
    background: #0d0d12;
    padding: 30px 40px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    text-align: center;
    z-index: 2;
}

.floating-badge h3 { font-size: 36px; color: var(--primary-pink); font-weight: 800; margin: 0; line-height: 1; }
.floating-badge span { font-size: 12px; color: #fff; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }

/* Sección Misión y Visión */
.mv-section { padding: 80px 0; background-color: #0d0d12; }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }

.mv-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px 40px; border-radius: 24px;
    transition: 0.3s; position: relative; overflow: hidden;
}
.mv-card:hover { transform: translateY(-5px); border-color: var(--primary-pink); }

/* Fondos sutiles */
.mv-card.mission { background: linear-gradient(135deg, rgba(240, 161, 207, 0.05), transparent); }
.mv-card.vision { background: linear-gradient(135deg, rgba(155, 93, 229, 0.05), transparent); }

.mv-icon-box {
    width: 60px; height: 60px; background: rgba(255,255,255,0.05);
    border-radius: 16px; display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: #fff; margin-bottom: 25px;
}
.mv-card h3 { font-size: 24px; color: #fff; margin-bottom: 20px; font-weight: 700; }
.mv-card p { font-size: 16px; color: #b0b0b5; line-height: 1.7; }

/* CTA Final */
.cta-section { padding: 80px 0; text-align: center; }

/* Responsive */
@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-image-container { order: -1; margin-bottom: 60px; margin-left: 20px; }
    .mv-grid { grid-template-columns: 1fr; }
}

/* =========================================
   16. SECCIÓN DATOS EMPRESA (LEGAL)
   ========================================= */
.company-data-section {
    padding: 80px 0;
    background-color: var(--bg-dark);
}

/* Badge estilo delineado rosa */
.badge-pink-outline {
    display: inline-block;
    border: 1px solid rgba(240, 161, 207, 0.3);
    color: #f0a1cf;
    background: rgba(240, 161, 207, 0.05);
    padding: 6px 14px; border-radius: 20px;
    font-size: 11px; font-weight: 700; margin-bottom: 20px;
    text-transform: uppercase; letter-spacing: 0.5px;
}

/* Tarjeta Principal */
.company-data-card {
    max-width: 700px;
    margin: 0 auto;
    background: #0d0d12;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4); /* Sombra elegante */
}

/* Logo dentro de la tarjeta */
.card-logo {
    text-align: center;
    margin-bottom: 40px;
}
.card-logo img {
    height: 45px; /* Ajusta el tamaño de tu logo aquí */
    opacity: 0.9;
}

/* Grilla de Datos */
.data-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 columnas */
    gap: 20px;
}

/* Cajas de Datos individuales */
.data-box {
    background: rgba(255, 255, 255, 0.03); /* Fondo ligeramente más claro que la tarjeta */
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
}

.data-box:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Cajas que ocupan todo el ancho (Razón Social y Dirección) */
.data-box.full-width {
    grid-column: span 2; 
}

/* Textos */
.data-label {
    display: block;
    font-size: 13px;
    color: #8e92a2; /* Texto gris */
    margin-bottom: 8px;
    font-weight: 500;
}

.data-value {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

/* Responsive para celulares */
@media (max-width: 600px) {
    .company-data-card { padding: 30px 20px; }
    .data-grid { grid-template-columns: 1fr; } /* Todo a 1 columna */
    .data-box.full-width { grid-column: span 1; }
    .data-value { font-size: 16px; word-wrap: break-word; } /* Evita que la dirección se salga */
}

/* =========================================
   17. SECCIÓN VALORES (PERSONALIZADO)
   ========================================= */
.values-section-custom {
    padding: 80px 0;
    background-color: var(--bg-dark);
}

.badge-outline-pink {
    display: inline-block;
    border: 1px solid rgba(240, 161, 207, 0.3);
    color: #f0a1cf;
    padding: 6px 14px; border-radius: 20px;
    font-size: 11px; font-weight: 700; margin-bottom: 20px;
    text-transform: uppercase; letter-spacing: 0.5px;
}

.values-grid-custom {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 Columnas */
    gap: 25px;
    margin-top: 40px;
}

/* Tarjeta Base */
.val-card {
    background: #0d0d12;
    padding: 40px 25px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05); /* Borde base sutil */
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.val-card:hover {
    transform: translateY(-5px);
}

/* Caja del Icono */
.val-icon-box {
    width: 60px; height: 60px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    margin-bottom: 25px;
    position: relative;
}

/* --- VARIANTES DE COLOR (Bordes y Iconos) --- */

/* Rosa (Compromiso) */
.val-card.val-pink { border-color: rgba(240, 161, 207, 0.2); }
.val-card.val-pink:hover { border-color: #f0a1cf; box-shadow: 0 10px 30px rgba(240, 161, 207, 0.1); }
.val-pink .val-icon-box {
    background: rgba(240, 161, 207, 0.1); color: #f0a1cf;
    box-shadow: 0 0 15px rgba(240, 161, 207, 0.2) inset; /* Brillo interno */
}

/* Azul (Innovación) */
.val-card.val-blue { border-color: rgba(64, 123, 255, 0.2); }
.val-card.val-blue:hover { border-color: #407bff; box-shadow: 0 10px 30px rgba(64, 123, 255, 0.1); }
.val-blue .val-icon-box {
    background: rgba(64, 123, 255, 0.1); color: #407bff;
    box-shadow: 0 0 15px rgba(64, 123, 255, 0.2) inset;
}

/* Amarillo/Dorado (Integridad) */
.val-card.val-yellow { border-color: rgba(255, 184, 0, 0.2); }
.val-card.val-yellow:hover { border-color: #ffb800; box-shadow: 0 10px 30px rgba(255, 184, 0, 0.1); }
.val-yellow .val-icon-box {
    background: rgba(255, 184, 0, 0.1); color: #ffb800;
    box-shadow: 0 0 15px rgba(255, 184, 0, 0.2) inset;
}

/* Verde (Excelencia) */
.val-card.val-green { border-color: rgba(0, 255, 140, 0.2); }
.val-card.val-green:hover { border-color: #00ff8c; box-shadow: 0 10px 30px rgba(0, 255, 140, 0.1); }
.val-green .val-icon-box {
    background: rgba(0, 255, 140, 0.1); color: #00ff8c;
    box-shadow: 0 0 15px rgba(0, 255, 140, 0.2) inset;
}

/* Textos */
.val-card h3 {
    color: #fff; font-size: 20px; font-weight: 700; margin-bottom: 15px;
}

.val-card p {
    color: #b0b0b5; font-size: 14px; line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
    .values-grid-custom { grid-template-columns: 1fr 1fr; } /* 2 columnas en Tablet */
}

@media (max-width: 500px) {
    .values-grid-custom { grid-template-columns: 1fr; } /* 1 columna en Móvil */
}

/* =========================================
   18. PÁGINAS DE SERVICIOS (ESTRUCTURA BASE)
   ========================================= */

/* Hero Específico de Soporte */
.service-hero.support-bg {
    background: url('https://images.unsplash.com/photo-1563770660941-20978e870e26?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover no-repeat;
    /* Imagen de servidor/cables/técnico */
    height: 60vh;
    min-height: 450px;
    display: flex; align-items: center; justify-content: center; position: relative;
}
.hero-btns.justify-center { justify-content: center; margin-top: 30px; }

/* --- SECCIÓN PROBLEMÁTICA (Pain Points) --- */
.pain-points-section { padding: 80px 0; background: #0d0d12; }

.pain-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px;
}

.pain-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255, 77, 77, 0.2); /* Borde rojizo sutil */
    padding: 30px 20px; border-radius: 16px;
    text-align: center; transition: 0.3s;
}

.pain-card:hover {
    background: rgba(255, 77, 77, 0.05);
    border-color: #ff4d4d;
    transform: translateY(-5px);
}

.pain-icon {
    font-size: 32px; color: #ff4d4d; /* Rojo alerta */
    margin-bottom: 20px;
}
.pain-card h3 { color: #fff; font-size: 18px; margin-bottom: 10px; }
.pain-card p { color: #b0b0b5; font-size: 14px; line-height: 1.5; }

/* --- SECCIÓN ALCANCE (Scope) --- */
.scope-section { padding: 80px 0; }
.scope-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.scope-image { position: relative; }
.scope-image img { width: 100%; border-radius: 20px; border: 1px solid rgba(255,255,255,0.1); }
.scope-badge {
    position: absolute; bottom: 30px; left: -20px;
    background: #00ff8c; color: #000; padding: 12px 24px;
    border-radius: 30px; font-weight: 700; box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    display: flex; align-items: center; gap: 10px;
}

.scope-list { list-style: none; margin-top: 30px; display: flex; flex-direction: column; gap: 25px; }
.scope-list li { display: flex; gap: 20px; align-items: flex-start; }
.scope-list li i {
    font-size: 24px; background: rgba(255,255,255,0.05);
    width: 50px; height: 50px; display: flex; align-items: center; justify-content: center;
    border-radius: 12px; flex-shrink: 0;
}
.scope-list li div strong { display: block; color: #fff; font-size: 18px; margin-bottom: 5px; }
.scope-list li div span { color: #8e92a2; font-size: 14px; }

/* --- SECCIÓN METODOLOGÍA (Pasos) --- */
.methodology-section { padding: 80px 0; background: #08080a; }

.process-steps {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 50px;
}

.step-card {
    position: relative;
    padding: 30px 20px;
    background: rgba(255,255,255,0.02);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s;
}

.step-card:hover { border-color: var(--primary-pink); background: rgba(255,255,255,0.04); }

.step-number {
    font-size: 40px; font-weight: 900; color: rgba(255,255,255,0.05);
    position: absolute; top: 10px; right: 20px; line-height: 1;
}

.step-card:hover .step-number { color: rgba(240, 161, 207, 0.2); }

.step-card h3 { color: #fff; font-size: 20px; margin-bottom: 15px; position: relative; z-index: 1; }
.step-card p { color: #b0b0b5; font-size: 14px; position: relative; z-index: 1; }

/* Responsive Servicios */
@media (max-width: 900px) {
    .pain-grid { grid-template-columns: 1fr 1fr; }
    .scope-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .hero-btns.justify-center { flex-direction: column; width: 100%; }
    .hero-btns .btn-primary, .hero-btns .btn-secondary { width: 100%; justify-content: center; }
}

@media (max-width: 500px) {
    .pain-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
}

/* =========================================
   19. PÁGINA CABLEADO ESTRUCTURADO
   ========================================= */

/* Hero Específico con imagen de Datacenter/Cables */
.service-hero.cabling-bg {
    background: url('https://plus.unsplash.com/premium_photo-1683134027352-56d41226194e?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover no-repeat;
    height: 60vh;
    min-height: 450px;
    display: flex; align-items: center; justify-content: center; position: relative;
}

/* Badge Azul para Infraestructura */
.badge-blue {
    display: inline-block; background: rgba(64, 123, 255, 0.1); color: #407bff;
    border: 1px solid rgba(64, 123, 255, 0.2); padding: 6px 14px;
    border-radius: 20px; font-size: 11px; font-weight: 700; margin-bottom: 20px;
}

/* Ajustes visuales para la sección de Pain Points de Cableado */
.pain-card .fa-network-wired { color: #f0a1cf; } /* Color específico si quieres */

/* =========================================
   20. PÁGINA OUTSOURCING TI
   ========================================= */

/* Hero Específico (Ambiente de oficina/equipo) */
.service-hero.outsourcing-bg {
    background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1920&q=80') center/cover no-repeat;
    height: 60vh;
    min-height: 450px;
    display: flex; align-items: center; justify-content: center; position: relative;
}

/* Ajustes de iconos para esta sección */
.pain-card .fa-file-invoice-dollar { color: #f0a1cf; } 
.pain-card .fa-user-graduate { color: #407bff; }

/* =========================================
   21. PÁGINA VENTA DE EQUIPOS
   ========================================= */

/* Hero Específico (Hardware High-Tech) */
.service-hero.hardware-bg {
    background: url('https://images.unsplash.com/photo-1591405351990-4726e331f141?w=1920&q=80') center/cover no-repeat;
    height: 60vh;
    min-height: 450px;
    display: flex; align-items: center; justify-content: center; position: relative;
}

/* Ajustes de iconos específicos para venta */
.pain-card .fa-home { color: #f0a1cf; } 
.pain-card .fa-skull-crossbones { color: #ff4d4d; }

/* =========================================
   22. CIBERSEGURIDAD (ESTILOS MEJORADOS V2)
   ========================================= */

/* Hero Cyber V2 (Imagen más abstracta y tecnológica) */
.service-hero.cyber-bg-v2 {
    /* Nueva imagen de red global/escudo digital */
    background: url('https://images.unsplash.com/photo-1740560051549-cc6799220d48?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover no-repeat;
    height: 70vh; min-height: 550px;
    display: flex; align-items: center; justify-content: center; position: relative;
}

.hero-overlay-cyber {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(5, 5, 10, 0.9) 0%, #050507 100%);
    /* Trama de puntos tech */
    background-image: radial-gradient(rgba(255, 50, 50, 0.15) 1px, transparent 1px);
    background-size: 25px 25px;
}

.badge-red-glow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255, 77, 77, 0.15); color: #ff4d4d;
    border: 1px solid rgba(255, 77, 77, 0.5); padding: 8px 20px;
    border-radius: 30px; font-size: 12px; font-weight: 800; margin-bottom: 25px;
    box-shadow: 0 0 25px rgba(255, 77, 77, 0.3); letter-spacing: 1.5px; text-transform: uppercase;
}

.text-gradient-cyber {
    background: linear-gradient(90deg, #ff4d4d, #ff3333, #ff9a9e);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(255, 77, 77, 0.3)); /* Resplandor en texto */
}

.btn-primary.cyber-btn {
    background: #ff4d4d; color: #fff; border: none;
    box-shadow: 0 5px 25px rgba(255, 77, 77, 0.5); font-weight: 700;
}
.btn-primary.cyber-btn:hover { background: #ff2222; box-shadow: 0 10px 40px rgba(255, 77, 77, 0.7); }

/* PARTNERS STRIP */
.partners-strip {
    background: #0d0d12; border-bottom: 1px solid rgba(255,255,255,0.05); padding: 40px 0; text-align: center;
}
.partners-strip p { color: #8e92a2; font-size: 14px; margin-bottom: 25px; letter-spacing: 1px; text-transform: uppercase; }
.brand-row { display: flex; justify-content: center; gap: 60px; flex-wrap: wrap; align-items: center; }
.brand-row img { height: 40px; opacity: 0.6; transition: 0.3s; filter: grayscale(100%); }
.brand-row img:hover { opacity: 1; filter: none !important; }

/* TABS SYSTEM (ARQUITECTURA) */

.tab-pane { 
    display: none; /* <--- ESTO ES VITAL: Oculta todo por defecto */
    opacity: 0; 
    animation: fadeIn 0.4s ease forwards; 
}

.tab-pane.active { 
    display: block; /* <--- Solo muestra el que tenga la clase 'active' */
}

/* Animación de aparición suave */
@keyframes fadeIn { to { opacity: 1; } }

.badge-red-outline {
    display: inline-block; border: 1px solid rgba(255, 77, 77, 0.4); color: #ff4d4d;
    padding: 6px 14px; border-radius: 20px; font-size: 11px; font-weight: 700; margin-bottom: 20px; text-transform: uppercase;
}
.tabs-section { padding: 80px 0; background: var(--bg-dark); }
.tabs-container {
    display: flex; gap: 40px; margin-top: 50px;
    background: #0d0d12; border: 1px solid rgba(255,255,255,0.05);
    border-radius: 24px; padding: 40px; min-height: 450px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.tabs-nav { display: flex; flex-direction: column; gap: 12px; min-width: 260px; }
.tab-btn {
    background: rgba(255,255,255,0.02); border: 1px solid transparent; text-align: left;
    padding: 18px 25px; color: #8e92a2; font-size: 15px; font-weight: 600;
    cursor: pointer; border-radius: 12px; transition: 0.3s;
    display: flex; align-items: center; gap: 12px; font-family: var(--font-main);
}
.tab-btn:hover { background: rgba(255,255,255,0.05); color: #fff; border-color: rgba(255,255,255,0.1); }
.tab-btn.active {
    background: rgba(255, 77, 77, 0.15); color: #ff4d4d; border-color: rgba(255, 77, 77, 0.3);
    box-shadow: 0 0 20px rgba(255, 77, 77, 0.1) inset;
}
.tabs-content-area { flex-grow: 1; }
.pane-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 50px; align-items: center; }
.pane-text h3 { color: #fff; font-size: 26px; margin-bottom: 20px; }
.pane-text p { color: #b0b0b5; font-size: 16px; margin-bottom: 25px; line-height: 1.7; }
.pane-text ul li { display: flex; gap: 12px; color: #e2e2e2; margin-bottom: 15px; }
.color-red { color: #ff4d4d; }
.pane-img img {
    width: 100%; border-radius: 16px; border: 1px solid rgba(255, 77, 77, 0.2);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

/* --- NUEVA SECCIÓN: POR QUÉ ELEGIRNOS (DIFERENCIALES) --- */
.why-cyber-section { padding: 80px 0; background: #0a0a0f; }
.why-cyber-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
.wc-card {
    background: #0d0d12; padding: 35px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.05);
    text-align: center; transition: 0.3s;
}
.wc-card:hover { transform: translateY(-5px); border-color: rgba(255, 77, 77, 0.3); background: rgba(255, 77, 77, 0.05); }
.wc-icon.red-glow {
    font-size: 36px; color: #ff4d4d; margin-bottom: 25px;
    background: rgba(255, 77, 77, 0.1); width: 80px; height: 80px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 25px;
    box-shadow: 0 0 20px rgba(255, 77, 77, 0.2);
}
.wc-card h3 { color: #fff; font-size: 20px; margin-bottom: 15px; }
.wc-card p { color: #b0b0b5; font-size: 15px; line-height: 1.6; }

/* --- NUEVA SECCIÓN: METODOLOGÍA (STEP-BY-STEP) --- */
.cyber-methodology-section { padding: 80px 0; background: var(--bg-dark); }
.cyber-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; margin-top: 50px; }
.c-step {
    background: #0d0d12; padding: 30px 25px; border-radius: 16px; border: 1px solid rgba(255,255,255,0.05);
    position: relative; overflow: hidden; transition: 0.3s;
}
.c-step:hover { border-color: #ff4d4d; }
.step-num { font-size: 40px; font-weight: 900; color: rgba(255, 77, 77, 0.1); position: absolute; top: 15px; right: 20px; }
.c-step h4 { color: #fff; font-size: 18px; margin-bottom: 15px; position: relative; z-index: 2; }
.c-step p { color: #b0b0b5; font-size: 14px; position: relative; z-index: 2; }
.c-icon-bg {
    position: absolute; bottom: -20px; right: -20px; font-size: 100px;
    color: rgba(255, 77, 77, 0.03); z-index: 1; transform: rotate(-20deg); transition: 0.3s;
}
.c-step:hover .c-icon-bg { color: rgba(255, 77, 77, 0.08); transform: rotate(0deg) scale(1.1); }

/* PAIN POINTS & CTA (Estilos ajustados) */
.cyber-pain-section { padding: 80px 0; background: #08080a; }
.cp-card {
    background: linear-gradient(180deg, #0d0d12 0%, rgba(255,77,77,0.08) 100%);
    border: 1px solid rgba(255,255,255,0.05); padding: 35px; border-radius: 20px;
}
.cp-card:hover { border-color: #ff4d4d; box-shadow: 0 10px 30px rgba(255, 77, 77, 0.1); }
.cp-icon .fa-skull-crossbones { color: #ff4d4d; } .cp-icon .fa-gavel { color: #ffae42; } .cp-icon .fa-chart-line-down { color: #f0a1cf; }

.cta-section.cyber-cta { background: linear-gradient(0deg, #050507, rgba(255, 77, 77, 0.05)); }

/* Responsive */
@media (max-width: 1024px) {
    .tabs-container { flex-direction: column; padding: 30px; }
    .tabs-nav { flex-direction: row; overflow-x: auto; padding-bottom: 15px; gap: 15px; }
    .tab-btn { min-width: 180px; flex-shrink: 0; }
    .pane-grid { grid-template-columns: 1fr; text-align: center; gap: 30px; }
    .pane-text ul { display: inline-block; text-align: left; }
    .why-cyber-grid, .cyber-steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .why-cyber-grid, .cyber-steps { grid-template-columns: 1fr; }
}


/* =========================================
   23. INTELIGENCIA DE AMENAZAS (CSS FINAL)
   ========================================= */

/* 1. FONDO DEL HERO (La imagen de gráficos/datos) */
.service-hero.intel-bg {
    background-image: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?w=1920&q=80');
    background-size: cover;
    background-position: center;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* 2. EL FILTRO OSCURO (CORREGIDO) */
/* Usamos rgba con 0.85 para que sea oscuro pero deje ver la foto */
.hero-overlay-cyber {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 2;
    background: 
        radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px), /* Puntos */
        linear-gradient(180deg, rgba(5, 5, 16, 0.7) 0%, #050507 100%); /* Degradado semi-transparente */
    background-size: 30px 30px, cover;
    pointer-events: none;
}

/* 3. COLORES PÚRPURA (BADGES Y BOTONES) */

/* Badge (Etiqueta superior) */
.badge-purple-glow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(155, 93, 229, 0.15); 
    color: #9b5de5;
    border: 1px solid rgba(155, 93, 229, 0.5); 
    padding: 8px 20px;
    border-radius: 30px; 
    font-size: 12px; font-weight: 800; margin-bottom: 25px;
    box-shadow: 0 0 25px rgba(155, 93, 229, 0.3); 
    letter-spacing: 1.5px; text-transform: uppercase;
}

/* Texto Gradiente (Intel) */
.text-gradient-intel {
    background: linear-gradient(90deg, #9b5de5, #b5179e);
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(155, 93, 229, 0.3));
}

/* Botón Principal Púrpura */
.btn-primary.intel-btn {
    background: #9b5de5; 
    color: #fff; 
    border: none;
    box-shadow: 0 5px 25px rgba(155, 93, 229, 0.4); 
    font-weight: 700;
}
.btn-primary.intel-btn:hover { 
    background: #7209b7; 
    box-shadow: 0 10px 40px rgba(155, 93, 229, 0.6); 
    transform: translateY(-2px);
}

/* Badge delineado para secciones internas */
.badge-purple-outline {
    display: inline-block; 
    border: 1px solid rgba(155, 93, 229, 0.4); 
    color: #9b5de5;
    padding: 6px 14px; 
    border-radius: 20px; 
    font-size: 11px; font-weight: 700; margin-bottom: 20px; 
    text-transform: uppercase;
}

/* Color específico para iconos de check */
.color-purple { color: #9b5de5; }

/* Iconos de Fuentes de Inteligencia (pequeños pills) */
.intel-source {
    display: flex; align-items: center; gap: 10px;
    color: #b0b0b5; font-weight: 600; font-size: 15px;
    background: rgba(255,255,255,0.05); 
    padding: 10px 20px; border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.05); 
    transition: 0.3s;
}
.intel-source:hover { 
    border-color: #9b5de5; 
    color: #fff; 
    background: rgba(155, 93, 229, 0.1); 
}

/* =========================================
   24. METODOLOGÍA INTELIGENCIA (ESTILO PURPLE)
   ========================================= */

.cyber-methodology-section { 
    padding: 80px 0; 
    background: #08080a; /* Fondo muy oscuro */
}

.cyber-steps { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 25px; 
    margin-top: 50px; 
}

/* Tarjeta del Paso (Intel Style) */
.c-step.intel-step {
    background: #0d0d12; 
    padding: 30px 25px; 
    border-radius: 16px; 
    border: 1px solid rgba(255,255,255,0.05);
    position: relative; 
    overflow: hidden; 
    transition: 0.3s;
}

/* Hover Púrpura */
.c-step.intel-step:hover { 
    border-color: #9b5de5; 
    transform: translateY(-5px);
    background: linear-gradient(180deg, #0d0d12 0%, rgba(155, 93, 229, 0.05) 100%);
}

/* Número del Paso */
.c-step.intel-step .step-num { 
    font-size: 40px; 
    font-weight: 900; 
    color: rgba(155, 93, 229, 0.1); /* Púrpura transparente */
    position: absolute; 
    top: 15px; 
    right: 20px; 
}

/* Títulos y Textos */
.c-step.intel-step h4 { 
    color: #fff; 
    font-size: 18px; 
    margin-bottom: 15px; 
    position: relative; 
    z-index: 2; 
}

.c-step.intel-step p { 
    color: #b0b0b5; 
    font-size: 14px; 
    position: relative; 
    z-index: 2; 
    line-height: 1.6;
}

/* Icono de fondo gigante */
.c-icon-bg {
    position: absolute; 
    bottom: -20px; 
    right: -20px; 
    font-size: 100px;
    color: rgba(155, 93, 229, 0.03); /* Púrpura muy sutil */
    z-index: 1; 
    transform: rotate(-20deg); 
    transition: 0.3s;
}

.c-step.intel-step:hover .c-icon-bg { 
    color: rgba(155, 93, 229, 0.1); 
    transform: rotate(0deg) scale(1.1); 
}

/* Responsive */
@media (max-width: 900px) {
    .cyber-steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .cyber-steps { grid-template-columns: 1fr; }
}

/* =========================================
   25. DIGITAL RISK PROTECTION (ESTILO CYAN/DRP)
   ========================================= */

/* 1. FONDO DEL HERO (Mapa Digital/Mundo Conectado) */
.service-hero.drp-bg {
    background-image: url('https://images.unsplash.com/photo-1760199789455-49098afd02f0?q=80&w=1171&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* El overlay oscuro ya lo corregimos en el paso anterior y aplica para todos */

/* 2. COLOR CYAN (BADGES Y BOTONES) */

/* Badge Cyan Brillante */
.badge-cyan-glow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(0, 242, 234, 0.15); 
    color: #00f2ea; /* Cyan Neón */
    border: 1px solid rgba(0, 242, 234, 0.5); 
    padding: 8px 20px;
    border-radius: 30px; 
    font-size: 12px; font-weight: 800; margin-bottom: 25px;
    box-shadow: 0 0 25px rgba(0, 242, 234, 0.3); 
    letter-spacing: 1.5px; text-transform: uppercase;
}

/* Texto Gradiente Cyan */
.text-gradient-drp {
    background: linear-gradient(90deg, #00f2ea, #4cc9f0);
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(0, 242, 234, 0.3));
}

/* Botón Principal Cyan */
.btn-primary.drp-btn {
    background: #00f2ea; 
    color: #000; /* Texto negro para contraste con cyan */
    border: none;
    box-shadow: 0 5px 25px rgba(0, 242, 234, 0.4); 
    font-weight: 700;
}
.btn-primary.drp-btn:hover { 
    background: #4cc9f0; 
    box-shadow: 0 10px 40px rgba(0, 242, 234, 0.6); 
    transform: translateY(-2px);
}

/* Badge delineado */
.badge-cyan-outline {
    display: inline-block; 
    border: 1px solid rgba(0, 242, 234, 0.4); 
    color: #00f2ea;
    padding: 6px 14px; 
    border-radius: 20px; 
    font-size: 11px; font-weight: 700; margin-bottom: 20px; 
    text-transform: uppercase;
}

/* Color específico para iconos de check */
.color-cyan { color: #00f2ea; }

/* Iconos de Fuentes DRP */
.drp-source {
    display: flex; align-items: center; gap: 10px;
    color: #b0b0b5; font-weight: 600; font-size: 15px;
    background: rgba(255,255,255,0.05); 
    padding: 10px 20px; border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.05); 
    transition: 0.3s;
}
.drp-source:hover { 
    border-color: #00f2ea; 
    color: #fff; 
    background: rgba(0, 242, 234, 0.1); 
}

/* 3. METODOLOGÍA DRP (TAKEDOWN) */
.c-step.drp-step {
    background: #0d0d12; 
    padding: 30px 25px; 
    border-radius: 16px; 
    border: 1px solid rgba(255,255,255,0.05);
    position: relative; overflow: hidden; transition: 0.3s;
}

.c-step.drp-step:hover { 
    border-color: #00f2ea; 
    transform: translateY(-5px);
    background: linear-gradient(180deg, #0d0d12 0%, rgba(0, 242, 234, 0.05) 100%);
}

.c-step.drp-step .step-num { 
    font-size: 40px; font-weight: 900; 
    color: rgba(0, 242, 234, 0.1); 
    position: absolute; top: 15px; right: 20px; 
}

.c-step.drp-step h4 { 
    color: #fff; font-size: 18px; margin-bottom: 15px; 
    position: relative; z-index: 2; 
}

.c-step.drp-step p { 
    color: #b0b0b5; font-size: 14px; 
    position: relative; z-index: 2; line-height: 1.6;
}

/* Icono de fondo cyan */
.c-step.drp-step:hover .c-icon-bg { 
    color: rgba(0, 242, 234, 0.1); 
    transform: rotate(0deg) scale(1.1); 
}

/* =========================================
   26. SEGURIDAD OFENSIVA (ESTILO ORANGE/HACKER)
   ========================================= */

/* 1. FONDO DEL HERO (Hacker/Código/Fuego) */
.service-hero.offensive-bg {
    background-image: url('https://images.unsplash.com/photo-1526374965328-7f61d4dc18c5?w=1920&q=80');
    background-size: cover;
    background-position: center;
    height: 70vh; min-height: 500px;
    display: flex; align-items: center; justify-content: center; position: relative;
    z-index: 1;
}

/* 2. COLOR ORANGE (BADGES Y BOTONES) */

/* Badge Naranja Brillante */
.badge-orange-glow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255, 159, 28, 0.15); 
    color: #ff9f1c; /* Naranja Neón */
    border: 1px solid rgba(255, 159, 28, 0.5); 
    padding: 8px 20px;
    border-radius: 30px; font-size: 12px; font-weight: 800; margin-bottom: 25px;
    box-shadow: 0 0 25px rgba(255, 159, 28, 0.3); 
    letter-spacing: 1.5px; text-transform: uppercase;
}

/* Texto Gradiente Naranja */
.text-gradient-offensive {
    background: linear-gradient(90deg, #ff9f1c, #ff5e00);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(255, 159, 28, 0.3));
}

/* Botón Principal Naranja */
.btn-primary.offensive-btn {
    background: #ff9f1c; color: #000;
    border: none; box-shadow: 0 5px 25px rgba(255, 159, 28, 0.4); font-weight: 700;
}
.btn-primary.offensive-btn:hover { 
    background: #e08e1a; 
    box-shadow: 0 10px 40px rgba(255, 159, 28, 0.6); transform: translateY(-2px);
}

/* Badge delineado */
.badge-orange-outline {
    display: inline-block; border: 1px solid rgba(255, 159, 28, 0.4); color: #ff9f1c;
    padding: 6px 14px; border-radius: 20px; font-size: 11px; font-weight: 700; margin-bottom: 20px; text-transform: uppercase;
}

/* Color específico */
.color-orange { color: #ff9f1c; }

/* Tira de Estándares (Iconos técnicos) */
.standards-row {
    display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
}
.std-item {
    display: flex; align-items: center; gap: 12px;
    color: #b0b0b5; font-weight: 700; font-size: 16px;
    border: 1px solid rgba(255,255,255,0.1); padding: 12px 25px; border-radius: 8px;
    transition: 0.3s;
}
.std-item i { color: #ff9f1c; font-size: 20px; }
.std-item:hover { border-color: #ff9f1c; background: rgba(255, 159, 28, 0.05); color: #fff; }

/* 3. METODOLOGÍA OFENSIVA (KILL CHAIN) */
.c-step.offensive-step {
    background: #0d0d12; padding: 30px 25px; border-radius: 16px; 
    border: 1px solid rgba(255,255,255,0.05);
    position: relative; overflow: hidden; transition: 0.3s;
}
.c-step.offensive-step:hover { 
    border-color: #ff9f1c; transform: translateY(-5px);
    background: linear-gradient(180deg, #0d0d12 0%, rgba(255, 159, 28, 0.05) 100%);
}
.c-step.offensive-step .step-num { 
    font-size: 40px; font-weight: 900; color: rgba(255, 159, 28, 0.1); 
    position: absolute; top: 15px; right: 20px; 
}
.c-step.offensive-step h4 { 
    color: #fff; font-size: 18px; margin-bottom: 15px; position: relative; z-index: 2; 
}
.c-step.offensive-step p { 
    color: #b0b0b5; font-size: 14px; position: relative; z-index: 2; line-height: 1.6;
}
/* Icono de fondo naranja */
.c-step.offensive-step:hover .c-icon-bg { 
    color: rgba(255, 159, 28, 0.1); transform: rotate(0deg) scale(1.1); 
}

/* Ajuste de iconos de riesgo para esta página */
.cp-icon .fa-blind { color: #ff9f1c; } .cp-icon .fa-bomb { color: #ff4d4d; }

/* =========================================
   27. GESTIÓN DE VULNERABILIDADES (ESTILO GOLD)
   ========================================= */

/* 1. FONDO DEL HERO (Radar/Scanning/Tech) */
.service-hero.vuln-bg {
    background-image: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?w=1920&q=80'); /* Reusamos la de intel o buscamos una de radar */
    /* Alternativa Radar: https://images.unsplash.com/photo-1518770660439-4636190af475?w=1920&q=80 */
    background-size: cover;
    background-position: center;
    height: 70vh; min-height: 500px;
    display: flex; align-items: center; justify-content: center; position: relative;
    z-index: 1;
}

/* 2. COLOR GOLD (BADGES Y BOTONES) */

/* Badge Dorado Brillante */
.badge-gold-glow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255, 215, 0, 0.15); 
    color: #ffd700; /* Gold */
    border: 1px solid rgba(255, 215, 0, 0.5); 
    padding: 8px 20px;
    border-radius: 30px; font-size: 12px; font-weight: 800; margin-bottom: 25px;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.3); 
    letter-spacing: 1.5px; text-transform: uppercase;
}

/* Texto Gradiente Dorado */
.text-gradient-gold {
    background: linear-gradient(90deg, #ffd700, #fdb927);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

/* Botón Principal Dorado */
.btn-primary.vuln-btn {
    background: #ffd700; color: #000;
    border: none; box-shadow: 0 5px 25px rgba(255, 215, 0, 0.4); font-weight: 700;
}
.btn-primary.vuln-btn:hover { 
    background: #ffcc00; 
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.6); transform: translateY(-2px);
}

/* Badge delineado */
.badge-gold-outline {
    display: inline-block; border: 1px solid rgba(255, 215, 0, 0.4); color: #ffd700;
    padding: 6px 14px; border-radius: 20px; font-size: 11px; font-weight: 700; margin-bottom: 20px; text-transform: uppercase;
}

/* Color específico */
.color-gold { color: #ffd700; }

/* 3. METODOLOGÍA VULN (CYCLE) */
.c-step.vuln-step {
    background: #0d0d12; padding: 30px 25px; border-radius: 16px; 
    border: 1px solid rgba(255,255,255,0.05);
    position: relative; overflow: hidden; transition: 0.3s;
}
.c-step.vuln-step:hover { 
    border-color: #ffd700; transform: translateY(-5px);
    background: linear-gradient(180deg, #0d0d12 0%, rgba(255, 215, 0, 0.05) 100%);
}
.c-step.vuln-step .step-num { 
    font-size: 40px; font-weight: 900; color: rgba(255, 215, 0, 0.1); 
    position: absolute; top: 15px; right: 20px; 
}
.c-step.vuln-step h4 { 
    color: #fff; font-size: 18px; margin-bottom: 15px; position: relative; z-index: 2; 
}
.c-step.vuln-step p { 
    color: #b0b0b5; font-size: 14px; position: relative; z-index: 2; line-height: 1.6;
}
/* Icono de fondo dorado */
.c-step.vuln-step:hover .c-icon-bg { 
    color: rgba(255, 215, 0, 0.1); transform: rotate(0deg) scale(1.1); 
}

/* Ajustes de iconos de riesgo */
.cp-icon .fa-layer-group { color: #ffd700; } .cp-icon .fa-history { color: #ffd700; }

/* =========================================
   28. INGENIERÍA SOCIAL (ESTILO LIME/TOXIC)
   ========================================= */

/* 1. FONDO DEL HERO (Persona/Hacker/Psicología) */
.service-hero.social-bg {
    /* Imagen de persona frente a pantalla o concepto de identidad */
    background-image: url('https://images.unsplash.com/photo-1540929140372-508d6f9096bd?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center;
    height: 70vh; min-height: 500px;
    display: flex; align-items: center; justify-content: center; position: relative;
    z-index: 1;
}

/* 2. COLOR LIME (BADGES Y BOTONES) */

/* Badge Lime Brillante */
.badge-lime-glow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(191, 255, 0, 0.15); 
    color: #c0ff00; /* Lime Green / Toxic */
    border: 1px solid rgba(191, 255, 0, 0.5); 
    padding: 8px 20px;
    border-radius: 30px; font-size: 12px; font-weight: 800; margin-bottom: 25px;
    box-shadow: 0 0 25px rgba(191, 255, 0, 0.3); 
    letter-spacing: 1.5px; text-transform: uppercase;
}

/* Texto Gradiente Lime */
.text-gradient-lime {
    background: linear-gradient(90deg, #c0ff00, #39ff14);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(191, 255, 0, 0.3));
}

/* Botón Principal Lime */
.btn-primary.lime-btn {
    background: #c0ff00; color: #000;
    border: none; box-shadow: 0 5px 25px rgba(191, 255, 0, 0.4); font-weight: 700;
}
.btn-primary.lime-btn:hover { 
    background: #aaff00; 
    box-shadow: 0 10px 40px rgba(191, 255, 0, 0.6); transform: translateY(-2px);
}

/* Badge delineado */
.badge-lime-outline {
    display: inline-block; border: 1px solid rgba(191, 255, 0, 0.4); color: #c0ff00;
    padding: 6px 14px; border-radius: 20px; font-size: 11px; font-weight: 700; margin-bottom: 20px; text-transform: uppercase;
}

/* Color específico */
.color-lime { color: #c0ff00; }

/* 3. METODOLOGÍA SOCIAL (AWARENESS) */
.c-step.lime-step {
    background: #0d0d12; padding: 30px 25px; border-radius: 16px; 
    border: 1px solid rgba(255,255,255,0.05);
    position: relative; overflow: hidden; transition: 0.3s;
}
.c-step.lime-step:hover { 
    border-color: #c0ff00; transform: translateY(-5px);
    background: linear-gradient(180deg, #0d0d12 0%, rgba(191, 255, 0, 0.05) 100%);
}
.c-step.lime-step .step-num { 
    font-size: 40px; font-weight: 900; color: rgba(191, 255, 0, 0.1); 
    position: absolute; top: 15px; right: 20px; 
}
.c-step.lime-step h4 { 
    color: #fff; font-size: 18px; margin-bottom: 15px; position: relative; z-index: 2; 
}
.c-step.lime-step p { 
    color: #b0b0b5; font-size: 14px; position: relative; z-index: 2; line-height: 1.6;
}
/* Icono de fondo lime */
.c-step.lime-step:hover .c-icon-bg { 
    color: rgba(191, 255, 0, 0.1); transform: rotate(0deg) scale(1.1); 
}

/* Ajustes de iconos de riesgo */
.cp-icon .fa-envelope-open { color: #c0ff00; } .cp-icon .fa-user-clock { color: #c0ff00; }

/* =========================================
   29. PÁGINA CONTACTO
   ========================================= */

/* Hero Contacto */
.page-hero.contact-bg {
    background-image: url('https://images.unsplash.com/photo-1486312338219-ce68d2c6f44d?w=1920&q=80');
    background-size: cover; background-position: center;
    height: 50vh; min-height: 400px;
    display: flex; align-items: center; justify-content: center; position: relative;
    z-index: 1;
}

/* Layout Principal */
.contact-section { padding: 80px 0; background: var(--bg-dark); }
.contact-wrapper {
    display: grid; grid-template-columns: 1fr 1.5fr; gap: 0;
    border-radius: 24px; overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.05);
}

/* Columna Izquierda (Info) */
.contact-info-box {
    background: linear-gradient(135deg, #1a1a2e 0%, #0d0d12 100%);
    padding: 60px 40px; color: #fff;
}
.contact-info-box h3 { font-size: 24px; margin-bottom: 15px; }
.contact-info-box p { color: #b0b0b5; margin-bottom: 40px; font-size: 15px; }

.info-item { display: flex; gap: 20px; margin-bottom: 30px; }
.icon-box {
    width: 50px; height: 50px; background: rgba(255,255,255,0.05);
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    color: var(--primary-pink); font-size: 20px; flex-shrink: 0;
}
.info-item h4 { font-size: 16px; margin-bottom: 5px; color: #fff; }
.info-item p { margin-bottom: 0; color: #b0b0b5; font-size: 14px; }
.info-item a { color: #fff; text-decoration: none; transition: 0.3s; }
.info-item a:hover { color: var(--primary-pink); }

.contact-socials { display: flex; gap: 15px; margin-top: 50px; }
.contact-socials a {
    width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center; color: #fff; transition: 0.3s;
}
.contact-socials a:hover { background: #fff; color: #000; }

/* Columna Derecha (Formulario) */
.contact-form-box { background: #08080a; padding: 60px 50px; }
.contact-form-box h3 { font-size: 28px; margin-bottom: 30px; color: #fff; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; color: #8e92a2; font-size: 13px; margin-bottom: 8px; font-weight: 500; }

.form-group input, .form-group select, .form-group textarea {
    width: 100%; background: #13131a; border: 1px solid rgba(255,255,255,0.1);
    padding: 12px 15px; border-radius: 8px; color: #fff; font-family: var(--font-main);
    transition: 0.3s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--primary-pink); background: #1a1a24;
}

.full-width { width: 100%; display: flex; justify-content: center; gap: 10px; padding: 15px; font-size: 16px; }

/* Mensajes de Estado */
.form-message { margin-top: 20px; text-align: center; font-size: 14px; border-radius: 8px; padding: 10px; display: none; }
.form-message.success { background: rgba(0, 255, 140, 0.1); color: #00ff8c; border: 1px solid #00ff8c; display: block; }
.form-message.error { background: rgba(255, 77, 77, 0.1); color: #ff4d4d; border: 1px solid #ff4d4d; display: block; }

/* Mapa */
.map-section { height: 450px; filter: grayscale(100%) invert(90%); }

/* Responsive */
@media (max-width: 900px) {
    .contact-wrapper { grid-template-columns: 1fr; }
    .contact-info-box { padding: 40px 20px; }
    .contact-form-box { padding: 40px 20px; }
    .form-row { grid-template-columns: 1fr; }
}

/* =========================================
   31. PÁGINAS LEGALES (Términos y Privacidad)
   ========================================= */

/* Hero Pequeño para Legales */
.page-hero.legal-bg {
    background: #0d0d12;
    height: 30vh; min-height: 250px;
    display: flex; align-items: center; justify-content: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* Contenedor de Texto */
.legal-section { padding: 80px 0; background: var(--bg-dark); }
.legal-wrapper {
    max-width: 900px; margin: 0 auto;
    background: #13131a; padding: 60px; border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
}

.legal-content h2 { color: #fff; font-size: 24px; margin: 40px 0 20px 0; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 10px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: #b0b0b5; font-size: 16px; line-height: 1.8; margin-bottom: 20px; }
.legal-content ul { margin-bottom: 20px; padding-left: 20px; }
.legal-content li { color: #b0b0b5; margin-bottom: 10px; list-style: circle; }
.legal-content strong { color: #fff; }

.last-update { color: #666; font-size: 14px; margin-bottom: 30px; display: block; font-style: italic; }

@media (max-width: 768px) {
    .legal-wrapper { padding: 30px 20px; }
}

