a:hover {
  	cursor: url('../recursos/cursor_rock.png'), pointer;
}

button:hover {
	cursor: url('../recursos/cursor_rock.png'), pointer;
}

body, html {
    font-family: 'FuenteSIMM', sans-serif !important;
}

/* --- BOTÓN PERSONALIZADO SIMM 30 ANIVERSARIO --- */

.btn-outline-simm {
    /* Estado Inicial: Solo borde amarillo y texto amarillo */
    color: #f8ef24 !important;
    background-color: transparent !important;
    background-image: none !important;
    border: 2px solid #f8ef24 !important;
    padding: 10px;
    font-weight: 300;
    font-size: 22px;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
    border-radius: 4px; /* Opcional: ajusta según tu diseño */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline-simm:hover, 
.btn-outline-simm:active, 
.btn-outline-simm:focus {
    /* Estado Hover: Fondo amarillo completo y texto negro */
    background-color: #f8ef24 !important;
    color: #000000 !important;
    box-shadow: 0 0 15px rgba(248, 239, 36, 0.5); /* Efecto de brillo sutil */
    border-color: #f8ef24 !important;
    text-decoration: none;
}

/* Ajuste para que el cursor de rock se mantenga en el botón */
.btn-outline-simm {
    cursor: url('../recursos/cursor_rock.png'), pointer !important;
}

.text-primary {
    color: #f8ef24 !important;
}

/* --- VISTA ESCRITORIO (Mínimo 1200px) --- */
@media (min-width: 1200px) {
    /* Ocultamos los iconos dentro de los botones del navbar */
    .mobile-buttons-container .btn-outline-simm .icon,
    .rd-navbar-main-center .btn-outline-simm .icon {
        display: none !important;
    }

    /* Aseguramos que el texto sea visible */
    .mobile-buttons-container .btn-outline-simm .button-text,
    .rd-navbar-main-center .btn-outline-simm .button-text {
        display: inline-block !important;
    }
}

/* --- VISTA MÓVIL (Opcional: refuerzo de lo que ya tienes) --- */
@media (max-width: 1199px) {
    /* Mostramos iconos y ocultamos texto */
    .btn-outline-simm .icon {
        display: inline-block !important;
    }
    
    .btn-outline-simm .button-text {
        display: none !important;
    }
}

/* Contenedor general */
.list-social {
    display: flex !important;
    justify-content: center !important; /* Centrado horizontal */
    align-items: center !important;    /* Centrado vertical */
    padding: 0 !important;
    margin: 0 auto !important;         /* Elimina márgenes extra y centra */
    list-style: none !important;
    width: 100%;
}

.list-social li a {
    position: relative !important;
    display: block !important;
    width: 40px;  /* Ajusta al tamaño real de tus archivos .png */
    height: 40px; /* Ajusta al tamaño real de tus archivos .png */
    margin: 0 auto !important; /* Centra el 'a' dentro del 'li' */
}

.list-social li a img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important; /* Evita deformaciones */
    transition: opacity 0.3s ease-in-out !important;
}

/* 4. Estado inicial */
.list-social li a .img-hover {
    opacity: 0 !important;
    z-index: 2;
}

.list-social li a .img-default {
    opacity: 1 !important;
    z-index: 1;
}

/* 5. Efecto Hover: Solo cambiamos opacidad, nada se mueve */
.list-social li a:hover .img-default {
    opacity: 0 !important;
}

.list-social li a:hover .img-hover {
    opacity: 1 !important;
}

/* Estilo base para todos los iconos */
.social-icon {
    display: block !important;
    width: 32px !important; /* Ajusta al tamaño de tu icono */
    height: 32px !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    transition: background-image 0.2s ease-in-out, transform 0.2s ease !important;
}

/* --- IMÁGENES POR DEFECTO (BLANCAS) --- */
.social-icon.face { background-image: url('../recursos/facebook.png'); }
.social-icon.inst { background-image: url('../recursos/instagram.png'); }
.social-icon.what { background-image: url('../recursos/whatsapp.png'); }
.social-icon.tik  { background-image: url('../recursos/tiktok.png'); }

/* --- IMÁGENES EN HOVER (AMARILLAS) --- */
.social-icon.face:hover { background-image: url('../recursos/facebook2.png'); }
.social-icon.inst:hover { background-image: url('../recursos/instagram2.png'); }
.social-icon.what:hover { background-image: url('../recursos/whatsapp2.png'); }
.social-icon.tik:hover  { background-image: url('../recursos/tiktok2.png'); }

/* Efecto extra: pequeño salto al pasar el mouse */
.social-icon:hover {
    transform: scale(1.1) !important;
}

