/* --- ESTILO DE BOTONES MODERNOS (FORZADO) --- */
.filter-menu {
    text-align: center;
    margin: 40px 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: transparent !important; /* Fondo transparente */
    border: 2px solid #00f3ff !important; /* El cyan de tu marca */
    color: #ffffff !important; /* Texto blanco */
    padding: 10px 25px !important; /* Tamaño del botón (alto x ancho) */
    border-radius: 50px !important; /* Bordes bien redondeados (tipo pastilla) */
    font-size: 0.9rem !important; /* tamaño de la Letra */
    font-weight: 700 !important; /* Letra gruesa */
    text-transform: uppercase !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important; /* Suaviza la animación */
    letter-spacing: 1px !important;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #00f3ff !important; /* Se rellena de color neón */
    color: #000000 !important; /* El texto pasa a negro para leerse bien */
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.6) !important; /* Resplandor (Glow) externo */
    transform: translateY(-2px); /* Se levanta un poquito */
}

/* =================================== RESET & BASE STYLES =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors */
    --primary-color: #00f3ff;
    --primary-dark: #00c2cc;
    --primary-light: #66f7ff;
    --secondary-color: #ff00ff;
    --accent-color: #ffff00;

    /* Background Colors */
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --bg-card: #1a1a1a;
    --bg-gradient: linear-gradient(135deg, #0a0a0a 0%, #1a0a1a 100%);

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #707070;

    /* Shadows & Glows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --glow-primary: 0 0 20px rgba(0, 243, 255, 0.5);
    --glow-secondary: 0 0 20px rgba(255, 0, 255, 0.5);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Fonts */
    --font-primary: 'Orbitron', sans-serif;
    --font-secondary: 'Poppins', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* =================================== LOADING SCREEN =================================== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-darker);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
}

.vinyl-loader {
    font-size: 5rem;
    color: var(--primary-color);
    animation: spin 2s linear infinite;
    margin-bottom: 1rem;
}

.loading-text {
    font-family: var(--font-primary);
    font-size: 2rem;
    letter-spacing: 0.5rem;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text; /* línea agregada */
    -webkit-text-fill-color: transparent;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* =================================== BOTONES DEL MENU ========================== */
.nav-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 40px;
}

.nav-btn {
    padding: 8px 16px;
    border-radius: 22px;
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
}

/* Boton lleno */
.nav-btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--bg-dark);
    box-shadow: 0 0 12px rgba(0,243,255,0.4);
}

.nav-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 18px rgba(0,243,255,0.8);
}

/* Boton contorno */
.nav-btn-secondary {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.nav-btn-secondary:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

/* =================================== NAVIGATION =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 0; /* Reducido un poco de 5rem para que no ocupe tanto en laptop */
    background: transparent; /* Transparente por defecto */
    z-index: 1000;
    transition: all var(--transition-medium);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 243, 255, 0.1);
    padding: 1rem 0; /* Se achica al hacer scroll */
}

.nav-container {
    max-width: 1400px; /* Esto solo limita el ancho del contenido del men, no el fondo */
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h1 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.2rem;
    color: var(--text-primary);
}

.nav-logo span {
    color: var(--primary-color);
    text-shadow: var(--glow-primary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem; /* Espacio entre el contenido del menu de inicio */
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.1rem;
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-medium);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-right-elements {
    /* Este valor (40px) es la distancia. Aumntalo a 60px o 80px si quieres ms separacion */
    margin-left: 60px;
    display: flex;
    align-items: center;
}


/* --- CORRECCIÓN NAVBAR PC (Una sola línea) --- */

#navbar {
    display: flex;
    justify-content: space-between; /* Estira los elementos a los extremos */
    align-items: center;
    flex-wrap: nowrap !important; /* Prohíbe terminantemente que se baje a otra línea */
    padding: 10px 30px; /* Espaciado interno */
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 15px; /* Achicamos un poquito el espacio entre links (estaba en 20 o más) */
}

.nav-link {
    font-size: 0.85rem; /* Achicamos apenas la letra para que gane espacio */
    letter-spacing: 1px;
}

