/* --- RESET Y CONFIGURACIÓN GLOBAL --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    background-color: #ffffff;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #000;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* --- SECCIÓN 1: HERO --- */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.main-container {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.super-zoom-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: intenseZoom 15s ease-in-out infinite;
}

@keyframes intenseZoom {
    0%, 100% { transform: scale(1.0); }
    50% { transform: scale(1.1); }
}

.waves-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 2;
    pointer-events: none;
}

.wave {
    position: absolute;
    top: -110%; left: -50%; width: 200vw; height: 200vw;
    border-radius: 43%;
    background: rgba(0, 0, 0, 0.03);
    animation: rotateWaves 30s linear infinite;
}

@keyframes rotateWaves {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    z-index: 10;
    text-align: center;
    font-size: 0.7rem;
    letter-spacing: 5px;
    font-weight: 400;
    opacity: 0.5;
    animation: bounce 2s infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
}

/* --- SECCIÓN 2: CONTENIDO --- */
.content-section {
    min-height: 100vh;
    padding: 120px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-card {
    max-width: 1100px;
    width: 100%;
    text-align: center;
}

.brand-header h2 {
    font-size: 1.5rem;
    letter-spacing: 12px;
    font-weight: 400;
    margin-bottom: 35px;
    text-transform: uppercase;
}

.brand-header p {
    font-size: 1.1rem;
    letter-spacing: 1px;
    line-height: 1.8;
    font-weight: 300;
    opacity: 0.7;
    margin-bottom: 30px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.roster-container h3 {
    font-size: 0.8rem;
    letter-spacing: 8px;
    margin-top: 60px;
    margin-bottom: 50px;
    opacity: 0.4;
    font-weight: 400;
}

/* --- GRID ROSTER --- */
.artist-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 60px 20px;
    margin-bottom: 120px;
    width: 100%;
}

.artist-name {
    font-size: 1.3rem;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 4px;
    opacity: 0.7;
    
    /* Configuración de Link */
    text-decoration: none;
    color: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    
    /* El truco del cursor */
    cursor: pointer;
    
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Para el espacio vacío que no sea clickeable */
.artist-name:empty {
    cursor: default;
    visibility: hidden;
}

.artist-name:hover:not(:empty) {
    opacity: 1;
    letter-spacing: 10px;
    transform: scale(1.05);
}

/* --- FOOTER --- */
.contact-footer {
    border-top: 1px solid #f2f2f2;
    padding-top: 80px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 35px;
}

.icon-link {
    color: #000;
    font-size: 1.6rem;
    opacity: 0.4;
    transition: 0.3s;
    text-decoration: none;
    cursor: pointer;
}

.icon-link:hover { opacity: 1; transform: translateY(-5px); }

.official-email {
    display: block;
    font-size: 1rem;
    letter-spacing: 5px;
    font-weight: 400;
    opacity: 0.6;
    margin-bottom: 40px;
}

.copyright {
    font-size: 0.6rem;
    letter-spacing: 3px;
    opacity: 0.3;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .artist-list { grid-template-columns: repeat(2, 1fr); }
    .artist-name:empty { display: none; }
}

@media (max-width: 600px) {
    .artist-list { grid-template-columns: 1fr; gap: 40px; }
    .brand-header h2 { font-size: 1.2rem; letter-spacing: 8px; }
}