/* ===== RESET Y VARIABLES ===== */
:root {
    --primary: #f0b90b;        /* Amarillo principal */
    --primary-dark: #d4a108;
    --primary-light: #f9d85e;
    --black: #0a0a0a;
    --black-light: #1a1a1a;
    --gray-dark: #2a2a2a;
    --gray: #3a3a3a;
    --gray-light: #4a4a4a;
    --text-light: #e0e0e0;
    --text-dim: #a0a0a0;
    --text-muted: #6c757d;
    --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.3);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-hover: 0 15px 40px rgba(240, 185, 11, 0.2);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius: 16px;
    --border-radius-sm: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--black);
    color: var(--text-light);
    line-height: 1.6;
    scroll-behavior: smooth;
    font-size: 16px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ===== BOTÓN SUBIR ===== */
.subir-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary);
    color: var(--black);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    font-size: 22px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.subir-btn.mostrar {
    opacity: 1;
    visibility: visible;
}

.subir-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(240, 185, 11, 0.4);
}

/* ===== NAVBAR ===== */
.navbar {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid var(--primary);
}

/* Ajustes para el logo y separación del menú */
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-container .logo {
    display: flex;
    align-items: center;
	justify-content: space-between;
}

.logo {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
}

.logo:hover {
    text-shadow: 0 0 12px var(--primary);
}

.logo-img {
    height: 45px !important;  /* Tamaño más grande y visible */
    width: auto;
    display: block;
}

/* Opcional: si quieres un efecto hover en el logo */
.logo-img:hover {
    opacity: 0.9;
    transform: scale(1.02);
    transition: all 0.2s;
}
.nav-menu {
    display: flex;
    gap: 2.8rem;
	margin-left: 50px !important;
}

.nav-menu a {
    font-weight: 500;
    color: var(--text-light);
    transition: var(--transition);
    padding-bottom: 6px;
    border-bottom: 2px solid transparent;
    font-size: 1.1rem;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

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

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

.hamburger {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--primary);
}

/* ===== SECCIONES GENERALES ===== */
.section {
    padding: 100px 0;
    border-bottom: 1px solid var(--gray-dark);
}

.section:last-of-type {
    border-bottom: none;
}

.section h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary);
    position: relative;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 1.2;
}

.section h2:after {
    content: '';
    display: block;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), transparent);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* ===== HERO (INICIO) ===== */
.hero {
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.hero:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(45deg, 
        transparent, 
        transparent 25px, 
        rgba(240, 185, 11, 0.02) 25px, 
        rgba(240, 185, 11, 0.02) 50px);
    animation: moveStripes 30s linear infinite;
    pointer-events: none;
}

@keyframes moveStripes {
    0% { transform: translate(0, 0); }
    100% { transform: translate(10%, 10%); }
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 0 20px rgba(240, 185, 11, 0.7);
    font-weight: 800;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    color: var(--text-dim);
    line-height: 1.8;
}

/* Redes sociales */
.redes-sociales {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.redes-sociales a {
    font-size: 2.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.redes-sociales a:hover {
    color: var(--primary-light);
    transform: translateY(-8px) scale(1.1);
}

/* Botones */
.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background: var(--primary);
    color: var(--black);
    box-shadow: 0 0 20px var(--primary);
    border-color: var(--primary);
}

/* Botón deshabilitado */
.btn.disabled,
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: var(--gray-dark);
    border-color: var(--gray);
    color: var(--text-dim);
    pointer-events: none;
}
.btn.disabled:hover {
    transform: none;
    box-shadow: none;
}

.quick-links {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

/* Slider noticias */
.noticias-slider {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding: 20px 0 30px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--gray-dark);
}

.noticias-slider::-webkit-scrollbar {
    height: 8px;
}

.noticias-slider::-webkit-scrollbar-track {
    background: var(--gray-dark);
    border-radius: 10px;
}

