/**
 * Versión: 5.2 (Fluid Marquee & Modal)
 * Dependencias: Inter Font, Devicon
 * Autor: Reaktor Studios MX
 */

@font-face {
    font-family: 'Helvetica W01 Light';
    src: url('../fonts/helvetica-W01-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #050505;
}

/* --- Animación Hero & Contacto --- */
.lava-lamp-background .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.7;
    will-change: transform;
}
.lava-lamp-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    background-color: transparent;
    pointer-events: none;
}
.blob-1 { width: 600px; height: 600px; background: rgba(12, 50, 205, 0.5); top: -10%; left: -10%; animation: move1 12s infinite alternate; }
.blob-2 { width: 700px; height: 700px; background: rgba(255, 255, 95, 0.6); bottom: -20%; right: -20%; animation: move2 15s infinite alternate-reverse; }
.blob-3 { width: 500px; height: 500px; background: rgba(203, 183, 7, 0.4); bottom: 20%; left: 30%; animation: move3 18s infinite alternate; }

@keyframes move1 {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(100px, 50px) rotate(45deg); }
}
@keyframes move2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-50px, -50px) scale(1.1); }
}
@keyframes move3 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-100px, 50px) scale(0.9); }
}

/* --- Marquee Animation (CORREGIDA) --- */
.marquee-container {
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
.marquee-content {
    animation: scroll 30s linear infinite;
    padding-right: 0; /* Importante para que no haya espacios extra */
}
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* --- Typewriter --- */
.typing-cursor {
    display: inline-block;
    width: 4px;
    height: 1em;
    background-color: #FFFF5F;
    margin-left: 5px;
    animation: blink 1s infinite;
    vertical-align: middle;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* --- Utilidades --- */
.text-reaktor-yellow { color: #FFFF5F; }
.bg-reaktor-yellow { background-color: #FFFF5F; }
.bg-reaktor-blue { background-color: #0C32CD; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #555; }

.backdrop-blur-sm { backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
i[class^="devicon-"] { line-height: 1; }

/* Modal Open State */
body.modal-open { overflow: hidden; }