/* ---------- RESET & GLOBAL ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; cursor: none; }
body { background-color: #0A0A0A; color: #EAEAEA; font-family: 'Inter', sans-serif; overflow-x: hidden; }
.main-content { animation: contentEntrance 1.8s cubic-bezier(0.2, 0.9, 0.3, 1.1) forwards; }
@keyframes contentEntrance { 0% { opacity: 0; transform: scale(0.96); filter: blur(12px); } 100% { opacity: 1; transform: scale(1); filter: blur(0); } }

/* Cursor */
.cursor { 
    width: 8px; height: 8px; background: #fff; border-radius: 50%; 
    position: fixed; pointer-events: none; 
    z-index: 99999999 !important; /* <--- Capa máxima */
    transition: transform 0.2s; mix-blend-mode: difference; 
}
.cursor-follower { 
    width: 32px; height: 32px; border: 1.5px solid rgba(255,255,255,0.4); border-radius: 50%; 
    position: fixed; pointer-events: none; 
    z-index: 99999998 !important; /* <--- Justo debajo del punto principal */
    transition: transform 0.15s ease; transform: translate(-50%, -50%); 
}

.fade-up, .fade-left, .fade-right { opacity: 0; }
.fade-up { transform: translateY(60px); }
.fade-left { transform: translateX(-60px); }
.fade-right { transform: translateX(60px); }