.noticias-slider::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.noticia-card {
    min-width: 320px;
    background: var(--black-light);
    padding: 25px;
    border-radius: var(--border-radius);
    scroll-snap-align: start;
    border-left: 5px solid var(--primary);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.noticia-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.noticia-card h4 {
    color: var(--primary);
    margin-bottom: 12px;
    font-size: 1.4rem;
    font-weight: 600;
}

.noticia-card small {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== GALERÍA DE EQUIPOS (MODERNA) ===== */
.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

/* Tarjeta de unidad */
.unidad-card {
    background: var(--black-light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--gray-dark);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.unidad-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

/* Imagen con overlay */
.unidad-card .imagen-wrapper {
    position: relative;
    overflow: hidden;
    height: 260px;
    flex-shrink: 0;
}

.unidad-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.unidad-card:hover img {
    transform: scale(1.08);
}

/* Overlay oscuro semitransparente */
.unidad-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    opacity: 0;
    transition: opacity 0.4s;
    display: flex;
    align-items: flex-end;
    padding: 25px;
}

.unidad-card:hover .overlay {
    opacity: 1;
}

/* Categoría en el overlay */
.unidad-card .categoria-badge {
    background: var(--primary);
    color: var(--black);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Información de la tarjeta */
.unidad-info {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.unidad-info h4 {
    font-size: 1.7rem;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 700;
    line-height: 1.3;
}

.unidad-info .descripcion {
    color: var(--text-dim);
    font-size: 0.95rem;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.unidad-info .funcionalidades {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.funcionalidad-tag {
    background: var(--gray-dark);
    color: var(--primary);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid var(--primary);
    transition: var(--transition);
}

.funcionalidad-tag:hover {
    background: var(--primary);
    color: var(--black);
}

/* ===== FORMULARIOS (minimalistas) ===== */
.form {
    max-width: 650px;
    margin: 0 auto 50px;
    background: var(--black-light);
    padding: 45px;
    border-radius: 28px;
    border: 1px solid var(--gray-dark);
    box-shadow: var(--shadow);
}

.form input,
.form select,
.form textarea {
    width: 100%;
    padding: 16px 20px;
    margin-bottom: 22px;
    background: var(--gray-dark);
    border: 1px solid var(--gray);
    border-radius: 14px;
    color: #fff;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(240, 185, 11, 0.2);
}

.form button {
    width: 100%;
    padding: 16px;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition);
}

.form button:hover {
    background: var(--primary);
    color: var(--black);
    box-shadow: 0 8px 25px rgba(240, 185, 11, 0.4);
}

/* Estrellas valoración */
.estrellas-input {
    margin-bottom: 22px;
}

.estrellas-input label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-dim);
    font-weight: 500;
}

.stars {
    display: flex;
    gap: 12px;
    font-size: 2.3rem;
    color: var(--gray-light);
    cursor: pointer;
    justify-content: center;
    margin: 10px 0;
}

.stars i.fas {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary);
}

.stars i.far {
    color: var(--gray-light);
}

.stars i {
    transition: color 0.2s, transform 0.2s;
}

.stars i:hover {
    transform: scale(1.2);
}

/* Resumen valoraciones */
.rating-resumen {
    text-align: center;
    margin-bottom: 40px;
    background: var(--black-light);
    padding: 30px;
    border-radius: 28px;
    border: 1px solid var(--gray-dark);
}

.promedio {
    font-size: 5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    text-shadow: 0 0 15px var(--primary);
}

#estrellas-panel {
    color: var(--primary);
    font-size: 2rem;
    margin: 15px 0 10px;
}

/* ===== SUGERENCIAS Y COMENTARIOS ===== */
.sugerencias-lista,
.comentarios-lista {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sugerencia-item,
.comentario-item {
    background: var(--black-light);
    padding: 28px;
    border-radius: 18px;
    border-left: 6px solid var(--primary);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.sugerencia-item:hover,
.comentario-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-hover);
}

.sugerencia-item .votos {
    display: inline-block;
    background: var(--primary);
    color: var(--black);
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-right: 15px;
}

.sugerencia-item strong {
    color: #fff;
    font-size: 1.2rem;
}

.sugerencia-item p {
    margin: 15px 0 10px;
    color: var(--text-dim);
}

.sugerencia-item button {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 8px 22px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    font-size: 0.95rem;
}

.sugerencia-item button:hover {
    background: var(--primary);
    color: var(--black);
}

.comentario-item strong {
    color: var(--primary);
    font-size: 1.2rem;
}

.comentario-item p {
    margin: 10px 0 5px;
    color: var(--text-dim);
}

.comentario-item small {
    color: var(--text-muted);
}

/* ===== CONTACTO ===== */
#contacto p {
    text-align: center;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

#contacto i {
    color: var(--primary);
    margin-right: 10px;
    width: 25px;
}

#contacto a {
    color: var(--primary);
    text-decoration: underline;
    transition: var(--transition);
}

#contacto a:hover {
    color: var(--primary-light);
}

