/* Estilos generales */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    color: #fff;
    background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
    overflow-x: hidden;
}

.loading-screen {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    height: 100vh;
}

.logo {
    width: 150px;
    animation: fadeIn 2s ease-in-out;
}

/* Slider */
.slider {
    position: relative;
    overflow: hidden;
    height: 60vh;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: #fff;
    font-size: 2rem;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

button:hover {
    background: rgba(0, 0, 0, 0.8);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* Ajustes para dispositivos móviles */
@media (max-width: 768px) {
    .slider {
        height: 50vh;
    }

    button {
        font-size: 1.5rem;
        padding: 8px;
    }

    .prev {
        left: 5px; /* Mover más cerca del borde en pantallas pequeñas */
    }

    .next {
        right: 5px;
    }
}

/* Descripción */
.description {
    text-align: center;
    padding: 2rem;
}

.description h1 {
    font-size: 3rem;
    color: #ff5722;
    text-transform: uppercase;
}

.player-container {
    max-width: 600px;
    margin: auto;
    text-align: center;
    border-radius: 15px;
    background: linear-gradient(135deg, #3a3a3a, #2b2b2b);
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.album-cover {
    width: 100%;
    border-radius: 15px;
}

.album-title, .artist-name, .producer-name {
    margin: 10px 0;
}

.track-list {
    margin-top: 20px;
}

.track-list ul {
    list-style-type: none;
    padding: 0;
}

.track-list li {
    cursor: pointer;
    padding: 10px;
    border: 1px solid transparent;
    border-radius: 5px;
    transition: background-color 0.3s, border-color 0.3s;
}

.track-list li:hover {
    background-color: #4a4a4a;
    border-color: #ffffff;
}

/* Redes Sociales */
.social-media h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-buttons .social-btn {
    text-decoration: none;
    padding: 1rem 1.5rem; /* Ajustar ancho del botón */
    border-radius: 5px; /* Menos redondeado */
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s;
}

.social-buttons .social-btn.facebook { background: #4267B2; }
.social-buttons .social-btn.twitter { background: #1DA1F2; }
.social-buttons .social-btn.instagram { background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF); }
.social-buttons .social-btn.youtube { background: #FF0000; }

.social-buttons .social-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .social-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Footer */
footer {
    text-align: center;
    padding: 1rem;
    background: #0d0d0d;
    color: #666;
}

/* Grid de información */
.info-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 2rem;
    background: #121212;
    gap: 2rem;
}

.info-section {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    text-align: center;
    color: #fff;
    margin: 0 auto;
    cursor: pointer;
}

.info-section h2 {
    font-size: 1.8rem;
    color: #ff5722;
    margin-bottom: 1rem;
}

/* Modal de imagen */
.image-modal {
    display: none; /* Por defecto oculto */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.image-modal .modal-content {
    max-width: 90%;
    max-height: 90%;
}

.image-modal .close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

/* Tarjeta del productor */
.card {
    display: inline-block;
    text-align: center;
    border-radius: 8px;
    background: #1a1a1a;
    padding: 10px;
}

.producer-image {
    width: 100%; /* Imagen adaptativa */
    height: auto; /* Mantiene la proporción de la imagen */
    border-radius: 8px; /* Bordes redondeados */
}

main-concerts {
    padding: 20px;
}

#concerts-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.concert {
    background: #696969;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s;
    cursor: pointer;
}

.concert:hover {
    transform: scale(1.05);
}

.concert img {
    width: 100%;
    height: auto;
}

.concert-info {
    padding: 15px;
}

.concert-info h2 {
    font-size: 1.2rem;
    margin: 10px 0;
}

.concert-info p {
    margin: 5px 0;
    font-size: 0.9rem;
}

#modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
}

#modal img {
    max-width: 90%;
    max-height: 90%;
    border: 5px solid #fff;
    border-radius: 8px;
}

#close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}
.container-productos {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #ff6600;
}

.grid-productos {
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.grid-item-productos {
    border: 1px solid #ddd;
    padding: 10px;
    background-color: #fff;
    border-radius: 8px;
    color: #0d0d0d;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.grid-item-productos img {
    max-width: 100%;
    border-radius: 8px;
}

.grid-item-productos h3, .grid-item-productos p {
    margin: 10px 0;
}

.modal-productos {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content-productos {
    display: block;
    max-width: 90%;
    max-height: 80%;
    margin: auto;
    margin-top: 5%;
}

.close-productos {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
}

#caption-productos {
    text-align: center;
    color: #03a0e9;
    margin-top: 10px;
    font-size: 18px;
}