/* ===== HERO SECTION  ===== */
.cyber-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--gradient-dark);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.cyber-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(250, 218, 37, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(250, 218, 37, 0.1) 1px, transparent 1px);
    background-size: 100px 100px;
    opacity: 0.3;
    animation: gridMove 20s linear infinite;
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    animation: particleFloat 15s linear infinite;
    opacity: 0.6;
}

.energy-waves {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(250, 218, 37, 0.1) 0%, transparent 70%);
    animation: energyPulse 4s ease-in-out infinite;
}

.holographic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 212, 255, 0.05) 50%, transparent 70%);
    animation: hologramScan 8s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--light);
    max-width: 900px;
    margin: 0 auto;
    
}

.cyber-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(250, 218, 37, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(250, 218, 37, 0.3);
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    overflow: hidden;
}

.badge-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-glow);
    opacity: 0.3;
    filter: blur(10px);
}

.badge-scan {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(250, 218, 37, 0.3), transparent);
    animation: badgeScan 3s ease-in-out infinite;
}

.cyber-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    
    line-height: 1.1;
    margin-bottom: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.title-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.hologram-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.2), transparent);
    animation: hologramEffect 4s ease-in-out infinite;
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
    animation: scanLine 3s ease-in-out infinite;
}

.cyber-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.pricing-info {
    margin-bottom: 3rem;
}

.pricing-hologram {
    position: relative;
    display: inline-block;
    background: rgba(250, 218, 37, 0.1);
    color: var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    border: 1px solid rgba(250, 218, 37, 0.3);
    overflow: hidden;
}

.hologram-scan {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(250, 218, 37, 0.3), transparent);
    animation: hologramScan 2s ease-in-out infinite;
}

.cyber-stats {
    margin-bottom: 2rem;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-card {
    position: relative;
    text-align: center;
    padding: 1.5rem;
    border-radius: 12px;
    background: rgba(250, 218, 37, 0.05);
    border: 1px solid rgba(250, 218, 37, 0.2);
    min-width: 150px;
    overflow: hidden;
}

.stat-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-glow);
    opacity: 0.2;
    filter: blur(10px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    line-height: 1;
    font-family: var(--font-display);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
    color: var(--light);
}

.stat-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary);
    border-radius: 12px;
    opacity: 0;
    animation: statPulse 2s ease-in-out infinite;
}

.hero-visual {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.holographic-display {
    position: relative;
    width: 350px;
    height: 250px;
    background: rgba(10, 10, 15, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(250, 218, 37, 0.3);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.display-frame {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.frame-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
}

.frame-corner.tl {
    top: 10px;
    left: 10px;
    border-right: none;
    border-bottom: none;
}

.frame-corner.tr {
    top: 10px;
    right: 10px;
    border-left: none;
    border-bottom: none;
}

.frame-corner.bl {
    bottom: 10px;
    left: 10px;
    border-right: none;
    border-top: none;
}

.frame-corner.br {
    bottom: 10px;
    right: 10px;
    border-left: none;
    border-top: none;
}

.display-content {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.data-visualization {
    display: flex;
    align-items: end;
    gap: 1rem;
    margin-bottom: 1rem;
}

.chart-container {
    display: flex;
    align-items: end;
    gap: 0.5rem;
    height: 80px;
}

.chart-bar {
    width: 12px;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: chartPulse 2s ease-in-out infinite;
}

.chart-bar:nth-child(2) { animation-delay: 0.2s; }
.chart-bar:nth-child(3) { animation-delay: 0.4s; }
.chart-bar:nth-child(4) { animation-delay: 0.6s; }
.chart-bar:nth-child(5) { animation-delay: 0.8s; }

.data-stream {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stream-line {
    height: 2px;
    background: var(--gradient-cyber);
    border-radius: 1px;
    animation: streamFlow 1.5s ease-in-out infinite;
}

.stream-line:nth-child(2) { animation-delay: 0.5s; }
.stream-line:nth-child(3) { animation-delay: 1s; }

.hologram-text {
    font-family: var(--font-mono);
    font-size: 0.8rem;
}

.text-line {
    margin-bottom: 0.5rem;
    color: var(--primary);
    opacity: 0;
    animation: textAppear 3s ease-in-out infinite;
}

.text-line:nth-child(2) { animation-delay: 1s; }
.text-line:nth-child(3) { animation-delay: 2s; }

.hologram-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.scan-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
    animation: displayScan 4s ease-in-out infinite;
}

.glitch-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 128, 0.1), transparent);
    animation: glitchEffect 5s ease-in-out infinite;
}

/* CORRIGIENDO EL SCROLL INDICATOR - Posicionándolo más abajo */
.scroll-indicator {
    position: absolute;
    bottom: 4rem; /* Aumentado de 2rem a 4rem para dar más espacio */
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--light);
    z-index: 2;
}

.scroll-text {
    font-size: 0.9rem;
    margin-bottom: 1.5rem; /* Aumentado de 1rem a 1.5rem */
    opacity: 0.8;
    font-family: var(--font-mono);
}

.scroll-arrow {
    position: relative;
    width: 2px;
    height: 30px;
    margin: 0 auto;
}

.arrow-line {
    width: 100%;
    height: 100%;
    background: var(--primary);
    animation: arrowPulse 2s ease-in-out infinite;
}

.arrow-head {
    position: absolute;
    bottom: -5px;
    left: -3px;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    transform: rotate(45deg);
    animation: arrowPulse 2s ease-in-out infinite;
}