/* Estilos mejorados para página de contactos */

body {
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    min-height: 100vh;
}

/* Contenedor principal */
.contenedor-contactos {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* Título principal */
.titulo-seccion {
    color: white;
    font-family: 'Orbitron', sans-serif;
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(101, 0, 202, 0.8);
}

/* Descripción */
.descripcion {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Sección del selector */
.seccion-selector {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid #6500ca;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 8px 32px rgba(101, 0, 202, 0.3);
}

.seccion-selector label {
    display: block;
    color: white;
    font-size: 1.3em;
    margin-bottom: 15px;
    font-weight: bold;
    font-family: 'Orbitron', sans-serif;
}

/* Select mejorado */
#selector-necesidad {
    width: 100%;
    padding: 15px;
    border: 2px solid #6500ca;
    border-radius: 10px;
    background-color: rgba(26, 26, 46, 0.8);
    color: white;
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.3s ease;
}

#selector-necesidad:hover {
    border-color: #8b3ddb;
    box-shadow: 0 0 15px rgba(101, 0, 202, 0.5);
}

#selector-necesidad:focus {
    outline: none;
    border-color: #8b3ddb;
    box-shadow: 0 0 20px rgba(101, 0, 202, 0.7);
}

/* Optgroups del select */
#selector-necesidad optgroup {
    background-color: #1a1a2e;
    color: #8b3ddb;
    font-weight: bold;
    font-size: 1em;
}

#selector-necesidad option {
    background-color: #16213e;
    color: white;
    padding: 10px;
}

/* Botón de búsqueda */
.boton-buscar {
    display: block;
    width: 100%;
    padding: 15px 40px;
    margin-top: 20px;
    border: none;
    font-size: 1.2em;
    cursor: pointer;
    border-radius: 10px;
    background: linear-gradient(135deg, #6500ca, #8b3ddb);
    color: white;
    font-weight: bold;
    font-family: 'Orbitron', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(101, 0, 202, 0.4);
}

.boton-buscar:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(101, 0, 202, 0.6);
    background: linear-gradient(135deg, #8b3ddb, #6500ca);
}

.boton-buscar:active {
    transform: translateY(-1px);
}

/* Línea divisoria */
.linea-divisoria {
    border: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, #6500ca, transparent);
    margin: 40px 0;
}

/* Zona de resultados */
#zona-recomendaciones {
    min-height: 100px;
}

#zona-recomendaciones h3 {
    color: white;
    font-family: 'Orbitron', sans-serif;
    border-bottom: 2px solid #6500ca;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

/* Grid de tarjetas mejorado */
#grid-tarjetas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

/* Tarjetas de aliados mejoradas */
.tarjeta-aliado {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(101, 0, 202, 0.3);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.tarjeta-aliado:hover {
    transform: translateY(-5px);
    border-color: #6500ca;
    box-shadow: 0 8px 30px rgba(101, 0, 202, 0.4);
}

.tarjeta-aliado .icono-aliado {
    background: linear-gradient(135deg, #6500ca, #8b3ddb);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.tarjeta-aliado .nombre-aliado {
    color: white;
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: 'Orbitron', sans-serif;
}

.tarjeta-aliado .descripcion-aliado {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95em;
    line-height: 1.5;
    min-height: 60px;
    margin-bottom: 15px;
}

.tarjeta-aliado .boton-contactar {
    display: block;
    text-align: center;
    width: 100%;
    padding: 12px;
    margin-top: 15px;
    background: rgba(101, 0, 202, 0.2);
    border: 2px solid #6500ca;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.tarjeta-aliado .boton-contactar:hover {
    background: #6500ca;
    box-shadow: 0 0 15px rgba(101, 0, 202, 0.6);
}

/* Mensaje de carga */
.mensaje-carga {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    font-size: 1.2em;
    padding: 40px;
}

/* Responsive */
@media (max-width: 768px) {
    .titulo-seccion {
        font-size: 2em;
    }
    
    .seccion-selector {
        padding: 20px;
    }
    
    #grid-tarjetas {
        grid-template-columns: 1fr;
    }
}