.nav-logo h1 {
    font-size: 1.5rem; /* Si el nombre es muy largo, bajalo a 1.4rem */
    white-space: nowrap; /* Evita que el nombre "Marcelo Lally" se rompa en dos */
}

.nav-logo {
    margin-right: 50px !important; /* Esto empuja todo el menú hacia la derecha */
    display: flex;
    align-items: center;
}

/* --- FIX REDES SOCIALES PC --- */

.nav-social.desktop-only {
    display: flex !important;
    align-items: center !important;
    gap: 30px !important; /* Ahora este número SÍ va a funcionar */
    margin-left: auto !important; /* Mantiene las redes a la derecha */
    margin-right: 20px !important; /* Distancia con el botón Presskit */
}

/* ESTA ES LA REGLA QUE "DESTRABA" LOS ICONOS */
.nav-social.desktop-only a {
    display: flex; /* Asegura que el icono dentro del enlace se comporte bien */
    text-decoration: none;
    margin: 0 !important; /* Quitamos el margen fijo que venía por defecto */
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto; /* Evita que tengan un ancho fijo oculto */
}

/* Ajuste del contenedor de la derecha (Redes + Botón) */
.nav-right-elements {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* --- AJUSTE DE POSICIÓN: MENÚ RESPIRA Y REDES CERCA DE PRESSKIT --- */

/* 1. Empujamos las redes y el botón todo a la derecha */
.nav-social.desktop-only {
    margin-left: auto !important; /* Esto crea el espacio vacío entre el menú y las redes */
    margin-right: 10px !important; /* Distancia entre los iconos y el botón Presskit (bájalo si los quieres más cerca) */
    display: flex !important;
    gap: 30px !important; /* Espacio entre los iconitos de Instagram, FB, etc. */
}

/* 2. El contenedor del botón se queda en su lugar, pegado a las redes */
.nav-right-elements.desktop-only {
    margin-left: 0 !important;
}

/* 3. Ajuste opcional: Espacio interno del menú para que no estén tan pegadas las palabras */
.nav-menu {
    gap: 25px !important; /* Ajusta este número para separar "Inicio", "Bio", etc. */
}



/* ================================ REDES SOCIALES ================================ */
.nav-social {
    display: flex;
    align-items: center;
    margin-left: 20px;
    font-size: 0;
    gap: 0px; /* Espacio entre cada icono (Insta, TikTok, etc) */
}

.nav-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    text-decoration: none;
    color: inherit;
}

.nav-social a:last-child {
    margin-right: 0;
}

.nav-social a i {
    font-size: 1.6rem;
    line-height: 1;
    color: #ffffff;
    transition: color 0.25s ease, transform 0.25s ease;
}

.nav-social a:hover i {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all var(--transition-fast);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ================================ Boton Press Kit en el Menu ================================ */
.nav-btn-presskit {
    font-family: var(--font-primary);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    /* Estilo similar al boton de contacto (contorno) */
    border: 1px solid var(--primary-color);
    padding: 8px 16px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-medium);
    white-space: nowrap;
}

/* Seleccionamos el icono dentro del boton de Press Kit */
.press-kit-btn i {
    margin-right: 10px; /* Aumenta este numero para alejarlo ms */
}

.nav-btn-presskit:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    box-shadow: var(--glow-primary);
    transform: translateY(-2px);
}

/* Ajuste para que el grupo de la derecha no rompa el centro */
.nav-right-group {
    flex: 1;
    justify-content: flex-end;
}

/* Forzamos que el menu central sea el eje real */
.nav-menu {
    flex: 2;
    justify-content: center;
}

