/* 1. RESETEO Y OPTIMIZACIÓN */
    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    body {
        font-family: Arial, sans-serif;
        background-color: #ffffff;
        overflow-x: hidden;
        text-rendering: optimizeSpeed;
    }

    /* 2. PORTADA */
    .hero-banner-fix {
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        display: block !important;
        margin-top: -10px !important; 
        margin-bottom: 20px;
        min-height: 200px;
        background: #eee;
    }

    .hero-banner-fix img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    /* 3. TÍTULO */
    .section-title {
        text-align: center;
        font-size: 42px;
        font-weight: bold;
        font-style: italic;
        margin-bottom: 40px;
        color: #000000;
        text-transform: uppercase;
    }

    /* 4. ANIMACIÓN DE SCROLL (REVEAL) */
    @keyframes reveal {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* 5. CUADRÍCULA */
    .pro-team-container {
        display: flex;
        flex-wrap: wrap; 
        justify-content: center; 
        max-width: 1200px;
        margin: 0 auto;
        gap: 20px; 
        padding: 0 20px 40px 20px;
    }

    .artist-card {
        flex: 1; 
        min-width: 200px; 
        max-width: 220px; 
        text-align: center;
        display: flex;
        flex-direction: column; 
        margin-bottom: 30px;
        
        /* --- ESTA ES LA ANIMACIÓN DE SCROLL --- */
        view-timeline-name: --card;
        view-timeline-axis: block;
        animation-name: reveal;
        animation-fill-mode: both;
        animation-timeline: --card;
        animation-range: entry 10% cover 30%;
        /* -------------------------------------- */
    }

    .artist-image-wrap {
        width: 100%;
        height: 300px; 
        margin-bottom: 20px;
        overflow: hidden; 
        border-radius: 15px; 
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        background: #f4f4f4;
    }

    .artist-image-wrap img {
        width: 100%;
        height: 100%; 
        object-fit: cover; 
        display: block;
        transition: transform 0.3s ease;
    }

    .artist-card:hover .artist-image-wrap img {
        transform: scale(1.05);
    }

    .artist-name {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 5px;
    }

    .artist-team {
        font-size: 14px;
        color: #555555;
        text-transform: uppercase;
    }

    .artist-social a {
        font-size: 14px;
        color: #777777;
        text-decoration: none;
    }

    @media (max-width: 768px) {
        .section-title { font-size: 30px; }
        .artist-card { min-width: 140px; flex: 1 1 40%; }
        .artist-image-wrap { height: 200px; }
    }