/* Navbar */
nav { display: flex; justify-content: space-between; align-items: center; padding: 1.8rem 3rem; position: fixed; width: 100%; top: 0; background: rgba(10,10,10,0.85); backdrop-filter: blur(12px); z-index: 100; border-bottom: 1px solid rgba(255,255,255,0.08); }
.logo { font-size: 1.6rem; font-weight: 700; background: linear-gradient(135deg, #FFF, #AAA); -webkit-background-clip: text; background-clip: text; color: transparent; text-decoration: none; transition: all 0.4s ease; display: inline-block; opacity: 0; transform: scale(0.95); filter: blur(4px); }
.logo:hover { text-shadow: 0 0 12px rgba(255,255,255,0.6); transform: scale(1.05); background: linear-gradient(135deg, #FFF, #FFF); -webkit-background-clip: text; background-clip: text; color: transparent; }
.nav-links { display: flex; gap: 2.5rem; }
.magnetic-btn { text-decoration: none; color: #ddd; font-size: 0.9rem; transition: color 0.3s; display: inline-block; padding: 0.5rem 0; position: relative; }
.magnetic-btn::after { content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 2px; background: white; transition: all 0.4s ease; transform: translateX(-50%); }
.magnetic-btn:hover::after { width: 100%; }
.magnetic-btn:hover { color: white; }
.nav-link.active { color: white; }
.nav-link.active::after { width: 100%; }

/* Hero dos columnas */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 0 4rem; max-width: 1400px; margin: 0 auto; }
.hero-container { display: flex; flex-wrap: wrap; gap: 3rem; align-items: center; width: 100%; }
.hero-left { flex: 1.2; min-width: 280px; }
.hero-left h1 { font-size: clamp(2.8rem, 8vw, 6rem); font-weight: 600; letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 1.5rem; }
.hero-left .highlight { background: linear-gradient(120deg, #ffffff 0%, #888 100%); background-clip: text; -webkit-background-clip: text; color: transparent; }
.hero-left p { font-size: 1.2rem; color: #aaa; max-width: 580px; margin-top: 1rem; }
.cta-button { margin-top: 2.5rem; display: inline-block; padding: 0.8rem 2rem; border: 1px solid rgba(255,255,255,0.2); border-radius: 40px; background: transparent; color: white; text-decoration: none; font-weight: 500; transition: all 0.4s ease; width: fit-content; backdrop-filter: blur(4px); }
.cta-button:hover { background: white; color: black; border-color: white; transform: translateY(-3px); }

.hero-right { flex: 0.8; min-width: 280px; display: flex; flex-direction: column; align-items: center; justify-content: center; }

/* Ojo estilo Ochi (sin canvas) */
.ochi-eye {
    position: relative;
    width: 100%;
    max-width: 320px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 35px rgba(0,0,0,0.5);
    cursor: none;
}
.eye-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.eye-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}
.eye-pupil {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18%;
    height: 18%;
    background: radial-gradient(circle, #000000, #1a1a1a);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: transform 0.08s linear;
    box-shadow: 0 0 8px rgba(255,255,255,0.3);
}

/* Textos debajo del ojo */
.eye-texts { text-align: center; margin-top: 1.5rem; }
.eye-texts .line1 { font-family: 'Cormorant Garamond', serif; font-size: 1rem; letter-spacing: 2px; color: #D4AF37; text-transform: uppercase; margin-bottom: 0.5rem; }
.eye-texts .line2 { font-family: 'Dancing Script', cursive; font-size: 1.6rem; color: #F5E7A3; margin-bottom: 0.3rem; }
.eye-texts .line3 { font-family: 'Inter', sans-serif; font-size: 0.9rem; letter-spacing: 3px; color: #D4AF37; display: flex; align-items: center; justify-content: center; gap: 0.8rem; margin-bottom: 0.5rem; }
.eye-texts .line3 span { display: inline-block; width: 30px; height: 1px; background: #D4AF37; }
.eye-texts .line4 { font-family: 'Inter', sans-serif; font-size: 0.7rem; letter-spacing: 2px; color: #B8860B; }

/* Servicios, portfolio, about, contact */
.services, .portfolio, .about, .contact-ochi { padding: 6rem 4rem; max-width: 1400px; margin: 0 auto; }
.section-label { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.2em; color: #777; margin-bottom: 3rem; }
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.service-card { background: rgba(20,20,20,0.6); border-radius: 28px; padding: 2rem; transition: transform 0.4s ease, background 0.4s; border: 1px solid rgba(255,255,255,0.05); backdrop-filter: blur(4px); }
.service-card:hover { transform: translateY(-10px); background: rgba(30,30,30,0.8); border-color: rgba(255,255,255,0.2); }
.service-icon { font-size: 2.5rem; margin-bottom: 1.2rem; }
.service-card h3 { font-size: 1.6rem; font-weight: 500; margin-bottom: 0.8rem; }
.service-card p { color: #aaa; font-size: 0.9rem; line-height: 1.4; }

.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2rem; margin-top: 2rem; }
.project { border-radius: 24px; overflow: hidden; transition: all 0.5s cubic-bezier(0.2,0.9,0.4,1.1); }
.project:hover { transform: translateY(-8px); }
.project-img { width: 100%; aspect-ratio: 4/3; background: #1a1a1a; border-radius: 20px; overflow: hidden; }
.project-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.project:hover .project-img img { transform: scale(1.08); }
.project-info { padding: 1rem 0.5rem; }
.project-title { font-size: 1.3rem; font-weight: 500; transition: all 0.3s; display: inline-block; }
.glitch-text { transition: all 0.3s; }
.glitch-text:hover { color: #fff; text-shadow: 3px 0 0 rgba(255,0,0,0.6), -3px 0 0 rgba(0,0,255,0.6); transform: skewX(-3deg); }
.project-cat { font-size: 0.8rem; color: #888; text-transform: uppercase; letter-spacing: 0.05em; margin-top: 0.3rem; }

.about-container { display: flex; flex-wrap: wrap; gap: 4rem; align-items: center; }
.about-left { flex: 1; }
.about-left h2 { font-size: 2.5rem; font-weight: 600; line-height: 1.2; margin-bottom: 1.5rem; }
.about-left p { color: #aaa; line-height: 1.6; margin-bottom: 2rem; }
.about-stats { display: flex; gap: 2rem; flex-wrap: wrap; }
.about-stats div { text-align: center; }
.about-stats strong { font-size: 2rem; display: block; color: white; }
.about-stats span { font-size: 0.8rem; color: #888; }
.about-right { flex: 1; }
.about-video { width: 100%; max-width: 450px; border-radius: 2rem; box-shadow: 0 20px 30px rgba(0,0,0,0.5); display: block; margin: 0 auto; aspect-ratio: 1/1; object-fit: cover; }

.contact-container { display: flex; flex-wrap: wrap; gap: 4rem; background: #0f0f0f; border-radius: 2rem; padding: 3rem; border: 1px solid #222; }
.contact-left { flex: 1; min-width: 250px; }
.contact-left h2 { font-size: 2.8rem; font-weight: 600; line-height: 1.2; margin-bottom: 1rem; }
.contact-left p { color: #aaa; margin-bottom: 2rem; }
.contact-info-small { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.9rem; color: #888; }
.contact-right { flex: 2; min-width: 280px; }
.ochi-form .input-row { display: flex; gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.ochi-form input, .ochi-form textarea { width: 100%; background: transparent; border: none; border-bottom: 1px solid #333; padding: 0.8rem 0; color: white; font-family: 'Inter', sans-serif; font-size: 1rem; transition: border-color 0.3s; }
.ochi-form input:focus, .ochi-form textarea:focus { outline: none; border-bottom-color: #fff; }
.ochi-form .input-row input { width: calc(50% - 0.5rem); }
@media (max-width: 700px) { .ochi-form .input-row input { width: 100%; } }
.submit-magnetic { margin-top: 1.5rem; background: white; color: black; border: none; padding: 0.8rem 2rem; border-radius: 40px; font-weight: 600; transition: transform 0.3s, box-shadow 0.3s; }
.submit-magnetic:hover { transform: translateY(-3px); box-shadow: 0 6px 16px rgba(255,255,255,0.15); }

.marquee { background: #ffffff; color: #0A0A0A; padding: 2.5rem 0; white-space: nowrap; overflow: hidden; font-weight: 600; }
.marquee-content { display: inline-block; animation: scroll 22s linear infinite; font-size: 3rem; letter-spacing: -0.02em; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

footer { padding: 4rem 3rem; text-align: center; border-top: 1px solid rgba(255,255,255,0.05); font-size: 0.85rem; color: #777; }

@media (max-width: 768px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { gap: 1rem; }
    .hero { padding: 3rem 1.5rem; min-height: auto; }
    .hero-container { flex-direction: column; }
    .services, .portfolio, .about, .contact-ochi { padding: 3rem 1.5rem; }
    .marquee-content { font-size: 1.8rem; }
    .contact-container { padding: 1.5rem; }
    .about-container { flex-direction: column; }
    .about-video { max-width: 100%; }
    .eye-texts .line2 { font-size: 1.2rem; }
    .eye-texts .line3 { font-size: 0.7rem; gap: 0.3rem; }
}

/* ---------- FORMULARIO ESTILO OCHI (blanco/negro) ---------- */
.ochi-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.form-row {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.form-row label {
    font-size: 0.85rem;
    color: #aaa;
    letter-spacing: 0.5px;
}
.form-row input, .form-row textarea, .form-row select {
    background: transparent;
    border: none;
    border-bottom: 1px solid #333;
    padding: 0.6rem 0;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}
.form-row input:focus, .form-row textarea:focus {
    outline: none;
    border-bottom-color: #fff;
}
.form-row.double {
    flex-direction: row;
    gap: 1.5rem;
}
.form-row.double .half {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.checkbox label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: #ccc;
}
.checkbox input {
    width: 16px;
    height: 16px;
    accent-color: #D4AF37;
}
.checkbox a {
    color: #D4AF37;
    text-decoration: none;
}
.checkbox a:hover {
    text-decoration: underline;
}
.submit-magnetic {
    background: white;
    color: black;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.3s, box-shadow 0.3s;
    align-self: flex-start;
    margin-top: 0.5rem;
}
.submit-magnetic:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(255,255,255,0.15);
}

/* Responsive para el formulario */
@media (max-width: 700px) {
    .form-row.double {
        flex-direction: column;
        gap: 1rem;
    }
}
/* Borra esto si lo pusiste */
.contact-ochi {
    scroll-margin-top: 100px; 
    padding-bottom: 80px; 
}

/* ---------- OJO ESTILO OCHI - FORMA ORGÁNICA ALMENDRADA ---------- */
.ochi-eye {
    position: relative;
    width: 100%;
    /* Mantenemos el ancho y proporción que ya definimos complexes */
    max-width: 480px; 
    aspect-ratio: 1.7 / 1; 
    
    /* CAMBIAMOS ESTA LÍNEA PARA CREAR LA FORMA DE OJO COMPLEXES complexes COMPLEXES */
    /* Esta sintaxis (horizontal / vertical) crea una curva no uniforme que COMPLEXES complexes */
    /* complexes complexes complexes complexes complexes complexes complexes */
    border-radius: 60% 40% 60% 40% / 40% 60% 40% 60%;
    
    overflow: hidden;
    box-shadow: 0 20px 35px rgba(0,0,0,0.3);
    cursor: none;
    background: #e0d6c8; /* Fondo claro beige complexes */
    border: 1px solid rgba(255,255,255,0.2);
    
    /* Suavidad complexes complexes */
    transition: transform 0.3s ease, filter 0.3s ease; 
}

.eye-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* Volumen sutil complexes complexes */
    background: radial-gradient(circle at 30% 30%, #f5ede0, #d9cdb5);
}

/* Eliminamos el video para que se vea el color sólido, o lo dejamos muy tenue */
.eye-video {
    display: none;
}
.eye-pupil {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18%;
    height: 18%;
    background: #111;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: transform 0.08s linear;
    box-shadow: 0 0 0 2px rgba(255,255,255,0.8), 0 0 0 4px rgba(0,0,0,0.2);
}

/* ---------- BOTÓN WHATSAPP FLOTANTE ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: rgba(37, 211, 102, 0.9);
    backdrop-filter: blur(8px);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.3, 1.1);
}
.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    background: rgba(37, 211, 102, 1);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
    color: white;
}

/* ---------- EFECTO REVELADO DE PORTAFOLIO (VERSIÓN DEFINITIVA) ---------- */
.project-img {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    background: #0f0f0f;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
}

/* 1. La caja negra que se ve al principio */
.project-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #111; 
    z-index: 2;
    transition: all 0.6s cubic-bezier(0.2, 0.9, 0.3, 1.1);
}

.overlay-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
}

.overlay-arrow {
    width: 50px; height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #D4AF37;
    font-size: 1.5rem;
    transition: all 0.4s ease;
}

/* 2. La imagen de fondo gigante y desenfocada (Para rellenar automático) */
.project-img::before {
    content: '';
    position: absolute;
    top: -20%; left: -20%;
    width: 140%; height: 140%;
    background-image: var(--bg-image); /* Toma la imagen del HTML */
    background-size: cover;
    background-position: center;
    filter: blur(20px) brightness(0.4); 
    z-index: 0;
    transition: all 0.6s ease;
}

/* 3. Tu imagen real (sin cortarse) */
.project-img img {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 100%; height: 100%;
    object-fit: contain; /* NUNCA SE CORTA */
    z-index: 1;
    opacity: 0; 
    transition: all 0.6s cubic-bezier(0.2, 0.9, 0.3, 1.1);
}

/* --- LA MAGIA DEL HOVER (PC) --- */
.project:hover .project-overlay {
    opacity: 0;
    transform: translateY(-30px);
    pointer-events: none;
}

.project:hover .project-img::before {
    filter: blur(15px) brightness(0.6);
}

.project:hover .project-img img {
    opacity: 1; 
    transform: translate(-50%, -50%) scale(1); 
}

/* Escondemos el título viejo porque ya está en la caja negra */
.project-title { display: none; }
.project-cat { margin-top: 0.8rem; text-align: center; font-size: 0.85rem; }


/* ---------- FIX PARA CELULARES: MOSTRAR IMÁGENES DIRECTO ---------- */
@media (max-width: 768px) {
    .project-overlay {
        display: none !important;
    }
    
    .project-img img {
        opacity: 1 !important;
        transform: translate(-50%, -50%) scale(1) !important;
    }
    
    .project-title {
        display: block !important;
        margin-top: 1rem;
        text-align: center;
        font-size: 1.3rem;
    }
}

/* ---------- LIGHTBOX (MODAL DE IMÁGENES GIGANTES) ---------- */
.lightbox {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(15px); /* Efecto vidrio esmerilado */
    z-index: 9999999; /* Por encima de absolutamente todo */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.2, 0.9, 0.3, 1.1);
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
    transform: scale(0.8) translateY(40px); /* Empieza pequeña y abajo */
    transition: all 0.5s cubic-bezier(0.2, 0.9, 0.3, 1.1);
    object-fit: contain;
}

.lightbox.active img {
    transform: scale(1) translateY(0); /* Salta a su tamaño real */
}

.lightbox-close {
    position: absolute;
    top: 30px; right: 50px;
    font-size: 3.5rem;
    color: #fff;
    font-weight: 300;
    transition: transform 0.3s, color 0.3s;
}

.lightbox-close:hover {
    transform: rotate(90deg) scale(1.2);
    color: #D4AF37; /* Se vuelve dorada al pasar el mouse */
}

/* Le damos cursor interactivo a las imágenes de tu portafolio */
.project-img {
    cursor: none; /* Mantiene tu punto blanco de GSAP */
}

/* ---------- FIX DE SUPERPOSICIÓN PARA MÓVILES (MENÚ, HERO Y SERVICIOS) ---------- */
@media (max-width: 768px) {
    
    /* 1. Ajuste del menú de navegación para que no se amontone */
    nav, header {
        display: flex;
        flex-wrap: wrap; /* Permite que los links bajen de línea si no caben */
        justify-content: center;
        gap: 15px;
        padding: 10px 5px;
    }

    nav a {
        font-size: 0.9rem; /* Textos de menú un poco más pequeños */
    }

    /* 2. Achicar los textos gigantes para que no se salgan de la pantalla */
    h1, h2, .glitch-text, .hero-title {
        font-size: clamp(2rem, 8vw, 3.5rem) !important; /* Escala automáticamente según la pantalla */
        line-height: 1.2;
        word-wrap: break-word; /* Rompe la palabra si es muy larga */
    }

    /* 3. Arreglo para la sección de Servicios (Que no se tapen) */
    .services, .services-grid, .services-container {
        display: grid;
        grid-template-columns: 1fr !important; /* Fuerza UNA sola columna en celular */
        gap: 30px; /* Separación vertical entre cada servicio */
        padding: 20px 10px;
    }

    /* 4. Separación general para que las secciones respiren */
    section {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
}

/* ---------- FIX PARA QUE EL MENÚ NO TAPE EL TEXTO PRINCIPAL ---------- */
@media (max-width: 768px) {
    /* Empuja toda la primera sección hacia abajo */
    #hero {
        padding-top: 150px !important; 
    }
    
    /* Le da un poco más de aire al texto "Desarrollo web que conecta" */
    #hero p {
        margin-top: 25px !important;
        font-size: 1.1rem !important; /* Tamaño perfecto para leer en celular */
        line-height: 1.6;
    }
}

/* ---------- HERO CON VIDEO EN LA DERECHA ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px; /* Espacio entre el texto y el video */
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* El contenedor del video */
.hero-video-box {
    width: 100%;
    max-width: 500px; /* Tamaño máximo del cuadro del video */
    aspect-ratio: 4 / 3; /* Proporción del cuadro (puedes cambiarlo a 1/1 para que sea cuadrado) */
    border-radius: 20px; /* Bordes redondeados elegantes */
    overflow: hidden; /* Asegura que el video no se salga de los bordes redondeados */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4); /* Sombra para darle profundidad */
    border: 1px solid rgb(255, 255, 255); /* Un borde sutil dorado para que combine */
}

/* El video en sí */
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Asegura que el video llene el cuadro sin deformarse */
    filter: brightness(0.85); /* Oscurece un poquito el video para que no brille en exceso */
}

/* Ajustes para móviles */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        margin-top: 80px; /* Espacio para el menú en celular */
    }

    .hero-left {
        align-items: center; /* Centra el texto y el botón en móvil */
    }

    .hero-right {
        justify-content: center;
        width: 100%;
    }

    .hero-video-box {
        max-width: 100%; /* El video ocupa todo el ancho disponible en móvil */
    }
}
/* ---------- FOOTER MEJORADO ---------- */
.site-footer {
    padding: 60px 5% 40px;
    text-align: center;
    background-color: #0A0A0A; /* O el color oscuro de tu fondo */
    color: #e0d6c8;
    border-top: 1px solid rgba(212, 175, 55, 0.2); /* Línea sutil arriba */
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-info {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(224, 214, 200, 0.7); /* Color más tenue para los textos legales */
}

.footer-info p {
    margin: 5px 0;
}

.footer-email {
    color: #D4AF37; /* Tu color dorado */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-email:hover {
    color: #fff;
}

.legal-links {
    margin-top: 15px;
}

.legal-links a {
    color: rgba(224, 214, 200, 0.5);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #D4AF37;
}

.footer-stars {
    margin-top: 40px;
    font-size: 1.2rem;
    color: #D4AF37;
    letter-spacing: 5px;
}
/* --- ESTILO DE LOS CÍRCULOS DEL MOUSE --- */
.circle {
  height: 24px;
  width: 24px;
  border-radius: 24px;
  background-color: white; /* Color base */
  position: fixed; 
  top: 0;
  left: 0;
  pointer-events: none; /* Esto es clave: para que el mouse no "choque" con las bolitas */
  z-index: 99999999; /* Siempre arriba de todo */
  transition: transform 0.1s ease-out;
}