/* =================================== HERO SECTION (MODIFICADO) =================================== */
.hero {
    position: relative;
    height: 100vh; /* Ocupa toda la altura de la ventana */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/marcelo-lally-pasando-musica-en-catamarca.webp');
    /* CAMBIO CLAVE: 'cover' hace que la imagen cubra todo el espacio sin deformarse ni dejar bordes */
    background-size: cover;
    /* Centra la imagen. Si quieres que se vea ms la parte de arriba, usa 'center top' */
    background-position: center center;
    background-repeat: no-repeat;
    filter: brightness(0.6); /* Oscurece la foto para que se lea el texto */
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradiente suave para integracin */
    background: linear-gradient(135deg, rgba(5, 5, 15, 0.4) 0%, rgba(10, 20, 40, 0.4) 100%);
    z-index: 2;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 4;
    text-align: left;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    padding-top: 120px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.hero-title {
    margin-bottom: 1rem;
}

/* Clase para ocultar el H1 pero mantener el SEO */

.hero-subtitle {
    font-family: var(--font-primary);
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 600;
    letter-spacing: 0.8rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    /* AGREGA ESTA LiNEA PARA SUBIR LA FRASE */
    /* Cuanto mas negativo sea el numero, mas sube la frase */
    margin-top: -60px;
    animation: fadeInUp 1s ease-out 0.3s both;
    display: block;
}

.hero-tagline {
    text-align: center; /* Esto centra la frase larga */
    width: 100%; /* Asegura que tenga espacio para centrarse */
    margin-top: 10px;
    color: var(--text-secondary);

    /* Si quieres que se mueva un poco a la derecha o izquierda para que no quede rara respecto al logo, usa esto: */
    margin-left: -170px;
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-left: 75px;
    /* LNEA PARA REGULAR: Cuanto ms alto sea el nmero (ej: 100px), ms a la derecha se van */
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-medium);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--bg-dark);
    box-shadow: var(--glow-primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.8);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

.hero-logo-img {
    max-width: 100%; /* Hace que la imagen sea responsive */
    width: 700px; /* Ajusta este valor segn qu tan grande quieras el logo */
    height: auto;
    display: block;
    /* APLICAMOS LA ANIMACIN */
    /* 8s es el tiempo, 'infinite' para que no pare nunca */
    animation: logo-glow-animation 8s linear infinite;
    /* Esto ayuda a que la imagen se vea ntida */
    image-rendering: auto;
}

.hero-logo-container {
    /* ...otras propiedades que ya tenga... */
    /* CDIGO PARA REGULAR LA POSICIN: */
    /* El nmero negativo mueve a la izquierda. -50px es un poco, -100px es ms, 0 es el centro original. */
    transform: translateX(-70px);
}


@keyframes scroll {
    0% {
        top: 10px;
        opacity: 1;
    }
    100% {
        top: 30px;
        opacity: 0;
    }
}

@keyframes gradient-flow {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =================================== SECTIONS - COMMON STYLES =================================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: 0.2rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--text-primary), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text; /* línea Agregada */
    -webkit-text-fill-color: transparent;
}

.section-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto;
    border-radius: 2px;
}

/* =================================== ABOUT SECTION =================================== */
.about {
    background: var(--bg-gradient);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-slow);
}

.image-frame:hover img {
    transform: scale(1.05);
}

.image-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.2), rgba(255, 0, 255, 0.2));
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.image-frame:hover .image-glow {
    opacity: 1;
}

.vinyl-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: var(--bg-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    box-shadow: var(--glow-primary);
    animation: spin 1s linear infinite;
}

.about-text {
    opacity: 0;
    animation: fadeInRight 1s ease-out forwards;
    animation-delay: 0.3s;
}

