*{
    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: 'Libre Baskerville';
    font-weight: 300;
    color: #554d08;
    margin-bottom: 40px;
    font-size: 80px;
}

/* Sobre Nosotros */
.cont-dry-fruit{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.cont-dry-fruit img{
    width: 40%;
}

.checklist{
    width: 60%;
}

p{
    font-size: 18px;
}

.dry-fruit{
    margin-bottom: 20px;
    background-color: rgba(255, 236, 181, 0.549);
    padding: 20px;
    border-radius: 20px;
}

.n-fruit{
    margin-bottom: 10px;
    color: #554d08;
    font-size: 25px;
}

.number{
    display: inline-block;
    background-image: linear-gradient(120deg, #f6d365 0%, #fda085 100%);
    width: 30px;
    height: 30px;
    color: black;
    text-align: center;
    border-radius: 50%;
    font-weight: 700;
    line-height: 30px;
    margin: 5px;
}

/*Beneficios*/
.cont-beneficio{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.cont-beneficio img{
    width: 40%;
}

.checklist-bene{
    width: 60%;
}

.beneficio-fruit{
    margin-bottom: 20px;
    background-color: rgba(255, 236, 181, 0.549);
    padding: 20px 20px;
    border-radius: 20px;
    margin: 20px;
}

.bene-fruit{
    margin-bottom: 10px;
    color: #554d08;
    font-size: 30px;
    text-align: center;
}

.bene{
    font-size: 18px;
}

.contenido-bene{
    margin: 15px 15px;
    background-color: #60570d;
    font-size: 30px;
    padding: 10px;
    border-radius: 60px;
    text-align: center;
    color: white;
    width: 100%;
}

.bene-text{
    font-size: 25px;
}
/* Mis Productos */
.producto-dry{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.fruit{
    top: 30px;
    left: 300px;
    background: transparent;
    width: 150px;
    height: 200px;
    font-size: 20px;
    justify-content: center;
    align-items: center;
    text-align: center;
    cursor: pointer;
    border-radius: 10%;
    margin: auto;
    margin-bottom: 20px;
    box-shadow: 0 0 6px rgba(0,0,0,.5);
}

/* Contacto */
.social-media{
    color: #554d08;
    display: inline-block;
    margin-left: 20px;
    text-align: start;
    font-family: 'Libre Baskerville';
}

.social-instagram{
    color: #554d08;
    font-size: 30px;
}

.linea{
    margin-bottom: 15px;
    padding: 1px;
    box-shadow: 0 0 6px rgba(0,0,0,.5);
}

.social-media i{
    font-size: 30px;
    margin: 5px 10px;
}

.lista-pago{
    color: #554d08;
    list-style: none;
    font-size: 25px;
    margin-left: 10%;
}

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


/* Tamaño 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: 50px;
    }

    .cont-dry-fruit img{
        width: 100%;
    }
    
    .checklist{
        width: 100%;
    }
   
    .cont-beneficio img{
        width: 100%;
    }
    
    .checklist-bene{
        width: 100%;

    }

    .contenido-bene{
        width: 90%;
        font-size: 25px;
    }
    
    .fruit{
        top: 30px;
        left: 300px;
        background: transparent;
        font-size: 15px;
        width: 150px;
        height: 200px;
        justify-content: center;
        align-items: center;
        text-align: center;
        cursor: pointer;
        border-radius: 10%;
        margin: auto;
        margin-bottom: 20px;
        box-shadow: 0 0 6px rgba(0,0,0,.5);
    }

    .social-instagram{
        font-size: 25px;
    }

    .linea{
        margin-bottom: 15px;
        padding: 2px;
        width: 95%;
        box-shadow: 0 0 6px rgba(0,0,0,.5);
    }

    .social-media i{
        font-size: 25px;
        margin: 5px 10px;
    }

    .lista-pago{
        color: #554d08;
        list-style: none;
        font-size: 25px;
        margin-left: 10%;
    }

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

}





