/* CSS PERSONALIZADO COMPLETO - SIN DEPENDENCIAS EXTERNAS */
:root {
    --bg-main: #060913;
    --bg-card: rgba(14, 20, 38, 0.4);
    --bg-card-hover: rgba(20, 30, 58, 0.6);
    --border-color: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(0, 245, 212, 0.3);
    
    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    
    --accent-neon: #00F5D4;
    --accent-blue: #3B82F6;
    --accent-purple: #8B5CF6;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    overflow-x: hidden;   /* <-- clave para iOS/Safari */
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(rgba(6, 9, 19, 0.85), rgba(6, 9, 19, 0.85)), 
                url('img/Background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--text-primary);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;      /* <-- refuerzo extra */
    line-height: 1.6;
    position: relative;    /* ayuda a que overflow-x:hidden se respete en algunos navegadores */
}

/* En móviles, background-attachment: fixed puede causar problemas de rendimiento/scroll (iOS) */
@media (max-width: 968px) {
    body {
        background-attachment: scroll;
    }
}

.mono {
    font-family: 'JetBrains Mono', monospace;
}

img {
    max-width: 100%;
    height: auto;
}

/* Contenedores */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Luces de Fondo (Glows) */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    z-index: 0;
    pointer-events: none;
}
.orb-1 {
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: rgba(59, 130, 246, 0.12);
}
.orb-2 {
    bottom: 20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(0, 245, 212, 0.06);
}

/* Header / Navbar */
.hero-section {
    position: relative;
    min-height: 100vh;
    min-height: 100svh; /* Corrige el 100vh en navegadores móviles (barra de direcciones) */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 32px;
    padding-bottom: 48px;
}

navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
    flex-wrap: wrap;
    gap: 16px;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #fff;
    text-decoration: none;
}

.logo span {
    color: var(--accent-neon);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #fff;
}

.btn-nav {
    background-color: #fff;
    color: #000;
    padding: 10px 20px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-nav:hover {
    background-color: var(--accent-neon);
    box-shadow: 0 0 20px rgba(0, 245, 212, 0.4);
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin: auto;
    padding: 80px 0;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 245, 212, 0.08);
    border: 1px solid rgba(0, 245, 212, 0.18);
    color: var(--accent-neon);
    border-radius: 9999px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 28px;
}

h1 {
    font-size: clamp(32px, 8vw, 64px);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 24px;
}

.hero-p {
    font-size: clamp(15px, 4vw, 20px);
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto 40px auto;
    font-weight: 300;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: var(--accent-neon);
    color: #000;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 20px rgba(0, 245, 212, 0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 245, 212, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: #fff;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--text-muted);
}

.hero-footer {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--border-color);
    padding-top: 32px;
    color: var(--text-muted);
    font-size: 11px;
    letter-spacing: 2px;
}

/* Sección de Servicios */
/* ==========================================================================
   Sección de Servicios y Tarjetas (Corregido y Optimizado)
   ========================================================================== */
.section-padding {
    padding: clamp(60px, 12vw, 120px) 0;
    position: relative;
}

.section-header {
    margin-bottom: 64px;
}

.section-tag {
    color: var(--accent-neon);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.section-title {
    font-size: clamp(28px, 6vw, 42px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
}

/* Grid de Servicios */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 24px;
}

/* Tarjeta Estilo Cristal Tecnológico con Animación Conservada */
/* Tarjeta Estilo Cristal Tecnológico Premium */
.service-card {
    background: linear-gradient(135px, rgba(10, 20, 18, 0.7) 0%, rgba(4, 10, 8, 0.9) 100%);
    border: 1px solid rgba(0, 245, 212, 0.12);
    border-radius: 24px; /* Un poco más curvo para mayor modernidad */
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
                inset 0 1px 1px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

/* Línea de energía superior (Animación intacta) */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-neon), transparent);
    transform: translateX(-100%);
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover::before {
    transform: translateX(100%);
}

/* Hover Avanzado con Resplandor (Glow) */
.service-card:hover {
    border-color: rgba(0, 245, 212, 0.35);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 245, 212, 0.05), 
                0 30px 60px rgba(0, 0, 0, 0.6),
                inset 0 1px 2px rgba(255, 255, 255, 0.1);
}