/* ===== FOOTER ===== */
footer {
    text-align: center;
    padding: 40px 20px;
    background: var(--black);
    border-top: 2px solid var(--primary);
    color: var(--text-dim);
    font-size: 1rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.2rem;
    }
    .section h2 {
        font-size: 2.5rem;
    }
    .galeria-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        gap: 1.8rem;
        border-bottom: 2px solid var(--primary);
        box-shadow: var(--shadow);
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .container {
        padding: 0 20px;
    }

    .hero {
        padding: 80px 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .section {
        padding: 70px 0;
    }

    .section h2 {
        font-size: 2.2rem;
    }

    .quick-links {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .galeria-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .form {
        padding: 30px 20px;
    }

    .promedio {
        font-size: 4rem;
    }

    .stars {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .section h2 {
        font-size: 1.8rem;
    }

    .unidad-card .imagen-wrapper {
        height: 220px;
    }

    .unidad-info h4 {
        font-size: 1.4rem;
    }

    .promedio {
        font-size: 3.5rem;
    }
}

/* ===== UTILIDADES ===== */
::selection {
    background: var(--primary);
    color: var(--black);
}

.text-primary {
    color: var(--primary);
}

.bg-black-light {
    background: var(--black-light);
}

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

.section {
    animation: fadeInUp 0.8s ease-out;
}

/* ===== NUEVA CUADRÍCULA Y TARJETAS DE EVENTOS TÁCTICOS ===== */
        .eventos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 25px;
            padding: 20px 0;
            width: 100%;
        }

        .evento-card {
            background: rgba(15, 15, 15, 0.75);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
            display: flex;
            flex-direction: column;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            text-align: left;
        }

        /* Indicador visual de estado o facción arriba de la tarjeta */
        .evento-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #f0b90b, #d49a00);
            z-index: 2;
        }

        /* Efecto Hover: Elevación y Glow Dorado sutil */
        .evento-card:hover {
            transform: translateY(-8px);
            border-color: rgba(240, 185, 11, 0.4);
            box-shadow: 0 15px 35px rgba(240, 185, 11, 0.15), 0 5px 15px rgba(0, 0, 0, 0.6);
        }

        /* Contenido interno */
        .evento-body {
            padding: 24px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            flex-grow: 1;
        }

        .evento-badge {
            align-self: flex-start;
            background: rgba(240, 185, 11, 0.1);
            border: 1px solid rgba(240, 185, 11, 0.3);
            color: #f0b90b;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .evento-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: #ffffff;
            margin: 0;
            line-height: 1.3;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }

        .evento-info {
            display: flex;
            flex-direction: column;
            gap: 10px;
            color: #b0b0b0;
            font-size: 0.9rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            padding: 15px 0;
            margin: 5px 0;
        }

        .evento-info-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .evento-info-item i {
            color: #f0b90b;
            width: 16px;
            text-align: center;
        }

        .evento-descripcion {
            color: #999;
            font-size: 0.9rem;
            line-height: 1.5;
            margin: 0;
        }

        /* Botón de acción táctico */
        .evento-btn {
            background: linear-gradient(135deg, #f0b90b 0%, #d49a00 100%);
            color: #0a0a0a;
            border: none;
            padding: 12px 20px;
            border-radius: 8px;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: 100%;
            margin-top: auto;
        }

        .evento-btn:hover {
            background: #ffffff;
            color: #0a0a0a;
            box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
            transform: scale(1.02);
        }

        .evento-btn:active {
            transform: scale(0.98);
        }
/* ===== ESTILOS MEJORADOS PARA ROL INPUT ===== */
.rol-input {
    display: flex;
    gap: 15px;
    align-items: center;
    background: var(--black-light);
    padding: 15px 20px;
    border-radius: 60px;  /* Forma de píldora */
    border: 1px solid var(--gray-dark);
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.rol-input:hover {
    border-color: var(--primary);
    box-shadow: 0 6px 15px rgba(240, 185, 11, 0.15);
}

.rol-input:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(240, 185, 11, 0.3);
}

.rol-input label {
    color: var(--text-dim);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.rol-input input {
    flex: 1;
    padding: 12px 18px;
    background: var(--gray-dark);
    border: 2px solid transparent;
    border-radius: 40px;  /* También en píldora */
    color: white;
    font-size: 1rem;
    transition: all 0.2s;
    outline: none;
}

.rol-input input::placeholder {
    color: var(--text-muted);
    font-style: italic;
}

.rol-input input:focus {
    border-color: var(--primary);
    background: var(--black);
    box-shadow: 0 0 0 3px rgba(240, 185, 11, 0.2);
}

/* Si el input tiene un icono o algo similar, puedes añadirlo */
.rol-input i {
    color: var(--primary);
    font-size: 1.4rem;
}

/* Estilos para el campo oculto (no se muestra, pero lo dejamos por si acaso) */
#modalEventId {
    display: none;
}

/* Etiqueta para el select */
label[for="rol"] {
    display: block;
    margin-bottom: 12px;
    color: var(--text-light);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-left: 10px;
}

label[for="rol"]::before {
    content: '▸';
    color: var(--primary);
    font-size: 1.2rem;
    position: absolute;
    left: -5px;
    top: -1px;
}

/* Select personalizado */
#rol {
    width: 100%;
    padding: 14px 20px;
    background: var(--gray-dark);
    border: 2px solid var(--gray);
    border-radius: 16px;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23f0b90b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 18px;
    margin-bottom: 25px;
}

#rol:hover {
    border-color: var(--primary-light);
    background-color: var(--black);
}

#rol:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(240, 185, 11, 0.25);
    background-color: var(--black);
}

/* Estilo para las opciones del select */
#rol option {
    background: var(--black-light);
    color: var(--text-light);
    padding: 12px;
    font-size: 1rem;
}

/* Estilo para la opción por defecto (la primera) */
#rol option[value=""] {
    color: var(--text-muted);
    font-style: italic;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
.modal-content {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 12px;
    max-width: 400px;
    width: 90%;
    border: 1px solid #f0b90b;
}
.close {
    float: right;
    font-size: 24px;
    cursor: pointer;
    color: #f0b90b;
}