.simm-sticky {
    position: fixed;
    right: 0;
    top: 150px; /* Ajusta esto para que quede debajo de tu navbar */
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid #f8ef24;
    border-right: none;
    padding: 15px 10px;
    z-index: 9999;
    border-radius: 10px 0 0 10px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    color: #fff;
    font-family: 'FuenteSIMM', sans-serif; /* Usando tu fuente nueva */
    text-align: center;
    width: 80px;
}

.sticky-title {
    font-size: 22px;
    color: #f8ef24;
    margin-bottom: 8px;
    letter-spacing: 1px;
    font-weight: bold;
}

.countdown-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.time-block {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.time-block span {
    font-size: 22px;
    font-weight: bold;
    display: block;
}

.time-block small {
    font-size: 18px;
    color: #f8ef24;
    margin-top: 2px;
}

/* Ocultar en móviles muy pequeños si estorba */
@media (max-width: 480px) {
    .simm-sticky {
        width: 60px;
        padding: 10px 5px;
    }
    .time-block span { font-size: 16px; }
}

.sidebar {
    position: relative; /* Necesario para que la calavera se ancle aquí */
    overflow: hidden;   /* Evita que la calavera se salga del cuadro de la sidebar */
    padding: 30px;      /* Espacio interno para que el texto no toque los bordes */
    background: #111;   /* Color de fondo de la sidebar */
}

.img-calavera-bg {
    position: absolute;
    /* Movemos la imagen más a la izquierda */
    right: 10%;         /* Al usar porcentaje, la empujamos hacia el centro/izquierda */
    bottom: 5%;         /* La subimos un poco */
    width: 350px;       /* La hacemos un poco más grande para que cubra más fondo */
    height: auto;
    opacity: 0.12;      /* Un poco más sutil para que el texto sea el protagonista */
    z-index: 0;
    pointer-events: none;
    transform: rotate(-5deg); /* Una inclinación más leve */
    filter: brightness(0.8);  /* La oscurecemos un poco si brilla mucho */
}

.sidebar > *:not(.img-calavera-bg) {
    position: relative;
    z-index: 1; /* Fuerza a que todo el texto e iconos estén por encima */
}

img {
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none; /* Esto evita CUALQUIER interacción, pero cuidado si la imagen tiene un link */
}

/** @section Preloader */
.preloader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;

    /* Configuración de la imagen de fondo */
    background-image: url('../recursos/preloaderbg.png');
    background-size: cover;      /* Cubre toda la pantalla sin deformarse */
    background-position: center; /* Centra la imagen */
    background-repeat: no-repeat;
    
    transition: opacity .5s ease, visibility .5s;
}

/* Esta clase la añade tu JS cuando la página está lista */
.preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

/* Animación para tu PNG */
.preloader-png {
    width: 300px; /* Ajusta el tamaño de tu logo */
    height: auto;
    animation: suave 2s ease-in-out infinite;
}

@keyframes suave {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.8; }
}

h2, h3 {
    font-weight: 0 !important;
}

