/* Galería usando Flexbox */
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    background: linear-gradient(#b1e8bb 0%, #b1e8bb 5%, white 15%, white 90%, #fe9595 95%, #fe9595 100%);
}
img, button{
    user-select: none !important;
}

.contenedor {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-flow: column;
}
.superior{
    display: flex;
    width: 100%;
    background-color: #32a852;
    justify-content: center;
    align-items: center;
    flex-flow: row;
    max-height: 150px;
}
.superior > .supcon{
    display: flex;
    justify-content: center;
        display: flex;
        width: 180px;
}
.superior > .supcon > img{
    display: flex;
    justify-content: center;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
    justify-content: center;
    width: 75%;
    margin-top: 60px;
    margin-bottom: 60px;
}

.gallery-image {
    width: 400px;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 10px;
}

.gallery-image:hover {
    transform: scale(1.05);
}

/* Imagen en pantalla completa */
.fullscreen-container {
    display: none;
    /* Oculto por defecto */
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.fullscreen-container img {
    max-width: 90%;
    max-height: 90%;
    cursor: pointer;
}
button{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 350px;
    background-color: #32a852;
    border: 1px #32a852 solid;
    border-radius: 15px;
    color: white;
}
button > img{
    display: flex;
    width: 25px;
    height: 25px;
    margin-left: 5px;
    object-fit: contain;
    object-position: center;
}
button > span{
    margin-left: 5px;
    font-size: 1.2em;
}
button:hover{
    cursor: pointer;
}
.return{
    display: flex;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    padding: 5px;
    margin-top: 20px;

}
.privacy {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
    margin-bottom: 50px;
    width: 100%;
}

.privacy>span {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 1.1em;
    font-weight: 300;
    color: white;
}