/* Contenedor de la Imagen: Simulación de Display */
.card-image-wrapper {
    width: 100%;
    height: 200px; /* Un poco más alto */
    overflow: hidden;
    border-radius: 14px;
    margin-bottom: 28px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    /* Fondo oscuro degradado para que el escudo rojo resalte sin bordes raros */
    background: radial-gradient(circle at center, #111a18 0%, #050a09 100%); 
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ajuste de la imagen para que NO se corte */
.card-service-img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Cambiado a contain para mostrar el arte completo */
    padding: 10px; /* Espacio de cortesía para que respire el gráfico */
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s;
    filter: drop-shadow(0 0 15px rgba(239, 68, 68, 0.15)); /* Ligero resplandor rojo de fondo */
}

.service-card:hover .card-service-img {
    transform: scale(1.06);
    filter: drop-shadow(0 0 25px rgba(239, 68, 68, 0.3)); /* Se intensifica el escudo al hover */
}

/* Badge del Número en sintonía con el título */
.card-num {
    display: inline-flex;
    padding: 4px 10px;
    background: rgba(0, 245, 212, 0.06);
    border-radius: 6px;
    color: var(--accent-neon);
    font-weight: 700;
    font-size: 12px;
    margin-bottom: 16px;
    border: 1px solid rgba(0, 245, 212, 0.2);
    width: fit-content;
    height: auto; /* Quitamos las dimensiones fijadas de caja para hacerlo sutil */
}

.card-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: -0.4px;
    line-height: 1.3;
}

.card-desc {
    font-size: 14px;
    color: #9cb0bc; 
    line-height: 1.6;
    font-weight: 400;
}

.card-tag {
    margin-top: 32px;
    font-size: 11px;
    letter-spacing: 2px;
    color: rgba(0, 245, 212, 0.6); /* El tag ahora hereda el tono verde cibernético */
    text-transform: uppercase;
    font-weight: 600;
    border-top: 1px solid rgba(0, 245, 212, 0.1);
    padding-top: 18px;
}

/* Sección Ecosistema (Dashboard Link & Futuro) */
.ecosystem-section {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.ecosystem-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.eco-text p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 16px;
}

.future-box {
    background: rgba(0, 245, 212, 0.03);
    border: 1px solid rgba(0, 245, 212, 0.15);
    border-radius: 16px;
    padding: 24px;
}