.redes-fijas-bottom {
    position: fixed;
    bottom: 20px;
    left: 50%; transform: translateX(-50%);
    z-index: 999;
    background: rgba(0, 0, 0, 0.7);
    padding: 12px;
    border-radius: 15px;
    display: flex;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Reutilizamos tus clases existentes para que los iconos se vean igual */
.redes-fijas-bottom .list-social {
    display: flex;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.bg-simm{
    /* Configuración de la imagen de fondo */
    background-image: url('../recursos/bgsimm.png');
    background-size: cover;      /* Cubre toda la pantalla sin deformarse */
    background-position: center; /* Centra la imagen */
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden; /* Evita que la imagen cree scroll horizontal si es muy grande */
    box-shadow: inset 0 50px 50px -50px rgba(0,0,0,0.8), 
                inset 0 -50px 50px -50px rgba(0,0,0,0.8);
}

/* Estilo para las tarjetas */
.info-card {
    border: 1px solid #f8ef24; /* El amarillo de tu logo */
    padding: 10px;
    background: rgba(0,0,0,0.5); /* Fondo oscuro traslúcido */
    height: 100%;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: #ffffff;
}

.info-card img {
    width: 100%;
    height: auto;
    border: 1px solid #f8ef24;
    margin-bottom: 15px;
}

.info-card h3 {
    color: #f8ef24;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
}

.info-card p {
    color: #ffffff;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Ajuste para el logo y el biker */
.img-main-logo {
    max-width: 50%;
    height: auto;
}

/* Estilo para la imagen del biker */
.biker-container {
    position: absolute;
    top: 55%;           /* Centrar verticalmente (ajustar según prefieras) */
    left: 5%;          /* Centrar horizontalmente */
    transform: translate(-50%, -50%); /* Ajuste perfecto al centro */
    z-index: 1;         /* Capa inferior */
    opacity: 0.6;
    pointer-events: none; /* Importante: permite hacer clic en las cards a través de la imagen */
}

.biker-img {
    width: 700px;     /* Controla el tamaño de la imagen de fondo */
    height: auto;
}

/* El contenido que debe ir al frente */
.content-wrapper {
    position: relative;
    z-index: 2;         /* Capa superior */
}

.img-main-logo-2 {
    max-width: 30%;
    height: auto;
}

.biker-container-2 {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: auto;
    z-index: 1; /* Por detrás del contenido */
    overflow: hidden;
    pointer-events: none; /* Para que no interfiera con los clics en las cards */
}

.biker-img-2 {
    height: 100%; /* Se ajusta al alto de la sección */
    width: auto;
    opacity: 0.6; /* Un poco de transparencia para que no tape el texto */
    object-fit: cover;
}

/* Ajuste específico para móviles */
@media (max-width: 991px) {
    .biker-img-2 {
        opacity: 0.3; /* Más transparente en móvil para mejorar legibilidad */
        position: absolute;
        left: -20%; /* Mueve un poco la imagen para que solo se vea un costado */
    }
}

.artist-card {
    background-color: #000; /* Fondo negro base */
    opacity: 0.5; /* Opcional: textura de puntos/ruido */
    border: 1px solid #333; /* Borde sutil gris */
    aspect-ratio: 1 / 1;    /* Hace que las cards sean perfectamente cuadradas */
    position: relative;
    overflow: hidden;       /* Para que la silueta no se salga del cuadro */
    transition: all 0.3s ease;
}

.artist-card:hover {
    border-color: #fbd719; /* El amarillo de tu logo al pasar el mouse */
    transform: scale(1.02);
}

.artist-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end; /* Alinea la silueta al fondo de la card */
}

.silhouette-img {
    width: 100%;            /* Ajusta según el tamaño de tu PNG */
    height: auto;
    filter: drop-shadow(0px 0px 5px rgba(251, 215, 25, 0.3)); /* Brillo amarillo sutil */
    z-index: 1;
}

.mystery-mark {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #fbd719;        /* Amarillo SIMM */
    font-size: 4rem;       /* Tamaño grande */
    font-weight: bold;
    font-family: 'FuenteSIMM', sans-serif;
    z-index: 2;
    opacity: 0.8;
}

/* Fondo negro con textura */
.bg-section {
    background-image: url('../recursos/bgsection.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh; /* Para que ocupe toda la pantalla */
    position: relative;
    padding-bottom: 0 !important; /* El papel debe pegar abajo */
}

/* El logo principal arriba */
.main-logo-top {
    max-width: 900px;
    width: 90%;
    margin-top: 2rem;
}

/* Contenedor del papel rasgado */
.sponsors-strip {
    background-image: url('../recursos/sponsors.png');
    background-size: 100% 100%; /* Forzamos a que cubra el ancho pero mantenga sus bordes */
    background-repeat: no-repeat;
    background-position: bottom center;
    width: 100%;
    min-height: 180px; /* Ajusta según el alto de tu imagen de papel */
    display: flex;
    align-items: center;
    z-index: 10;
}

/* Logos de los patrocinadores */
.sponsor-logo {
    max-height: 70px; /* Tamaño uniforme para patrocinadores */
    width: auto;
    filter: grayscale(1) brightness(0); /* Opcional: para que se vean negros como en la imagen */
    opacity: 0.8;
    transition: 0.3s;
}

.sponsor-logo:hover {
    filter: none;
    opacity: 1;
}

/* Ajuste para móviles */
@media (max-width: 768px) {
    .sponsors-strip {
        background-size: cover; /* En móvil cover funciona mejor por la verticalidad */
        min-height: 120px;
    }
    .sponsor-logo {
        max-height: 35px;
    }
}

/* Sidebar Derecho (Original) */
.sidebar-right-wrap {
  right: 0;
  transform: translateX(100%); /* Se esconde a la derecha */
}

/* Sidebar Izquierdo (Nuevo) */
.sidebar-left-wrap {
  left: 0;
  transform: translateX(-100%); /* Se esconde a la izquierda */
}

/* Clase para abrir (la que añade el JS) */
.sidebar-wrap.active {
  transform: translateX(0) !important;
}

/* Estilo Dark Carbon */
.form-custom-dark {
    background-color: #202020;
    border: 2px solid #333;
    color: #fff;
    border-radius: 0; /* Bordes rectos para un look más rudo */
    transition: all 0.3s ease;
    /* padding: 12px 15px; */
}

.form-custom-dark:focus {
    background-color: #202020;
    color: #fff;
    border-color: #f8ef24 ; /* Cambia esto al color de tu logo */
    box-shadow: 0 0 10px rgba(243, 156, 18, 0.5);
    outline: none;
}

.label-custom {
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    color: #f8ef24 ;
    font-size: 0.85rem;
}