* {
    box-sizing: border-box;
}

@font-face {
    font-family: 'Exo Bold';
    src: url('../fonts/Exo-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Exo Light';
    src: url('../fonts/Exo-Light.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

body {
    background: white;
    margin: 0;
    /*font-family: monospace;*/
}

h1 {
    color: #444;
    text-align: center;
}



/* Barra de Iconos */
.icons-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    max-width: 350px;
    margin: 30px auto 0px;
    /* padding: 20px; */
}

.box {
    width: calc(20% - 20px);
    /* 20% de espacio menos 20px de espacio entre los elementos */
    text-align: center;
    margin-bottom: 2.5rem;
}

.box .content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.box .content span {
    margin-top: 5px;
    white-space: nowrap;
    font-size: var(--text-peque);
}

.box img {
    width: 100px;
    /* Ancho máximo de la imagen */
    height: 20px;
    /* Altura ajustada automáticamente */
}


/* Galleria de Imagenes */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 300px;
    padding-bottom: 20px;
    grid-gap: 18px;
    width: 100%;
    text-shadow: -2px -2px 0px #000, 2px 2px 0px #000, 2px -2px 0px #000, -2px 2px 0px #000;

}

.gallery__item {
    position: relative;
}

.gallery__item:not(.no-hover) .gallery__img {
    filter: blur(0.5px) brightness(80%);
}

.gallery__item:hover .gallery__img {
    filter: none;
}

.no-hover {
    filter: none !important;
}



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

.gallery__title {
    font-family: 'Exo Bold';
    text-transform: uppercase;
    position: absolute;
    bottom: 0;
    color: white;
    background: linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, 1));
    width: 100%;
    font-size: var(--text-grande);
    margin: 0;
    padding: 10px;
}

.gallery__item:nth-child(1) {
    /* grid-column-start: span 2;  */
    grid-row-start: span 2;
}

.gallery__item:nth-child(4) {
    grid-column-start: span 2;
}

.gallery__item:nth-child(6) {
    grid-row-start: span 2;
}

.gallery__item:nth-child(8) {
    grid-row-start: span 1;
    grid-column-start: span 2;
}



@media(min-width:768px) {
    .icons-container {
        margin: 20px auto 0px;
        max-width: 600px;
    }

    .box img {
        height: 20px;
        /* Altura ajustada automáticamente */
    }

    .gallery-container {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 300px;
    }

    .gallery__title {
        font-size: var(--text-extra-xxg);
    }

    .gallery__item:nth-child(4) {
        grid-column-start: span 2;
    }

    .gallery__item:nth-child(6) {
        grid-column-start: span 2;
        grid-row-start: span 1;
    }

    .gallery__item:nth-child(7) {
        grid-column-start: span 2;
        /* grid-row-start: span 2;   */
    }

    .gallery__item:nth-child(8) {
        grid-column-start: span 1;
    }


}

@media(min-width:993px) {
    .box .content span {
        font-size: var(--text-mediano);
    }

    .icons-container {
        margin: 25px auto 0px;
    }

    .gallery-container {
        grid-template-columns: repeat(4, 1fr);
        margin: auto;
    }

    .gallery__item:nth-child(1) {
        grid-row-start: span 2;
    }

    .gallery__item:nth-child(3) {
        grid-column-start: span 2;
    }

    .gallery__item:nth-child(4) {
        grid-column-start: span 2;
    }

    .gallery__item:nth-child(6) {
        grid-column-start: span 2;
    }

    .gallery__item:nth-child(7) {
        grid-column-start: span 1;
    }

}

@media(min-width:1280px) {
    .icons-container {
        margin: 30px auto 0px;
    }

    .box img {
        height: 30px;
        /* Altura ajustada automáticamente */
    }

}