.about-heading {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-description strong {
    color: var(--primary-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-card {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all var(--transition-medium);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--glow-primary);
}

.stat-icon {
    font-size: 2rem;
    color: var(--primary-color);
}

.stat-content h4 {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
}

.stat-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.specialties {
    margin-top: 2rem;
}

.specialties-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.specialty-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.tag {
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.tag:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* =================================== CAREER SECTION =================================== */
.career {
    background: var(--bg-dark);
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.timeline-item:nth-child(odd) {
    padding-right: calc(50% + 40px);
    text-align: right;
}

.timeline-item:nth-child(even) {
    padding-left: calc(50% + 40px);
    text-align: left;
}

.timeline-item:nth-child(1) {
    animation-delay: 0.2s;
}
.timeline-item:nth-child(2) {
    animation-delay: 0.4s;
}
.timeline-item:nth-child(3) {
    animation-delay: 0.6s;
}
.timeline-item:nth-child(4) {
    animation-delay: 0.8s;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border: 4px solid var(--bg-dark);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: var(--glow-primary);
    z-index: 10;
}

.timeline-content {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all var(--transition-medium);
    box-shadow: var(--shadow-md);
}

.timeline-content:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 243, 255, 0.2);
}

.timeline-date {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1rem;
    color: var(--primary-color);
    background: rgba(0, 243, 255, 0.1);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.venue-list {
    list-style: none;
    margin-top: 1rem;
}

.venue-list li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.venue-list i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.feature-image {
    margin-top: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* =================================== VIDEOS SECTION =================================== */
.videos {
    background: var(--bg-gradient);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.video-card {
    background: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all var(--transition-medium);
    box-shadow: var(--shadow-md);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.video-card:nth-child(1) {
    animation-delay: 0.1s;
}
.video-card:nth-child(2) {
    animation-delay: 0.2s;
}
.video-card:nth-child(3) {
    animation-delay: 0.3s;
}
.video-card:nth-child(4) {
    animation-delay: 0.4s;
}
.video-card:nth-child(5) {
    animation-delay: 0.5s;
}
.video-card:nth-child(6) {
    animation-delay: 0.6s;
}

.video-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 243, 255, 0.3);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.video-info p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.cta-youtube {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg-card);
    border-radius: 20px;
    border: 2px solid var(--primary-color);
    box-shadow: var(--glow-primary);
}

.cta-youtube h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.btn-youtube {
    background: #ff0000;
    color: white;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all var(--transition-medium);
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.4);
}

.btn-youtube:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.6);
}

/* =================================== CONTACT SECTION =================================== */
.contact {
    background: var(--bg-dark);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Dos columnas iguales */
    gap: 4rem;
    align-items: start; /* Alineamos ARRIBA para tener control manual */
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-info > p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* --- AJUSTE DE LA IMAGEN --- */
.contact-image {
    position: relative;
    /* TRUCO: Bajamos la imagen X pixeles para que coincida con los cajones grises
       y no con el texto de arriba. Ajustá este número si cambias el largo del texto. */
    margin-top: 210px; 
}

.contact-image img {
    width: 100%;
    border-radius: 15px;
    display: block;
    box-shadow: var(--shadow-lg);
    border: 0px solid rgba(0, 243, 255, 0.3);

    /* AGREGAMOS UN RESPLANDOR SUAVE */
    box-shadow: 0 0 20px rgba(216, 6, 6, 0.711); 
    transition: all 0.3s ease;
}

/* Efecto opcional: Cuando pasas el mouse */
.contact-image img:hover {
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.4);
    transform: scale(1.01); 
}


/* CAJONES GRISES */
.contact-methods {
    margin-top: 3rem; /* <--- ESTA ES LA LÍNEA es el espacio entre el texto y los cajones grises.*/
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem; /* Espacio entre los dos cajones */
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all var(--transition-medium);
}

.contact-method:hover {
    border-color: var(--primary-color);
    transform: translateX(10px);
    box-shadow: var(--glow-primary);
}

/* --- RESPONSIVE --- */
/* Cuando pasamos a tablet/móvil, sacamos el margen para que no quede un hueco */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr; /* Una sola columna */
        gap: 3rem;
    }
    
    .contact-image {
        margin-top: 0; /* Reseteamos el margen en móvil */
        order: -1; /* Opcional: Si querés que la foto aparezca ANTES del contacto en el celu, descomentá esto */
    }
}

/* Iconos y resto de estilos se mantienen igual... */
.method-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 243, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}
/* ... resto de social links ... */

.method-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
}

.method-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.method-content a:hover {
    color: var(--primary-light);
}

.social-links {
    margin-top: 2rem;
}

.social-links h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary-color);
    text-decoration: none;
    transition: all var(--transition-medium);
}

.social-icon:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    transform: translateY(-5px) rotate(360deg);
    box-shadow: var(--glow-primary);
}

