*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


@font-face {
    font-family: "Glacial Indifference";
    src: url("../../../ASSETS/FONTS/GlacialIndifference/GlacialIndifference-Regular.otf");
}

@font-face {
    font-family: "Brittany";
    src: url("../../../ASSETS/FONTS/Brittany/BrittanySignature.ttf");
}

.section-1{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.boxGallery {
    display: flex;
    flex-wrap: wrap;
    width: 90%;
    justify-content: space-around;
}

.boxPicture{
    position: relative;
    width: 350px;
    overflow: hidden;
    height: 350px;
    margin-bottom: 2rem;
}

/* Estilo para imagenes visibles */
.boxPicture.visible {
    opacity: 1;
    transform: translateY(0);
}

.hidden{
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    display: none;
}


.boxImgBlog{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 55%;
    height: 500px;
    padding: 2rem;
}

.imgGallery{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition-duration: .4s;
}

.imgGallery:hover{
    filter: brightness(.5);
}

.btnVerMasPicture{
    position: absolute;
    top: 150%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Brittany";
    font-size: 30px;
    transition-duration: .4s;
    background-color: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
}

.btnVerMasPicture:hover{
    letter-spacing: 4px;
}

.btnVerMasPicture_Active{
    top: 50%;
}

.arrowPicture{
    animation: arrowPicture infinite 1s forwards;
}

@keyframes arrowPicture{
    0%{
        margin-left: 0;
    }
    50%{
        margin-left: 10px;
    }
    100%{
        margin-left: 0;
    }
}


.buttonBoxContent{
    display: inline-block;
    position:relative;
    width: auto;
    flex: 20%;
    z-index: 100;
    cursor: pointer;
    padding: 10px;
}

.btnLeerMasContent{
    width:180px;
    height:40px;
    position:relative;
    color:#ffffff;
    background-color: transparent;
    letter-spacing:1px;
    border:none;
    font-size:12px;
    outline:none;
    font-family: "Glacial Indifference";
    background-color: #000000;
    padding: 0 5px;
}

.linkBtnContent{
    display: inline-block;
    margin-top: 1rem;
}


/* FIRST BUTTON */

.borderContent{
    position:absolute;
    background:none;
    transition:all .5s ease-in-out;
}

#buttonBoxContent>.borderContent:nth-of-type(1){
    top:0;
    left:0;
    border-left:1px solid rgb(0, 0, 0);
    border-top:1px solid rgb(0, 0, 0);
    width:30px;
    height:30px;
}

#buttonBoxContent>.borderContent:nth-of-type(2){
    bottom:0;
    right:0;
    border-right:1px solid rgb(0, 0, 0);
    border-bottom:1px solid rgb(0, 0, 0);
    width:30px;
    height:30px;
}

#buttonBoxContent:hover .borderContent{
    width:102%;
    height:105%;
}


/* Loader (spinner) */

.boxLoader{
    width: 100%;
}

.hiddenLoader{
    display: none;
}

.loader {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #000000;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

/* Animación del spinner */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}