*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    scroll-behavior: smooth;
}

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville&family=Mali&family=Stalemate&display=swap');


/* BarNav y Logo */
.contenedor{
    width: 90%;
    max-width: 1200px;
    overflow: hidden;
    margin: auto;
    padding: 60px 0;
}

.hamburguer{
    position: fixed;
    top: 30px;
    left: 30px;
    background: white;
    width: 150px;
    height: 150px;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(0,0,0,.5);
}

.menu-navegacion{
    position: fixed;
    top: 0;
    padding: 20px;
    left: 0;
    width: 30vw;
    background-image: linear-gradient(to right, #f4e6d3 0%, #e3ce8d 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    transition: .5s ease-in;
    transform: translate(-100%);

    box-shadow: 0 0 6px rgba(0,0,0,.5);
    cursor: pointer;
}

.spread{
    transform: translate(0%);
}

.listas{
    display: inline-block;
    font-size: 30px;
    padding: 6px;
    font-family: 'Libre Baskerville';
}

.listas a{
    color: #554d08;
    list-style: none;
    margin-left: 5px;
    width: max-content;
}

/* Titulo */
.contenedor-header{
    height: 100vh;
    background-image: linear-gradient(to top, rgba(230, 186, 128, 0.471) 0%, rgba(234, 205, 163, 0.489) 100%), url(fondo.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.title{
    font-size: 60px;
    color: white;
    background-color: #d9b855dc;
    box-shadow: 0 0 6px rgba(0,0,0,.5);
    padding: 10px;
    border-radius: 10px;
    font-family: serif;
    text-align: center;
    margin-bottom: 10px;
}

.titulo{
    font-size: 100px;
    background-color: #f0cb59;
    padding: 15px;
    border-radius: 10px;
    text-transform: uppercase;
    font-family: serif;
    text-align: center;
}

.titulo:hover{
    color: white;
    background-color: #60570d;
}

.subtitulo{
    text-align: center;
    font-family: 'Segoe UI' bold;
    font-weight: 300;
    color: #554d08;
    margin-bottom: 40px;
    font-size: 80px;
}
/* Galería */
.gallery{
    background-color: white;
}

.caja{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.fotos{
    width: 30%;
    display: block;
    margin: 30px auto;
    box-shadow: 0 0 6px rgba(0, 0, 0, .5);
    cursor: pointer;
}

.imagen-light{
    position: fixed;
    background: rgba(0, 0, 0, .5);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translate(100%);
    transition: transform .2 ease-in-out;
}

.show{
    transform: translate(0);
}

.agregar-imagen{
    width: 40%;
    border-radius: 10px;
    transform: scale(0);
    transition: transform .3s .2s;
}

.showImage{
    transform: scale(1);
}

.close{
    position: absolute;
    top: 15px;
    right: 15px;
    width: 60px;
    cursor: pointer;
}

/* Información */
.info-impor{
    background-color: rgba(241, 211, 121, 0.674);
    padding: 20px;
    border-radius: 20px;
}

.copy-info{
    font-size: 25px;
}

/* Call to action */
.cajita-final{
    margin: 15px 15px;
    background-color: #60570d;
    font-size: 30px;
    padding: 10px;
    border-radius: 60px;
    text-align: center;
    color: white;
}

/* Copyrigth */
.texto-final{
    padding: 15px;
    margin-top: 20px;
    background: #f0cb59;
    text-align: center;
    font-size: 20px;
}

/* Boton Whatsapp*/
#whatsapp{
    position: fixed;
    bottom: 20px;
    right: 10px;
}

svg{
    width: 60px;
    filter: drop-shadow(0 1px 4px rgba(0,0,0,.4));
}

circle {
    fill: #000;
}

path {
    fill: #1ecf18;
}

/* Tamaño para dispositivos */
@media screen and (max-width: 700px){
    .menu-navegacion{
        width: 70vw;
    }

    .hamburguer{
        width: 100px;
        height: 100px;
    }

    .listas a{
        font-size: 20px;
    }

    .title{
        font-size: 30px;
        text-align: center;
    }

    .titulo{
        font-size: 40px;
        text-align: center;
    }

    .subtitulo{
        font-size: 35px;
    }

    .agregar-imagen{
        width: 90%;
    }

    .fotos{
        width: 45%;
        margin: 5px 1px;
    }

    .cajita-final{
        font-size: 25px;
    }

    #whatsapp{
        position: fixed;
        bottom: 10px;
        right: 10px;
    }
    
    svg{
        width: 45px;
    }

    .texto-final{
        font-size: 15px;
    }
}