body{
    background-color: var(--negro);
}
.sitios{
    color: var(--blanco);
    background-color: #000;
    padding: 2rem;
}
.sitio__contenedor{
    display: grid;
    grid-template-areas: 'imagen texto texto texto'
                         'imagen1 imagen2 imagen3 imagen4';
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    padding-top: 3rem;
    gap: 1rem;
}
.img-diferente-1{
    border-radius: 3rem 0 0 3rem;
}
.img-diferente-2{
    border-radius: 0 3rem 3rem 0;
}
@media (max-width: 768px) {
    .img__red img{
        width: 50% !important;
    }
    .sitio_parrafo h2{
        display: none;
    }
    .sitio_parrafo p{
        text-align: center;
    }
    .img__red{
        margin-bottom: 2rem;
    }
    .sitio__contenedor{
        grid-template-areas: 'imagen imagen' 
                             'texto texto'
                             'imagen1 imagen2' 
                             'imagen3 imagen4';
        grid-template-columns: repeat(2, 1fr);  
    }
}
@media (max-width: 400px) {
    .sitio__contenedor{
        grid-template-areas: 'imagen' 
                             'texto'
                             'imagen1' 
                             'imagen2' 
                             'imagen3' 
                             'imagen4';
        grid-template-columns: 1fr;  
    }
}
.sitio_parrafo{
    grid-area: texto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.sitio_parrafo h2{
    text-align: start;
    color: var(--blanco);
    font-size:  3rem !important;
    font-family: 'Barlow Condensed', sans-serif;
}
.sitio_parrafo p{
    font-size: 1.6rem;
    color: var(--blanco) !important;
}
.sitio__contenedor p{
    font-size: 1.2rem;
    color: var(--amarillo);
}
.sitio__contenedor:nth-child(3){
    grid-area: imagen1;
}
.sitio__contenedor:nth-child(4){
    grid-area: imagen2;
}
.sitio__contenedor:nth-child(5){
    grid-area: imagen3;
}
.sitio__contenedor:nth-child(6){
    grid-area: imagen4;
}
.img__red{
    display: flex;
    justify-content: center;
    align-items: center;
    grid-area: imagen;
}
.img__red img{
    width: 75%;
}

.img-sites{
    height: 100%;
}
.sitio__contenedor:first-child{
    width: auto;
}

.card{
    background-color: transparent;
    text-decoration: none;
}
.card-diferente{
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2rem;
    text-align: start;
}
.card-text{
    color: var(--amarillo) !important;
}
@media (max-width: 768px) {
    .sitio__contenedor .card:nth-child(3) img{
        border-radius: 5rem 0 0 0;
    }
    .sitio__contenedor .card:nth-child(4) img{
        border-radius:  0 5rem 0 0;
    }
    .sitio__contenedor .card:nth-child(5) img{
        border-radius:  0  0  0 5rem;
    }
    .sitio__contenedor .card:nth-child(6) img{
        border-radius:  0 0 5rem 0;
    }
}
@media (max-width: 400px) {
    .sitio__contenedor .card:nth-child(3) img{
        border-radius: 5rem 5rem 0 0;
    }
    .sitio__contenedor .card:nth-child(4) img{
        border-radius:  0 0 0 0;
    }
    .sitio__contenedor .card:nth-child(5) img{
        border-radius:  0  0  0 0;
    }
    .sitio__contenedor .card:nth-child(6) img{
        border-radius:  0 0 5rem 5rem ;
    }
}