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

body {
    background-image: url(../images/background-cacao.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

header {
    max-width: 1440px;
    margin: 0 auto;
    padding: .4em;
    font-family: 'Nunito', sans-serif;
    text-align: center;
    color: #985f64;
    font-size: 30px;
    font-weight: 900;
    box-sizing: border-box;
}

.navbar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-left: 40px;
    margin-right: 40px;
    margin-top: 40px;
}

.logotipo {
    display: flex;
    width: 120px;
    cursor: pointer;
    align-items: center;
    filter: brightness(100%);
}

.logotipo:hover {
    filter: none;
    filter: brightness(110%) saturate(50%);
}

ul {
    margin-top: -60px;
}

li {
    display: inline-block;
    list-style: none;
    padding: 0 10px;
}

a {
    text-decoration: none;
    font-family: 'Nunito', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #5c3046;
    transition: all 0.5s;
}

a:hover {
    color: #985f64;
}

.flex {
    display: flex;
    align-items: center;
}

h1 {
    margin-top: 80px;
    text-align: center;
    font-family: 'Nunito', sans-serif;
    font-size: 50px;
    font-weight: 900;
    color: #985f64;
}

h2 {
    text-align: center;
    font-family: 'Amatic SC', cursive;
    font-size: 60px;
    margin-bottom: 40px;
    font-weight: 700;
    color: #5c3046;
}

p {
    text-align: center;
    font-family: 'Nunito', sans-serif;
    font-size: 20px;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 50px;
    font-weight: 300;
    color: #5c3046;
}

.contenido__header {
    /* background-color: khaki; */
    align-items: center;
}

.galeria__fotos {
    height: 2000px;
    margin-left: 180px;
    margin-right: 180px;
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: auto;
    grid-template-areas: "columna1 columna2";
    /* background-color: tomato; */
}

.columna1 {
    grid-area: columna1;
}

.columna2 {
    grid-area: columna2;
}

.columna1 img, .columna2 img {
    width: 100%;
    filter: grayscale(90%) opacity(50%);
    padding: 6px;
    vertical-align: middle;
}

img:hover {
    filter: none;
    filter: saturate(1);
}

figcaption {
    display: none;
}

figure:hover figcaption {
    display: block;
}

footer {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 428px;
    background-image: url(../images/Footer.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}

.contenido_footer {
    margin-top: 260px;
}

.footer__redes {
    margin-bottom: 80px;
    text-align: center;
}

.footer_links {
    margin-bottom: 40px;
}

.a__redes {
    font-size: 30px;
    padding: 1px;
}

i {
    color: #9fe2d0;
}

i:hover {
    color: white;
}

.a__footer {
    color: white;
    font-size: 20px;
}

.a__footer2 {
    color: white;
    font-size: 10px;
}

.a__punto {
    color: white;
    font-size: 30px;
}

.terminos_privacidad {
    margin-top: 30px;
    text-align: center;
}

ol {
    text-align: center;
}

@media only screen and (min-width: 1px) and (max-width: 650px) {
    li {
        display: block;
        padding: 0 2.5px;
    }

    a {
        font-size: 20px;
    }

    ul {
        margin-top: -20px;
    }

    .logotipo {
        width: 115px;
    }

    h1 {
        margin-top: 60px;
        font-size: 35px;
    }

    p {
        font-size: 10px;
        margin-left: 10px;
        margin-right: 10px;
        margin-bottom: 0px;
    }

    .galeria__fotos {
        height: 1150px;
        margin-left: 80px;
        margin-right: 80px;
        margin-bottom: 400px;
        grid-template-columns: 100%;
        grid-template-areas:
            "columna1"
            "columna2"
        ;
    }

    footer {
        height: 107px;
    }

    .footer__redes {
        margin-bottom: 20px;
        text-align: center;
    }
    
    .footer_links {
        margin-bottom: 0px;
    }
    
    .a__redes {
        font-size: 15px;
        padding: 0px;
    }
    
    .contenido_footer {
        margin-top: 50px;
    }

    .li__footer {
        display: inline-block;
    }

    .a__footer {
        font-size: 10px;
    }

    .a__footer2 {
        font-size: 5px;
    }

    .a__punto {
        font-size: 15px;
    }

    .terminos_privacidad {
        margin-top: 10px;
    }

}

@media only screen and (min-width: 651px) and (max-width: 1024px) {
    ul {
        margin-top: -40px;
    }

    li {
        padding: 0 5px;
    }

    h1 {
        margin-top: 120px;
        font-size: 35px;
    }

    p {
        font-size: 12px;
        margin-left: 15px;
        margin-right: 15px;
        margin-bottom: 15px;
    }

    .galeria__fotos {
        height: 1150px;
        margin-left: 40px;
        margin-right: 40px;
        margin-bottom: 300px;
        grid-template-columns: 50%, 50%;
        grid-template-areas: "columna1 columna2";
        ;
    }

    footer {
        height: 214px;
    }

    .contenido_footer {
        margin-top: 100px;
    }

    .footer__redes {
        margin-bottom: 40px;
    }
    
    .footer_links {
        margin-bottom: 20px;
    }

}