.social-icon.youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.social-icon.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    box-shadow: 0 0 20px rgba(24, 119, 242, 0.5);
}

/* =================================== FOOTER =================================== */
.footer {
    background: var(--bg-darker);
    padding: 3rem 0 1rem;
    border-top: 2px solid rgba(0, 243, 255, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h2 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.footer-brand span {
    color: var(--primary-color);
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-social h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-social .social-icons {
    display: flex;
    gap: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0.3rem 0;
}

.footer-credit {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* =================================== BACK TO TOP BUTTON =================================== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--bg-dark);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--glow-primary);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.8);
}

/* =================================== ESTILOS DE LA GALERÍA =================================== */
.gallery-section {
    background-color: #0a0a0a; /* Fondo muy oscuro */
    padding: 80px 20px;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.highlight {
    color: #00f2ff; /* Color Neón (Cyan) - cambialo por tu color de marca */
}

.section-subtitle {
    color: #888;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

/* Grilla Responsiva */

/* ESTO SE QUEDA (Adaptado para Swiper) */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    width: 100%; /* Ahora el ancho lo manda el carrusel */
    height: 100%; /* Se adapta al slide */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain; /* Mantiene tu configuración de 'sin cortes' */
    background-color: #0A0A0A;
    border-radius: 5px;
    transition: transform 0.3s ease;
    display: block;
    padding: 5px;
}

/* El efecto de zoom que querías mantener */
.gallery-item:hover img {
    transform: scale(1.1); 
}

/* Si usas el degradado neón, déjalo. Si no lo usas, puedes borrarlo */
.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 242, 255, 0.6), transparent);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding-bottom: 20px;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

/* Estilos para el Carrusel Swiper */
.swiper {
    width: 100%;
    height: auto;
    padding-bottom: 50px !important; /* Espacio para los puntitos de abajo */
}

.swiper-wrapper {
    width: 100%;
}

