* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', 'Arial', 'Helvetica', sans-serif;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    background: #0a0e27;
    color: white;
}

/* Video de fondo */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 14, 39, 0.8) 0%, rgba(10, 14, 39, 0.6) 50%, rgba(10, 14, 39, 0.9) 100%);
    z-index: -1;
}

/* Contenedor principal */
.container {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 40px 20px;
    text-align: center;
}

/* Sección del logo */
.logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 200px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    max-width: 200%;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
    animation: logoGlow 3s ease-in-out infinite;
    object-fit: contain;
}

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(100, 200, 255, 0.8));
    }
}

.company-name {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.mizco {
    font-family: 'Montserrat', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    margin: 0;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    line-height: 1;
    text-transform: uppercase;
}

.tech-group {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    margin: 0;
    opacity: 0.9;
    line-height: 1;
    text-transform: uppercase;
}

/* Slogan */
.slogan {
    margin: 40px 0;
}

.slogan p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    font-weight: 400;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
}

/* Botón CTA */
.cta-section {
    margin: 50px 0;
}

.cta-button {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    border: none;
    padding: 18px 50px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.6);
    background: linear-gradient(135deg, #00e5ff 0%, #00aadd 100%);
}

.cta-button:active {
    transform: translateY(0);
}

/* Icono de LinkedIn */
.social-section {
    margin-top: 60px;
}

.linkedin-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(10, 14, 39, 0);
    border-radius: 8px;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.linkedin-icon:hover {
    background: rgba(0, 119, 181, 0.9);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(0, 119, 181, 0.5);
}

/* Efectos de fondo - líneas brillantes */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.glow-lines {
    position: absolute;
    width: 2px;
    height: 200px;
    background: linear-gradient(to bottom, transparent, rgba(100, 200, 255, 0.6), transparent);
    opacity: 0.4;
    animation: float 8s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(100, 200, 255, 0.5);
}

.line-2 {
    left: 20%;
    top: 10%;
    animation-delay: -2s;
    animation-duration: 10s;
}

.line-3 {
    right: 25%;
    top: 15%;
    animation-delay: -4s;
    animation-duration: 12s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.2;
    }
    50% {
        transform: translateY(50px) translateX(20px);
        opacity: 0.6;
    }
}

/* Sección de la Tierra */
.earth-section {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.earth-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: radial-gradient(ellipse at center, rgba(100, 200, 255, 0.4) 0%, transparent 70%);
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.4;
        transform: scaleY(1);
    }
    50% {
        opacity: 0.6;
        transform: scaleY(1.1);
    }
}

.earth-grid {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(100, 200, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 50%, rgba(100, 200, 255, 0.1) 1px, transparent 1px),
        linear-gradient(0deg, rgba(100, 200, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(100, 200, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px, 50px 50px, 50px 50px, 50px 50px;
    background-position: 0 0, 0 0, 0 0, 0 0;
    opacity: 0.3;
}

/* Responsive */
@media (max-width: 768px) {
    .mizco {
        font-size: 3rem;
    }
    
    .tech-group {
        font-size: 1rem;
    }
    
    .slogan p {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 15px 40px;
        font-size: 1rem;
    }
    
    .logo-section {
        flex-direction: column;
        gap: 15px;
    }
    
    .company-name {
        align-items: center;
    }
    
    .logo-img {
        max-width: 200px;
    }
    
    /* Video optimizado para móvil */
    .video-background video {
        opacity: 0.2;
        object-position: center;
    }
    
    .video-background {
        /* Mejorar rendimiento en móvil */
        will-change: transform;
        transform: translateZ(0);
    }
    
    .video-overlay {
        background: linear-gradient(to bottom, rgba(10, 14, 39, 0.9) 0%, rgba(10, 14, 39, 0.7) 50%, rgba(10, 14, 39, 0.95) 100%);
    }
}

@media (max-width: 480px) {
    .mizco {
        font-size: 2.5rem;
    }
    
    .slogan p {
        font-size: 0.9rem;
        padding: 0 20px;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
    
    .logo-img {
        max-width: 200px;
    }
}

