body {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    box-sizing: border-box;
}

.barra-opciones {
    background-color: #000000;
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.barra-opciones ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}


.barra-opciones ul a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    margin-right: 20px;
}

.barra-opciones ul :hover {
    color: #007bff;
}

.barra-opciones ul a li {
    padding: 10px 0;
}

.barra-opciones ul a:last-child {
    margin-right: 0;
}

.logo img {
    width: 250px;
    height: auto;
}

.barra-opciones .logo {
    display: flex;
    align-items: center;
}

.barra-opciones .logo .icon {
    width: 30px;
    height: 30px;
    background-color: #007bff;
    border-radius: 50%;
    margin-right: 10px;
}

.barra-opciones .logo .text-logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #333;
}

.barra-opciones .redes-sociales {
    display: flex;
    align-items: center;
}

.barra-opciones .redes-sociales a {
    margin-left: 15px;
}

.barra-opciones .redes-sociales a:first-child {
    margin-left: 0;
}

.barra-opciones .redes-sociales .icono-red-social {
    width: 30px;
    height: 30px;
}

h2 {
    text-align: center;
    font-size: 40px;
}

/* Galería profesional */
.artistas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 40px;
    background-color: #ffffff;
}

.artista-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
}

.artista-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.artista-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease-in-out;
    border-radius: 12px;
}

.artista-card:hover img {
    transform: scale(1.05);
}

.artista-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    font-size: 1.5em;
    font-weight: bold;
    text-align: center;
    padding: 10px;
    border-radius: 12px;
}

.artista-card:hover .overlay {
    opacity: 1;
}



.estudio {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 40px;
    background-color: #ffffff;
}

.estudio-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
}

.estudio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.estudio-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease-in-out;
    border-radius: 12px;
}

.estudio-card:hover img {
    transform: scale(1.05);
}

.estudio-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    font-size: 1.5em;
    font-weight: bold;
    text-align: center;
    padding: 10px;
    border-radius: 12px;
}

.estudio-card:hover .overlay {
    opacity: 1;
}



.urbano {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 40px;
    background-color: #ffffff;
}

.urbano-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
}

.urbano-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.urbano-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease-in-out;
    border-radius: 12px;
}

.urbano-card:hover img {
    transform: scale(1.05);
}

.urbano-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    font-size: 1.5em;
    font-weight: bold;
    text-align: center;
    padding: 10px;
    border-radius: 12px;
}

.urbano-card:hover .overlay {
    opacity: 1;
}

.footer-content {
    background-color: #000000;
    color: white;
    padding: 20px;
    text-align: center;
}

.footer-social {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

/* Estilos generales ya existentes... */

/* Diseño responsive */
@media (max-width: 1200px) {
    .artista {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .estudio {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .urbano {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .barra-opciones {
        flex-wrap: wrap;
        padding: 10px;
    }

    .barra-opciones ul {
        flex-direction: column;
        align-items: flex-start;
    }

    .barra-opciones ul a {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .barra-opciones .logo img {
        width: 200px;
    }
}

@media (max-width: 768px) {
    .artista {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .estudio {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .urbano {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .barra-opciones {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .barra-opciones ul {
        flex-direction: column;
        align-items: center;
    }

    .barra-opciones ul a {
        margin-bottom: 10px;
    }

    .barra-opciones .logo img {
        width: 150px;
    }

    h2 {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .artista-card {
        box-shadow: none;
        border-radius: 8px;
    }

    .artista-card img {
        border-radius: 8px;
    }

    .estudio-card {
        box-shadow: none;
        border-radius: 8px;
    }

    .estudio-card img {
        border-radius: 8px;
    }

    .urbano-card {
        box-shadow: none;
        border-radius: 8px;
    }

    .urbano-card img {
        border-radius: 8px;
    }

    .barra-opciones {
        padding: 5px;
    }

    .barra-opciones .logo img {
        width: 120px;
    }

    h2 {
        font-size: 24px;
    }
}