/* Ajuste de las diapositivas */
.swiper-slide {
    height: auto; /* Dejar que el contenido defina la altura */
    /* Calculamos el alto para que entren 2 filas perfectas si usas grid */
    height: calc((100% - 30px) / 2) !important; 
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Mantenemos tu estilo de imagen pero aseguramos que llene el slide */
.gallery-item {
    display: block !important; /* Forzamos que se vea, el JS de Swiper se encarga del resto */
    width: 100%;
    height: 100%;
}

/* Personalización de las Flechas y Puntos (Color Cyan) */
.swiper-button-next, .swiper-button-prev {
    color: var(--primary-color) !important;
    text-shadow: 0 0 10px rgba(0,0,0,0.8);
}

.swiper-pagination-bullet {
    background: #fff !important;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
    opacity: 1;
    box-shadow: 0 0 10px var(--primary-color);
}

.overlay span {
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- ESTILOS DEL LIGHTBOX (Pantalla completa) --- */
.lightbox {
    display: none; /* Oculto por defecto */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border: 2px solid #00f2ff; /* Borde neón */
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.5);
    border-radius: 4px;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-btn:hover {
    color: #00f2ff;
}

/* =================================== RESPONSIVE DESIGN (MEDIA QUERIES) =================================== */

/* --- 1. AJUSTES PANTALLAS GRANDES (NOTEBOOKS) --- */
@media (max-width: 1400px) {
    .container,
    .nav-container {
        max-width: 100%;
        padding: 0 2rem;
    }
}

/* --- 2. TABLETS Y LAPTOPS PEQUEÑAS --- */
@media (max-width: 1024px) {
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .timeline::before { left: 30px; }
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-left: 80px;
        padding-right: 0;
        text-align: left;
    }
    .timeline-marker { left: 30px; }
}

/* --- 3. REGLAS BASE DE VISIBILIDAD (PARA PC POR DEFECTO) --- */
/* Esto asegura que en PC nunca se vean las cosas de móvil */
.mobile-only {
    display: none !important;
}
.desktop-only {
    display: flex !important;
}

/* --- 4. MÓVILES Y TABLETS VERTICALES (EL MEOLLO DEL ASUNTO) --- */
@media (max-width: 768px) {

    /* :::: HERO SECTION MÓVIL (Corrección) :::: */
    .hero-content {
        /* Agregamos padding arriba para que el menú no tape el logo/texto */
        padding-top: 150px; 
        align-items: center; /* Centramos todo en el eje horizontal */
        text-align: center;
    }
    
    .hero-bg-image {
        background-position: center center;
    }

    .hero-subtitle {
        /* Quitamos el margen negativo que subía mucho el texto en PC */
        margin-top: 0; 
        font-size: 1.5rem; /* Ajuste de tamaño */
        text-align: center;
    }

    .hero-tagline {
        margin-left: 0; /* Quitamos el desplazamiento de PC */
        font-size: 1rem;
        padding: 0 10px;
    }

    .hero-buttons {
        margin-left: 0;
        justify-content: center;
        flex-direction: column; /* Botones uno abajo del otro en pantallas muy chicas */
        width: 100%;
        align-items: center;
    }
    
    /* Ajuste Logo Hero */
    .hero-logo-container {
        transform: none; /* Quitamos el desplazamiento lateral */
        margin-bottom: 20px;
    }
    
    .hero-logo-img {
        width: 100%; /* Que no se salga de pantalla */
        margin: 0 auto;
    }

    /* :::: NAVBAR MÓVIL :::: */
    /* Reseteo variables globales de espaciado */
    :root {
        --spacing-xl: 3rem;
        --spacing-lg: 2rem;
    }

    /* Navbar Container */
    .navbar {
        padding: 10px 15px; 
        background: rgba(10, 10, 10, 0.95); /* Fondo oscuro siempre en móvil */
    }
    
    /* Contenedor principal de la barra */
    #navbar {
        position: relative; /* Necesario para que lo de adentro se mueva libremente */
        height: 70px; /* Altura fija para evitar saltos */
        display: flex;
        align-items: center;
        justify-content: center; /* Esto ayuda, pero los absolute mandan */
    }

    /* Ocultamos elementos de PC */
    .desktop-only, 
    .nav-social.desktop-only,
    .nav-right-elements {
        display: none !important;
    }

    /* Mostramos elementos de Móvil */
    .mobile-only {
        display: flex !important;
    }
    
    /* Configuración del Menú Desplegable */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%; /* Escondido a la derecha */
        width: 100%; /* Ocupa toda la pantalla (antes 80% o menos) */
        height: 100vh;
        background: rgba(0, 0, 0, 0.98); /* Fondo casi negro total */
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
        transition: right 0.4s ease; /* Animación suave */
        padding: 0;
        margin: 0;
        z-index: 999; /* Por debajo de la hamburguesa */
    }

    /* Cuando JavaScript agrega la clase .active */
    .nav-menu.active {
        right: 0; /* Aparece */
    }

    .nav-link {
        font-size: 1.5rem; /* Letra grande para dedos */
    }

    /* Ajuste Logo Menu Móvil */
    .nav-logo {
        margin: 0 !important;
        z-index: 1002; /* Para que se vea encima del menú si quieres */
    }

    .nav-logo h1 {
        font-size: 1.2rem;
    }

    /* Hamburguesa: PEGADA A LA DERECHA */
    .hamburger {
        position: absolute; /* Se sale del flujo */
        right: 20px;        /* A 20px del borde derecho */
        top: 50%;
        transform: translateY(-50%); /* Centrada verticalmente */
        z-index: 1100;
        display: flex;
    }

    /* Ajustes específicos para los items dentro del menú móvil */
    li.mobile-socials {
        flex-direction: row;
        gap: 25px;
        margin-top: 20px;
    }
    
    li.mobile-socials a i {
        font-size: 1.8rem;
        color: white;
    }

    .presskit-item {
        margin-top: 10px;
        transform: scale(1.1);
    }
    
    /* Particulas fuera para rendimiento */
    #particles {
        display: none;
    }
    
    /* Ajustes Footer Móvil */
    .footer-content-pro {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-partners-section {
        flex-direction: column;
        gap: 10px;
    }
    
    .fixed-text-right {
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.2);
        padding-top: 10px;
        width: 100%;
        text-align: center;
    }
}