.future-tag {
    color: var(--accent-neon);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.future-box p {
    color: #d1d5db;
    font-size: 13px;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Simulación Interfaz Dashboard */
.mock-dashboard {
    background: #0b0f19;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.mock-header {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 6px;
}
.dot-r { background: #ef4444; }
.dot-y { background: #f59e0b; }
.dot-g { background: #10b981; }

.mock-path {
    color: var(--text-muted);
    font-size: 12px;
    margin-left: 12px;
    word-break: break-all;
}

.mock-console {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.console-line {
    font-size: 12px;
    word-break: break-word;
}
.line-success { color: #34d399; }
.line-info { color: var(--text-secondary); }

.mock-widget {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    padding: 16px;
}

.widget-title {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.progress-bar-bg {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 6px;
}

.progress-bar-fill {
    height: 100%;
    width: 84%;
    background: var(--accent-neon);
    border-radius: 999px;
}

.widget-meta {
    font-size: 10px;
    color: var(--text-muted);
}

/* Footer */
footer {
    border-top: 1px solid var(--border-color);
    padding: 60px 0 40px 0;
}

.footer-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-logo h3 {
    font-size: 20px;
    font-weight: 700;
}
.footer-logo h3 span {
    color: var(--accent-neon);
}

.footer-logo p {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-neon);
}

.copyright {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 32px;
}

/* Adaptabilidad Móvil */
@media (max-width: 968px) {
    h1 { font-size: 46px; }
    .ecosystem-split { grid-template-columns: 1fr; gap: 48px; }
    .nav-links { display: none; }
    .hero-footer { flex-direction: column; gap: 12px; text-align: center; }
    .footer-split { flex-direction: column; gap: 32px; text-align: center; }
    .services-grid { grid-template-columns: 1fr; }
}



/* ==========================================================================
   Ecosistema de Marca: TBINS Élite
   ========================================================================== */

/* Contenedor Principal del Logo */
.logo-container {
    display: flex;
    align-items: center;
    gap: 14px; /* Separación óptima entre el emblema y el texto */
    text-decoration: none;
    position: relative;
    padding: 6px 12px;
    background: rgba(0, 245, 212, 0.03);
    border: 1px solid rgba(0, 245, 212, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* El Emblema/Isotipo - Ahora más grande y con presencia */
.nav-logo-img {
    height: 56px; /* Escalado para que se note el diseño hacker */
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(0, 245, 212, 0.4)); /* Resplandor cibernético */
    transition: transform 0.5s ease;
}

/* Texto Integrado al lado de tu Logo */
.logo-container::after {
    content: 'TBINS';
    font-family: 'JetBrains Mono', monospace;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 2px;
    color: #ffffff;
    transition: color 0.3s ease;
}

/* Hover interactivo de nivel militar */
.logo-container:hover {
    border-color: rgba(0, 245, 212, 0.4);
    background: rgba(0, 245, 212, 0.06);
    box-shadow: 0 0 25px rgba(0, 245, 212, 0.15);
    transform: translateY(-1px);
}

.logo-container:hover .nav-logo-img {
    transform: rotate(4deg) scale(1.05); /* Pequeño giro orgánico de hardware activo */
}

/* ==========================================================================
   Ajustes para el Footer
   ========================================================================== */
.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.footer-logo-img {
    height: 64px; /* Presencia masiva también en el cierre de página */
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(0, 245, 212, 0.3));
    align-self: flex-start;
}


/* ==========================================================================
   MÓDULO INTERACTIVO MEGA BANNER (ESTILO HARDWARE CYBERPUNK)
   ========================================================================== */

.brand-mega-banner {
    position: relative;
    width: 100%;
    max-width: 950px;
    margin: 110px auto 40px auto; /* Espacio extra arriba para la salida del avatar */
    background: linear-gradient(135deg, rgba(10, 24, 24, 0.85) 0%, rgba(5, 14, 14, 0.95) 100%);
    border: 2px solid #1f4e47;
    border-radius: 12px;
    padding: 80px 40px 30px 40px;
    text-align: center;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.85),
                0 0 30px rgba(0, 245, 212, 0.05),
                inset 0 0 20px rgba(0, 245, 212, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: visible; /* Permite que el logo sobresalga sin recortarse */
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.brand-mega-banner:hover {
    border-color: #00F5D4;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.95),
                0 0 40px rgba(0, 245, 212, 0.2);
}

/* Capa de Posicionamiento del Hacker Gigante */
.banner-avatar-layer {
    position: absolute;
    top: -105px; /* Lo extrae radicalmente de la caja */
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    pointer-events: none;
    width: 100%;
    display: flex;
    justify-content: center;
}

.mega-hacker-img {
    height: 195px; /* Dimensión masiva e imponente */
    width: auto;
    max-width: 80%;
    object-fit: contain;
    /* Efecto de triple brillo radiactivo verde en los ojos y contorno */
    filter: drop-shadow(0 0 12px rgba(0, 245, 212, 0.6))
            drop-shadow(0 0 35px rgba(0, 245, 212, 0.3))
            drop-shadow(0 20px 15px rgba(0, 0, 0, 0.6));
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Animación cuando el usuario interactúa con la sección */
.brand-mega-banner:hover .mega-hacker-img {
    transform: scale(1.1) translateY(-5px);
    filter: drop-shadow(0 0 20px rgba(0, 245, 212, 0.8))
            drop-shadow(0 0 50px rgba(0, 245, 212, 0.5))
            drop-shadow(0 25px 20px rgba(0, 0, 0, 0.7));
}

/* Bloque del Título de la Marca */
.banner-branding {
    margin-top: 65px; /* Espacio prudente para que las letras no choquen con la capucha */
    margin-bottom: 30px;
}

.banner-title-text {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: clamp(26px, 6vw, 46px); /* Letras masivas de alta gama, escaladas */
    letter-spacing: 5px;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
}

.banner-tagline {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    font-size: clamp(13px, 3vw, 20px);
    color: #8a9a98;
    letter-spacing: 3px;
    margin-top: 6px;
}

/* Barra Inferior Blindada (Estilo Riel de la captura) */
.banner-hardware-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(180deg, #162422 0%, #0d1615 100%);
    border: 1px solid rgba(0, 245, 212, 0.3);
    border-radius: 6px;
    padding: 14px 25px;
    box-shadow: inset 0 1px 4px rgba(255, 255, 255, 0.05),
                0 4px 15px rgba(0, 0, 0, 0.4);
    flex-wrap: wrap;
    gap: 12px;
}

.status-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.status-neon-glow {
    width: 10px;
    height: 10px;
    background-color: #00F5D4;
    border-radius: 50%;
    box-shadow: 0 0 10px #00F5D4, 0 0 20px #00F5D4;
    flex-shrink: 0;
}

.status-display-text {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 17px;
    color: #e2e8f0;
    letter-spacing: 0.5px;
}

/* Biseles Decorativos Militares (Esquinas de la interfaz) */
.tech-corner {
    position: absolute;
    width: 16px;
    height: 16px;
    border: 3px solid #00F5D4;
    opacity: 0.4;
}
.tl { top: 12px; left: 12px; border-right: none; border-bottom: none; }
.tr { top: 12px; right: 12px; border-left: none; border-bottom: none; }
.bl { bottom: 12px; left: 12px; border-right: none; border-top: none; }
.br { bottom: 12px; right: 12px; border-left: none; border-top: none; }

/* Tornillos mecánicos simulados en los bordes */
.hardware-screws span {
    width: 5px;
    height: 5px;
    background: #233936;
    border-radius: 50%;
    display: inline-block;
    margin: 0 4px;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.8);
}

/* Línea de Escáner Perimetral */
.banner-laser-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(0, 245, 212, 0.8), transparent);
    animation: laserScan 4.5s linear infinite;
    pointer-events: none;
}

@keyframes laserScan {
    0% { top: 0%; opacity: 0; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}


/* ==========================================================================
   HERO CONTENT RE-ENGINEERING (CYBER OPS STYLE)
   ========================================================================== */

/* Ajuste del título principal y brackets cibernéticos */
.hero-content h1 {
    font-size: clamp(32px, 7.5vw, 64px);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 26px;
    word-wrap: break-word;
}

.syntax-bracket {
    color: rgba(0, 245, 212, 0.4);
    font-family: 'JetBrains Mono', monospace;
    font-weight: 300;
    margin: 0 5px;
}

.gradient-text-glow {
    background: linear-gradient(95deg, #3B82F6 0%, #00F5D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(0, 245, 212, 0.15));
}

/* Rediseño del Badge tipo Prompt de Consola */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: rgba(0, 245, 212, 0.04);
    border: 1px solid rgba(0, 245, 212, 0.25);
    color: var(--accent-neon);
    border-radius: 6px; /* Bordes angulares tipo hardware, reemplaza el pill original */
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 32px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.badge-prefix {
    color: rgba(0, 245, 212, 0.5);
}

.hero-p {
    font-size: clamp(15px, 4vw, 19px);
    color: #9cb0bc; /* Tono grisáceo azulado integrado con el layout de servicios */
    max-width: 720px;
    margin: 0 auto 44px auto;
    font-weight: 400;
    line-height: 1.7;
}

/* ==========================================================================
   BOTONES INTERACTIVOS DE TERMINAL CIBERNÉTICA
   ========================================================================== */

.hero-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Botón Primario con Línea de Escaneo Láser */
.btn-primary-terminal {
    position: relative;
    background-color: var(--accent-neon);
    color: #040f0f;
    padding: 18px 36px;
    border-radius: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1.5px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 6px 25px rgba(0, 245, 212, 0.2);
    text-align: center;
}

.btn-primary-terminal:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 245, 212, 0.45);
    filter: brightness(1.05);
}

.btn-primary-terminal .btn-scan-line {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transition: none;
}

.btn-primary-terminal:hover .btn-scan-line {
    left: 100%;
    transition: left 0.8s ease-in-out;
}

/* Botón Secundario Translúcido */
.btn-secondary-terminal {
    background: rgba(14, 20, 38, 0.6);
    border: 1px solid rgba(0, 245, 212, 0.25);
    color: #ffffff;
    padding: 18px 36px;
    border-radius: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    text-align: center;
}

.btn-secondary-terminal:hover {
    background: rgba(0, 245, 212, 0.05);
    border-color: var(--accent-neon);
    color: var(--accent-neon);
    box-shadow: 0 0 20px rgba(0, 245, 212, 0.15);
}

/* ==========================================================================
   HERO FOOTER DE CONSOLA INDUSTRIAL
   ========================================================================== */

.hero-footer {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(0, 245, 212, 0.15); /* Cambiado a verde sutil para match */
    background: linear-gradient(90deg, rgba(6, 9, 19, 0) 0%, rgba(14, 24, 22, 0.4) 50%, rgba(6, 9, 19, 0) 100%);
    padding: 24px 16px;
    color: #7a8a88;
    font-size: 12px;
    letter-spacing: 1.5px;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-status-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.terminal-prompt {
    color: var(--accent-neon);
    font-weight: 700;
}

/* ==========================================================================
   SECCIÓN DE CONTACTO - TARJETAS DE ASESORES
   ========================================================================== */

.asesores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.asesor-card-v2 {
    background: linear-gradient(160deg, rgba(10, 20, 18, 0.7) 0%, rgba(4, 10, 8, 0.9) 100%);
    border: 1px solid rgba(0, 245, 212, 0.12);
    border-radius: 20px;
    padding: 36px 24px 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
                inset 0 1px 1px rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.asesor-card-v2:hover {
    border-color: rgba(0, 245, 212, 0.35);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 245, 212, 0.05),
                0 30px 60px rgba(0, 0, 0, 0.6);
}

.asesor-avatar-wrapper {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, var(--accent-neon), var(--accent-blue));
    margin-bottom: 18px;
    box-shadow: 0 0 25px rgba(0, 245, 212, 0.25);
    flex-shrink: 0;
}

.asesor-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #060913;
    display: block;
}

.asesor-role {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-neon);
    opacity: 0.8;
    margin-bottom: 6px;
}

.asesor-name {
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: -0.3px;
}

.asesor-contacto-texto {
    width: 100%;
    margin-bottom: 20px;
    padding: 14px 16px;
    background: rgba(0, 245, 212, 0.03);
    border: 1px solid rgba(0, 245, 212, 0.1);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.asesor-contacto-texto p {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12.5px;
    letter-spacing: 0.3px;
    color: #9cb0bc;
    display: flex;
    align-items: center;
    gap: 6px;
    text-align: left;
}

.asesor-contacto-texto strong {
    color: var(--accent-neon);
    font-weight: 700;
    min-width: 78px;
    flex-shrink: 0;
}

.txt-wa strong { color: #25D366; }
.txt-tg strong { color: #3B82F6; }

@media (max-width: 600px) {
    .asesor-contacto-texto { padding: 12px 14px; gap: 6px; }
    .asesor-contacto-texto p { font-size: 11.5px; }
    .asesor-contacto-texto strong { min-width: 70px; }
}

.contact-pill {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 20px;
    background: linear-gradient(180deg, #0f1f1c 0%, #060d0b 100%);
    border: 2px solid rgba(0, 245, 212, 0.5);
    border-radius: 4px;
    /* Recorte angular en las esquinas, estilo placa hexagonal */
    clip-path: polygon(
        14px 0%, 100% 0%, 100% calc(100% - 14px),
        calc(100% - 14px) 100%, 0% 100%, 0% 14px
    );
    text-decoration: none;
    margin-bottom: 14px;
    position: relative;
    box-shadow: inset 0 1px 6px rgba(0, 245, 212, 0.08),
                0 4px 15px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
}

.contact-pill:last-child {
    margin-bottom: 0;
}

.contact-pill:hover {
    border-color: var(--accent-neon);
    box-shadow: inset 0 1px 6px rgba(0, 245, 212, 0.15),
                0 0 25px rgba(0, 245, 212, 0.35);
    transform: translateY(-2px);
}

/* Línea decorativa angular en la esquina, simulando remache/bisel */
.contact-pill::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 14px;
    height: 14px;
    border-top: 2px solid rgba(0, 245, 212, 0.8);
    border-left: 2px solid rgba(0, 245, 212, 0.8);
    opacity: 0.6;
}

.pill-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: rgba(0, 245, 212, 0.06);
    border: 2px solid var(--accent-neon);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-neon);
    box-shadow: 0 0 12px rgba(0, 245, 212, 0.5),
                inset 0 0 8px rgba(0, 245, 212, 0.15);
}

.pill-icon svg {
    width: 18px;
    height: 18px;
}

.pill-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    font-weight: 700;
    color: #e8fff8;
    letter-spacing: 0.5px;
    text-shadow: 0 0 8px rgba(0, 245, 212, 0.2);
}

.pill-tg .pill-icon {
    background: rgba(0, 245, 212, 0.06);
    border-color: var(--accent-neon);
    color: var(--accent-neon);
    box-shadow: 0 0 12px rgba(0, 245, 212, 0.5),
                inset 0 0 8px rgba(0, 245, 212, 0.15);
}

/* ==========================================================================
   RESPONSIVE MASTER — TABLET (≤968px)
   ========================================================================== */
@media (max-width: 968px) {
    .container { padding: 0 18px; }

    .ecosystem-split { grid-template-columns: 1fr; gap: 48px; }
    .nav-links { display: none; }
    .footer-split { flex-direction: column; gap: 32px; text-align: center; }
    .services-grid { grid-template-columns: 1fr; }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    .hero-cta-group a { width: 100%; }

    .hero-footer { flex-direction: column; gap: 16px; text-align: left; padding: 24px 16px; }

    /* Mega banner de marca */
    .brand-mega-banner { padding: 70px 24px 24px 24px; margin-top: 130px; }
    .banner-avatar-layer { top: -90px; }
    .mega-hacker-img { height: 150px; }
    .banner-hardware-footer { flex-direction: column; align-items: flex-start; }

    .footer-logo { align-items: center; }
    .footer-logo-img { align-self: center; }
}

/* ==========================================================================
   RESPONSIVE MASTER — MÓVIL (≤600px)
   ========================================================================== */
@media (max-width: 600px) {
    .container { padding: 0 16px; }

    navbar { justify-content: center; }
    .logo-container { padding: 5px 10px; gap: 10px; }
    .nav-logo-img { height: 42px; }
    .logo-container::after { font-size: 16px; letter-spacing: 1px; }

    .hero-content { padding: 48px 0; }
    .badge { font-size: 10px; padding: 6px 14px; }

    .btn-primary-terminal,
    .btn-secondary-terminal,
    .btn-primary,
    .btn-secondary { padding: 15px 24px; font-size: 13px; width: 100%; }

    .section-padding { padding: 56px 0; }
    .section-header { margin-bottom: 40px; }

    .service-card { padding: 22px; }
    .card-image-wrapper { height: 160px; }

    .asesores-grid { grid-template-columns: 1fr; gap: 18px; }
    .asesor-avatar-wrapper { width: 80px; height: 80px; }

    .brand-mega-banner { margin-top: 110px; padding: 56px 16px 20px 16px; border-radius: 10px; }
    .banner-avatar-layer { top: -75px; }
    .mega-hacker-img { height: 120px; }
    .banner-branding { margin-top: 45px; }
    .banner-tagline { letter-spacing: 1.5px; }

    .status-display-text { font-size: 14px; }

    .contact-pill { padding: 10px 16px; gap: 10px; }
    .pill-text { font-size: 12px; }
    .pill-icon { width: 30px; height: 30px; min-width: 30px; }

    footer { padding: 40px 0 28px 0; }
}

/* ==========================================================================
   RESPONSIVE MASTER — MÓVIL PEQUEÑO (≤380px)
   ========================================================================== */
@media (max-width: 380px) {
    .banner-title-text { letter-spacing: 2px; }
    .logo-container::after { display: none; } /* Evita saturar pantallas muy angostas */
    .mega-hacker-img { height: 100px; }
    .brand-mega-banner { margin-top: 95px; }
    .banner-avatar-layer { top: -65px; }
}


/* Blindaje anti-overflow horizontal en móvil */
@media (max-width: 968px) {
    html, body {
        overflow-x: hidden;
        max-width: 100%;
    }
    .hero-section,
    .brand-mega-banner,
    .banner-avatar-layer {
        max-width: 100vw;
    }
}