/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 26 2026 | 04:58:31 */
/* =========================================
   5️⃣ EL DISPARADOR FINAL (v3 Alta Intensidad)
   ========================================= */

.hack-section-v3 {
    position: relative;
    padding: 150px 0;
    overflow: hidden;
    background-color: var(--bg-color);
}

/* --- EL CONTENEDOR 'GLITCH' --- */
.glitch-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(10, 30, 63, 0.4); /* Fondo radial sutil */
    border: 1px solid rgba(0, 243, 255, 0.1);
    padding: 100px 60px; /* AIRE GIGANTE */
    backdrop-filter: blur(20px);
    overflow: hidden;
    box-shadow: 0 0 70px rgba(0, 243, 255, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* -------------------------------------
   DEMOSTRACIONES TÉCNICAS (CAPAS)
   ------------------------------------- */

/* 1. Rejilla Holográfica */
.grid-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(rgba(0, 243, 255, 0.05) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(0, 243, 255, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
}

/* 2. Data Streams (Pseudo Terminal) */
.data-streams {
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: 'Courier New', monospace; /* Fuente de terminal */
    font-size: 0.8rem;
    color: var(--text-color);
    opacity: 0.6;
    display: flex;
    flex-direction: column;
    gap: 5px;
    pointer-events: none;
    z-index: 1;
}

.data-streams span:nth-child(2) { animation: type-blink 0.5s step-end infinite alternate; }

/* 3. Circuito Overload SVG */
.circuit-overlay {
    position: absolute;
    top: 0; left: 0;
    z-index: 1;
    pointer-events: none;
}

.path-draw-animate {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: path-draw 5s linear infinite;
}

/* 4. Ruido Analógico */
.noise-overlay {
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3%3Ffilter id='noiseFilter'%3%3FfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3%3F/filter%3%3Frect width='100%' height='100%' filter='url(%23noiseFilter)'/%3%3F/svg%3%3F");
    opacity: 0.04;
    animation: noiseAnimation 0.3s infinite;
    pointer-events: none;
    z-index: 1;
}

/* 5. Esquinas de Mira (Adaptado de tu CSS) */
.corner-accents {
    position: absolute;
    width: 30px; height: 30px;
    z-index: 10;
    pointer-events: none;
}

.top-left-corner {
    top: 10px; left: 10px;
    border-top: 3px solid var(--accent-secondary);
    border-left: 3px solid var(--accent-secondary);
}

.bottom-right-corner {
    bottom: 10px; right: 10px;
    border-bottom: 3px solid var(--accent-color);
    border-right: 3px solid var(--accent-color);
}

/* -------------------------------------
   TEXTO Y CONTENIDO (Legible pero Técnico)
   ------------------------------------- */

.cta-content-v3 {
    position: relative;
    z-index: 5; /* Por encima de las decoraciones */
}

/* Título Fijo pero con Glitch sutil en pseudo-elementos */
.glitch-text {
    position: relative;
    font-family: var(--font-head);
    font-size: 4.5rem;
    color: var(--text-color);
    text-transform: uppercase;
    margin-bottom: 30px;
    line-height: 1.1;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0.7;
    pointer-events: none;
}

.glitch-text::before {
    left: 3px;
    text-shadow: -2px 0 var(--accent-secondary);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 4s infinite linear alternate-reverse;
}

.glitch-text::after {
    left: -3px;
    text-shadow: -2px 0 var(--accent-color);
    clip: rect(87px, 450px, 140px, 0);
    animation: glitch-anim2 4s infinite linear alternate-reverse;
}

.cta-subtitle-v3 {
    font-family: var(--font-body);
    font-size: 1.3rem;
    color: #f0f0f0;
    max-width: 700px;
    margin: 0 auto 60px auto; /* MUCHO AIRE */
    line-height: 1.8;
}

/* -------------------------------------
   EL BOTÓN: Masivo y Evidente
   ------------------------------------- */

.btn-fire-signal {
    position: relative;
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bg-color); /* Texto oscuro */
    background: var(--accent-color); /* Bloque sólido neón */
    text-decoration: none;
    padding: 22px 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 0 30px rgba(204, 255, 0, 0.4);
    z-index: 10;
}

.btn-fire-signal:hover {
    transform: translateY(-5px);
    background: #e6ff66; /* Brilla más */
    box-shadow: 0 15px 50px rgba(204, 255, 0, 0.7), 
                0 0 15px rgba(255, 255, 255, 0.5) inset;
}

/* Pulso infinito del botón */
.pulse-ring {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; height: 100%;
    border: 2px solid var(--accent-color);
    animation: ring-pulse 2.5s infinite ease-out;
    opacity: 0;
    pointer-events: none;
}

/* -------------------------------------
   ANIMACIONES EXTRA
   ------------------------------------- */

@keyframes noiseAnimation {
    0% { transform: translate(0, 0); }
    10% { transform: translate(-5%, -5%); }
    20% { transform: translate(-10%, 5%); }
    30% { transform: translate(5%, -10%); }
    100% { transform: translate(0, 0); }
}

@keyframes type-blink { 50% { opacity: 0; } }

@keyframes path-draw {
    0% { stroke-dashoffset: 200; }
    50% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -200; }
}

@keyframes glitch-anim {
    0% { clip: rect(10px, 9999px, 9px, 0); }
    100% { clip: rect(67px, 9999px, 62px, 0); }
}
@keyframes glitch-anim2 {
    0% { clip: rect(70px, 9999px, 71px, 0); }
    100% { clip: rect(12px, 9999px, 88px, 0); }
}
@keyframes ring-pulse {
    0% { width: 100%; height: 100%; opacity: 0.8; }
    100% { width: 120%; height: 160%; opacity: 0; }
}

@keyframes simple-blink { 50% { opacity: 0; } }

/* Responsive */
@media (max-width: 768px) {
    .glitch-wrapper { padding: 60px 20px; }
    .glitch-text { font-size: 2.8rem; }
    .btn-fire-signal { width: 100%; padding: 20px 0; font-size: 1.3rem; }
}