:root {
    --fuente-principal: "Mazda Type Regular";
    --principal-negrita: "Mazda Type Bold";
    --fuente-secundaria: 'Playfair Display', serif;
    --cafe-nav: #795c17;
    --verde: #595f2a;
}


/* GLOBALES */

html {
    overflow-x: hidden;
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body {
    background-image: url(/img/background.png);
    background-size: cover;
    background-position: center;
    font-family: var(--fuente-principal);
    margin: 0;
}

.contenedor {
    width: 90%;
    margin: 0 auto;
    padding: 10px;
}

/* HEADER - Navegacion */

/* estilos menu hamburguesa */
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    background-color: #7c3232;
    border-radius: 0;
}

.hamburger-inner::before {
    top: -15px;
}

.hamburger-inner::after {
    bottom: -15px;
}

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

.menu-btn {
    z-index: 999;
    top: 3vh;
    right: 4vw;
}

.header {
    background: rgb(248, 229, 196);
    background: linear-gradient(0deg, rgba(248, 229, 196, 1) 0%, rgba(248, 229, 196, 0) 39%);
}

.logo-nav img {
    padding: 10px;
}

.navegacion {
    /* display: none; */
    position: fixed;
    z-index: 998;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #f8e5c4;
    width: 100%;
    transition: transform .3s ease;
    transform: translate(100%, 0);
}

.is-active.navegacion {
    transform: translate(0, 0);
}

.navegacion a {
    text-align: center;
    display: block;
    text-decoration: none;
    color: var(--cafe-nav);
    font-family: var(--fuente-secundaria);
    padding: 10px;
}

.navegacion a:first-child {
    margin-top: 30px;
}

.logo-nav-dark {
    background-color: rgb(255, 240, 218);
    -webkit-box-shadow: 0px 6px 18px -3px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 6px 18px -3px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 6px 18px -3px rgba(0, 0, 0, 0.3);
    position: fixed;
    width: 100%;
}

@media (min-width: 768px) {
    .logo-nav {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        align-items: center;
    }

    .menu {
        align-items: center;
    }

    .menu .hamburger {
        display: none;
    }

    .navegacion {
        display: block;
        position: relative;
        transform: translate(0, 0);
        background-color: #ffffff00;
    }

    .navegacion a:first-child {
        margin-left: 20px;
    }

    .navegacion a:not(:last-child)::after {
        content: '/';
        margin-left: 20px;
    }

    .navegacion a {
        display: inline;
    }
}

/* HEADER - Titulo */

.titulo {
    text-align: left;
    display: flex;
    flex-direction: column;
    max-width: 400px;
}

.titulo h1 {
    color: #b49542;
    margin-bottom: 10px;
    font-size: 40px;
}

.titulo h2 {
    background-color: var(--verde);
    color: #fff;
    font-size: 15px;
    letter-spacing: 3px;
    padding: 5px;
    margin-top: 0;
    text-align: center;
}

.titulo p {
    font-size: 30px;
    color: var(--verde);
    margin: 0;
    line-height: 1;
}

.titulo p span {
    font-family: var(--principal-negrita);
}

.img_cont {
    display: flex;
    justify-content: flex-end;
}

.imagen-slider {
    overflow: hidden;
}

.imagen-slider img {
width: 100%;
    /* height: 300px; */
}



@media (min-width: 768px) {
    .imagen-slider {
        position: absolute !important;
        top: 0;
        right: 0;
    }

    .imagen-slider img {
        height: 350px;
        position: relative;
        top: 0;
        right: 0;
    }

}

@media (min-width: 1080px) {
    .titulo {

        margin-left: 60px;
    }

    .titulo h2 {
        text-align: center;
    }

    .imagen-slider {
        position: absolute;
        top: 0;
        right: 0;
    }

    .imagen-slider img {
        position: relative;
        top: 0;
        right: 0;
        height: 100%;
    }


}

/* INFO */

.info {
    background-image: url(/img/background2.png);
    background-size: cover;
    background-position: center;
    padding-bottom: 20px;
}

.info-titulo {
    color: #fff;
    font-size: 27px;
    font-family: var(--fuente-secundaria);
    margin: 0;
    padding-top: 25px;
    line-height: 1;
}

.info-descripcion {
    color: #604400;
    margin-top: 10px;
}

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

.info-imagenes img {
    padding-right: 25px;
}


.logos2 {
    padding-top: 20px;
}

@media (min-width: 768px) {
    .texto-imagenes {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 50px;
        place-items: center;
    }

    .informacion {
        justify-content: left;
        align-items: start;
    }

    .logos2 {
        padding: 0;
    }

    .info-imagenes {
        margin-top: 160px;
    }

}

/* Footer */

.footer p {
    color: #967526;
    text-align: center;
    font-size: 12px;
    margin: 0;
}