/* --- 5. MÓVILES MUY PEQUEÑOS (Correcciones finales) --- */
@media (max-width: 480px) {
    .section-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1.2rem; }
    
    /* Cookies adjustments */
    .cookie-container {
        width: 90%;
        bottom: -250px;
        flex-direction: column;
    }
    .cookie-container.show { bottom: 20px; }
    .cookie-content { flex-direction: column; text-align: center; }
    .cookie-btn { width: 100%; margin-top: 10px; }
    
    /* Ocultar botón subir */
    #backToTop { display: none !important; }
}

/* =======================================
   FOOTER PRO 2026 (ANIMADO & RESPONSIVE)
   ======================================= */

.footer-content-pro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    overflow: hidden; /* Seguridad extra */
}

/* --- Marca (Izquierda) --- */
.footer-brand-section {
    flex: 1;
    min-width: 250px;
    z-index: 2; /* Que quede por encima si algo se mueve */
}

.footer-brand-section h2 {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.footer-brand-section span { color: var(--primary-color); }

.since-text {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.brand-philosophy {
    color: var(--text-secondary);
    font-style: italic;
    border-left: 3px solid var(--secondary-color);
    padding-left: 15px;
    margin-top: 10px;
}

/* --- Slider de Logos (Derecha) --- */
.footer-partners-section {
    flex: 2; 
    display: flex; 
    align-items: center; 
    gap: 20px; 
    overflow: hidden; /* CRÍTICO: Corta los logos que se salen */
    position: relative;
    justify-content: flex-end;
    max-width: 100%; /* Asegura que no empuje el ancho */
}

/* Contenedor que enmascara */
.slider-container {
    width: 100%;
    overflow: hidden; /* CRÍTICO */
    display: flex;
    /* Efecto de desvanecimiento en los bordes */
    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);
}

/* Pista que se mueve */
.slide-track {
    display: flex;
    align-items: center;
    width: max-content; /* El ancho es la suma de los logos */
    animation: scroll 35s linear infinite; /* Velocidad de la animación */
}

/* Pausar al pasar el mouse */
.slider-container:hover .slide-track {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Se mueve la mitad (el set duplicado) */
}

/* Estilo de los Logos */
.partner-logo {
    height: 120px; /* Tamaño escritorio */
    width: auto;
    margin: 0 5px; /* Espacio entre logos */
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6) brightness(1.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.partner-logo:hover {
    filter: grayscale(0%) opacity(1) brightness(1);
    transform: scale(1.1);
}

/* Texto fijo a la derecha */
.fixed-text-right {
    flex-shrink: 0;
    border-left: 1px solid rgba(255,255,255,0.2);
    padding-left: 15px;
    z-index: 5;
    background: var(--bg-darker); /* Truco: Fondo oscuro para tapar logos si pasan por debajo */
}

.partner-text {
    font-family: var(--font-primary);
    color: #fff;
    opacity: 0.5;
    font-weight: 400;
    font-size: 1rem;
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: 1px;
}

/* --- RESPONSIVE DEL FOOTER --- */
@media (max-width: 1024px) {
    .footer-content-pro {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-partners-section {
        flex-direction: column; /* Logos arriba, texto abajo */
        width: 100%;
    }

    .fixed-text-right {
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.2);
        padding-left: 0;
        padding-top: 10px;
        width: 100%;
        background: transparent;
    }
}

@media (max-width: 768px) {
    /* Ajuste de logos para móvil */
    .partner-logo {
        height: 90px; /* Más chicos en celular */
        margin: 0 15px;
    }
    
    .slide-track {
        animation: scroll 20s linear infinite; /* Un poco más rápido en móvil */
    }

    .footer-brand-section {
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-bottom: 2rem;
        width: 100%;
    }
    
    .brand-philosophy {
        border-left: none;
        padding-left: 0;
    }
}

/* Estilo específico para el link del desarrollador */
.footer-link-dev {
    color: #ffffff !important; /* Blanco puro */
    font-weight: 800 !important; /* Negrita extra */
    text-decoration: none; /* Quita el subrayado feo */
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.footer-link-dev:hover {
    color: var(--primary-color) !important; /* Tu color Cyan (#00f3ff) */
    text-shadow: 0 0 15px var(--primary-color); /* Efecto resplandor */
    cursor: pointer;
}


/* =======================================================
   REPARACIÓN: ICONOS REDES MENÚ SUPERIOR (NAV)
   ======================================================= */

/* Esto separa los iconos en la barra de navegación de arriba */
.nav-social {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important; /* <--- ESTO LES DA EL AIRE QUE FALTA */
    margin-left: 40px !important; /* Los separa un poco del último link (Contacto) */
}

/* Estilo para los iconos de arriba */
.nav-social .social-link {
    color: #ffffff !important;
    font-size: 1.1rem !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.nav-social .social-link:hover {
    color: var(--primary-color) !important;
    transform: translateY(-2px) !important;
}

/* AJUSTE PARA MÓVIL (Para que en el menú desplegable no se rompan) */
@media (max-width: 991px) {
    .nav-social {
        justify-content: center !important;
        margin-left: 0 !important;
        margin-top: 20px !important;
        padding-top: 20px !important;
        border-top: 1px solid rgba(255,255,255,0.1);
        width: 100%;
    }
}   

/* --- AJUSTE FINAL: Logos se mueven a la izquierda en PC --- */
@media (min-width: 992px) {
    
    /* Mantenemos a Marcelo Lally y la estructura original */
    .footer-content-pro {
        display: flex !important;
        justify-content: space-between !important;
    }

    /* Forzamos a la sección de partners a viajar a la izquierda */
    .footer-partners-section {
        display: flex !important;
        justify-content: flex-start !important; /* Alinea contenido interno a la izquierda */
        margin-right: auto !important; /* Empuja todo lo que sobra a la derecha */
        margin-left: -8% !important; /* <--- MAGIA: El número negativo lo succiona hacia Marcelo */
        max-width: 1150px !important; /* Evita que ocupe toda la pantalla */
    }

    /* Aseguramos que el slider no tenga frenos internos */
    .partners-wrapper {
        margin-left: 0 !important;
        padding-left: 0 !important;
    }

    /* Si el texto vertical estorba, lo pegamos más al slider */
    .fixed-text-right {
        margin-left: 5px !important;
    }
}

/* --- COOKIES & MUSIC --- */
/* ===== Cookie banner – SOLO versión PC ===== */
    @media screen and (min-width: 990px) {

    .cookie-container {
        position: static; 
        bottom: 5px;    /* espacio desde el fondo */
        left: 0;
        width: 100%;
        display: flex;
        justify-content: center;   /* centra horizontalmente */
        z-index: 9999;
        }

    .cookie-content {
        background: rgba(0, 0, 0, 0.2);
        padding: 14px 26px;        /* agranda el cajón */
        border-radius: 8px;

        display: flex;            /* 🔥 clave */
        align-items: center;      /* centra vertical */
        justify-content: center;
        gap: 12px;                /* separación real */

        font-size: 12px;
        max-width: 1200px;        /* agranda el cajón */
        width: 100%;
    }


    .cookie-btn {
        background: transparent;
        color: var(--primary-color) !important;
        border: 2px solid var(--primary-color) !important;
        padding: 5px 10px !important;
        border-radius: 5px !important; /* Botón más cuadrado/tech */
        font-size: 0.65rem !important;
        font-weight: 600 !important;
        
        text-transform: uppercase;
        cursor: pointer;
        transition: all 0.3s ease;
        white-space: nowrap;
        box-shadow: 0 0 10px rgba(0, 243, 255, 0.1);
        }

        .cookie-btn:hover {
        background: var(--primary-color);
        color: #000 !important;
        box-shadow: 0 0 15px rgba(0, 243, 255, 0.6);
        transform: translateY(-2px);
        }
    }

/* =======================================================
    Hasta ACA Funciona PERFECTO
   ======================================================= */

/* --- FIN DEL ARCHIVO --- */