.elementor-26 .elementor-element.elementor-element-017f4c3{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:140px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}/* Start custom CSS *//* === ESTILOS GALERÍA DJS (CYBERPUNK) === */

/* TÍTULOS DE SECCIÓN */
h2.dj-section-title {
    font-family: 'Oswald', sans-serif !important;
    color: white !important;
    text-transform: uppercase;
    font-size: 40px;
    margin-bottom: 40px;
    text-shadow: 0 0 20px rgba(255, 0, 204, 0.4);
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
}

/* LA REJILLA (GRID) */
.dj-grid {
    display: grid;
    /* Ajuste automático: Mínimo 220px de ancho por tarjeta */
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); 
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 80px auto; /* Margen abajo */
}

/* LA CARTA DEL DJ */
.dj-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    aspect-ratio: 3/4; /* Formato vertical (Retrato) */
}

/* EFECTO HOVER (El brillo) */
.dj-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #00f2ea; /* Borde Cyan */
    box-shadow: 0 0 30px rgba(0, 242, 234, 0.3);
    z-index: 10;
}

/* LA FOTO */
.dj-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: grayscale(100%) contrast(1.1); /* Blanco y negro inicial */
}

/* Al pasar el ratón, la foto recupera el color */
.dj-card:hover img {
    transform: scale(1.1);
    filter: grayscale(0%) contrast(1.1);
}

/* EL NOMBRE DEL DJ (Etiqueta abajo) */
.dj-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(0deg, black 0%, rgba(0,0,0,0.8) 60%, transparent 100%);
    padding: 30px 15px 15px 15px;
    text-align: center;
    transition: 0.3s;
}

.dj-name {
    font-family: 'Oswald', sans-serif;
    color: white;
    font-size: 24px;
    text-transform: uppercase;
    margin: 0;
    line-height: 1;
    text-shadow: 0 2px 5px black;
}

/* Hover en el texto */
.dj-card:hover .dj-name {
    color: #00f2ea; /* Texto Cyan */
    text-shadow: 0 0 10px rgba(0, 242, 234, 0.6);
}

/* AJUSTE PARA TÍTULOS DE PÁGINA (H1) */
h1.page-title {
    text-align: center;
    color: white;
    font-family: 'Oswald';
    font-size: 60px;
    text-transform: uppercase;
    margin-bottom: 60px;
}/* End custom CSS */