/* Custom Styles - Dark Mode Tech Theme */
:root {
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --neon-cyan: #00ffff;
    --neon-violet: #9b30ff;
    --neon-pink: #ff00ff;
    --glow-cyan: 0 0 10px rgba(0, 255, 255, 0.5);
    --glow-violet: 0 0 10px rgba(155, 48, 255, 0.5);
}

body {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Navbar Styles */
.navbar {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.navbar-item {
    color: #fff !important;
    transition: all 0.3s ease;
}

.navbar-item:hover {
    color: var(--neon-cyan) !important;
    text-shadow: var(--glow-cyan);
}

.logo-glow {
    color: var(--neon-cyan);
    text-shadow: var(--glow-cyan);
    animation: pulseGlow 2s infinite;
}

/* Hero Section */
.hero {
    background: transparent;
}

.gradient-text {
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Tech Grid */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 2rem;
}

.tech-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 20px;
    color: var(--neon-cyan);
    transition: all 0.3s ease;
}

.tech-icon:hover {
    transform: translateY(-5px);
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

/* Service Cards */
.service-card {
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(155, 48, 255, 0.1));
    border-radius: 50%;
    color: var(--neon-cyan);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    color: var(--neon-violet);
}

.service-features .tag {
    background: rgba(0, 255, 255, 0.1);
    color: var(--neon-cyan);
    border: 1px solid rgba(0, 255, 255, 0.3);
    margin: 0 0.25rem;
}

/* Buttons */
.btn-glow {
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-violet));
    color: white;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    color: white;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-glow:hover::before {
    left: 100%;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(155, 48, 255, 0.1));
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 30px;
    padding: 3rem;
}

/* Footer */
.footer {
    background: rgba(5, 5, 5, 0.95);
    border-top: 1px solid rgba(0, 255, 255, 0.1);
    padding: 3rem 1.5rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--neon-cyan);
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--neon-cyan);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--neon-cyan);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--neon-cyan);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

/* Animations */
@keyframes pulseGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(0, 255, 255, 0.8), 0 0 30px rgba(155, 48, 255, 0.5);
    }
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .tech-icon {
        width: 80px;
        height: 80px;
    }
    
    .cta-banner {
        padding: 2rem;
        text-align: center;
    }
    
    .hero .buttons {
        justify-content: center;
    }
    
    .stat-item {
        text-align: center;
    }
}

/* Input Styles */
.input {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 255, 0.3);
    color: white;
}

.input:focus {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}
/* Service Lists */
.service-list {
    list-style: none;
    margin-top: 1rem;
    padding: 0;
}

.service-list li {
    color: #b0b0b0;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-list li i {
    color: var(--neon-cyan);
    font-size: 1rem;
    min-width: 20px;
}

/* Mini Announcement */
.mini-announcement .tag {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(155, 48, 255, 0.1));
    color: var(--neon-cyan);
    border: 1px solid rgba(0, 255, 255, 0.3);
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    animation: pulseGlow 2s infinite;
}

/* Ajustes para móvil */
@media screen and (max-width: 768px) {
    .service-list li {
        font-size: 0.9rem;
    }
    
    .column.is-6.is-offset-3 {
        margin-left: 0;
    }
}