:root{
    /*colores*/
    --blanco: #fff;
    --negro: #000;
    --grisFondo: #f9f9f9;
    --grisBorder: #ffffff;
    --colorBoton: #ae00ff;

    /*fuente*/
    --fuentePrincipal: 'Roboto', sans-serif;
    --fuenteSecundaria: 'Raleway', sans-serif;
    --fuenteAlternativa: 'Lato', sans-serif;
    --fuenteOpens: 'Open Sans', sans-serif;
    --fuentePro: 'Source Sans Pro', sans-serif;

    /*sobras*/
    --sombra: -2px 1px 13px -4px rgba(0,0,0,0.49);
    --sombra-img: -2px 4px 16px 4px rgba(0,0,0,0.49);
    --sombraParallax: 0px 10px 21px -1px rgba(0,0,0,0.59);

    /*border-radius*/
    --borderRadius: 8px;
}
*, *::after, *::before{
    box-sizing: border-box;
}

html{
    box-sizing: inherit;
}

body{
    font-family: 'Roboto', sans-serif;
    background-color: var(--grisFondo);
    background-image: url(../images/FONDO.jpg);
    background-size: auto 100vh;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
}

ul{ list-style: none; padding: 0; }
a{display: block; color: #000; text-decoration: none;}
h1{font-size: 2.6rem}
h2{font-size: 2.4rem}
h3{font-size: 2.2rem}
h4{font-size: 2rem}

img{width: 100%;}
p{font-family: var(--fuentePro);
    font-size: 25px !important;
text-align: justify !important;}
/*contenedor*/
.contenedor{
    max-width: 1400px;
    margin: 0 auto;
}

/*hero*/
.hero{
    background-image: url(../images/hero-bg.jpg);
    height: 100vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: grid;
    grid-template-rows: repeat(3, 1fr)
    
}

.hero .logo{
    grid-row: 2 / 3;
}
.hero .logo img{
    width: 30vw;
    margin-left: auto;
    margin-right: auto;
    margin-top: -10%;
    display: block;
}
@media screen and ( max-width: 1200px ){
    .hero .logo img{
        width: 40vw;
    }
}
@media screen and ( max-width: 900px ){
    .hero .logo img{
        width: 60vw;
    }
}

.play{
   display: block;
   margin: 0 auto;
   margin-top: 1rem;
   color: #fff;
   font-size: 3rem;
   background-color: transparent;
   border: none;
   transition: .4s ease-in-out;
}
.play img{
    width: 90px !important;
}

.play:hover{
    transform: scale(1.2);
}

.play:focus{
    outline: none;
}
.video{
    display: none;
    position: relative;
    background-color: var(--negro);
    max-width: 750px;
    margin: 0 auto;
    padding: 0.5rem 0;
    border-radius: var(--borderRadius);
    box-shadow: var(--sombra-img);
}

.back{
    position: absolute;
    bottom: -80px;
    left: 27%;
    color: #fff;
    font-size: 2.5rem;
    opacity: .8;
    transition: .3s ease-in-out;
    width: 70px !important;
}
.back:hover{
    opacity: 1;
}
.next{
    position: absolute;
    bottom: -80px;
    right: 27%;
    color: #fff;
    font-size: 2.5rem;
    opacity: .8;
    transition: .3s ease-in-out;
    width: 70px !important;
}

.next:hover{
    opacity: 1;
}

@media screen and ( max-width: 768px){
    .next, .back, .play img{
        width: 70px !important;
    }
    .next, .back, .play img{
        width: 40px !important;
    }
    .next, .back{
        bottom: -55px;
    }
}
/*---------------------nav hero-----------------------------*/

.navbar-azul {
    background-color: #214791;
    color: white;
    padding: 10px 20px; /* Ajusta el padding si es necesario */
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.navbar-azul .logo img {
    height: 60px; /* Ajusta el tamaño del logo si es necesario */
    width: auto;
    background: white;
    border-radius: 50%;
}

.hamburguesa{
    position: fixed;
    right: 0;
    top: 0px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 100;
    transition: opacity .25s ease;
    margin: 0.5rem;
}

.hamburguesa:hover{
    opacity: .7;
}


img.active.activo{
    margin-top: 10px;
    height: 35px;
    width: 35px;
}

/*------------------------quienes somos----------------------*/
.contenedor-somos{
    display: grid;
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto;
}

.somos{
    grid-column: 1/ 3;
    background: var(--grisBorder);
    padding: 0 40px;
    font-size: 1.9rem;
    border: solid 1px var(--grisBorder);
    -webkit-box-shadow: var(--sombra);
    -moz-box-shadow: var(--sombra);
    box-shadow: var(--sombra);
    margin-top: 50px;
    font-weight: 300;
    border-radius: var(--borderRadius);
}

.somos h1{
    grid-row: 1 / 2;
    text-transform: capitalize;
    font-weight: 500;
    text-align: center;
}
.somos p{
    grid-row: 2 / 3;
    font-weight: 300;
    font-size: 1.2rem;
}

/*contenedor-mision*/
.contenedor-mision{
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat( auto-fit, minmax(360px, 1fr) );
    grid-gap: 1rem;
}


/*vision*/
.vision{
    background: var(--grisBorder);
    display: grid;
    grid-template-rows:  auto auto;
    font-size: 1.9rem;
    border: solid 1px var(--grisBorder);
    -webkit-box-shadow:  var(--sombra);
    -moz-box-shadow:  var(--sombra);
    box-shadow:  var(--sombra);
    padding-left: 0;
    text-align: left;
    grid-gap: .5rem;
    border-radius: var(--borderRadius);
    margin-top: 2rem;
}
@media screen and (min-width: 1245px){
    .vision{
        margin-bottom: 2rem;
    }
    }

@media screen and (max-width: 1245px){
.vision:last-child{
    margin-bottom: 2rem;
}
}

.vision .img{
    grid-row: 1 / 2;
}

.vimg{
    width: 80%;
    height: 300px;
    margin: -5% 10% -5% 10%;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 10px 10px;
    -webkit-box-shadow:  var(--sombra-img);
    -moz-box-shadow:  var(--sombra-img);
    box-shadow:  var(--sombra-img);
}
.img-mision{
    background-image: url(../images/mision2.jpg);
    background-size: cover;
    background-position: center;
}
.img-vision{
    background-image: url(../images/vision2.jpg);
    background-size: cover;
    background-position: center;
}
.img-filosofia{
    background-image: url(../images/compromiso.jpg);
    background-size: cover;
    background-position: center;
}

.vision .description{
    grid-row: 2 / 3;
    padding: 0 1.5rem;
}

.vision .description h3{
    font-size: 1.5rem
}

.vision .description p{
    font-size: 1rem;
    font-weight: 200;
}

.vision h4{padding-top: 30px;}

/*valores*/
.about h2{
    text-align: center;
    margin: 2px;
    color: var(--blanco);
    font-size: 3rem !important;
    font-weight: 700 !important;
    text-shadow: 2px 5px 13px #630C72;
}

.img-amor{
    background-image: url(../images/valores/valorentendimiento.jpg);
}
.img-valorcambio{
    background-image: url(../images/valores/valorcambio.jpg);
}
.img-valorentendimiento{
    background-image: url(../images/valores/valoramor.jpg);
}


/*pilares*/

.parallax{
    background-image: url(../images/hero-bg.jpg);
    background-size: cover;
    background-attachment: fixed;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.pilares{
    background-color: rgba(255, 255, 255, 1);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    border-radius: var(--borderRadius);
    -webkit-box-shadow: var(--sombraParallax);
    -moz-box-shadow: var(--sombraParallax);
    box-shadow: var(--sombraParallax);
}

.pilares h3, h4, p{
    margin: 10px;
}
.pilares h3{
    font-size: 2.1rem !important;
    text-transform: uppercase;
}

.pilares h4{ font-size: 1.5rem; }

.pilares p{
    line-height: 25px;
}

/* AguaEnergia */
.agua-energia{
    margin: 40px 0;
}

/*kosher*/
.contenedor-kosher{max-width: 900px; margin: 0 auto;}
.kosher{margin-bottom: 2rem;padding-bottom: 25px;position: relative;}

.kosher img{
    /* position: absolute; */
    /* top: -3.5rem; */
    /* width: 18%; */
    /* padding-bottom: 10rem; */
    /* left: 39%; */
}

.kosher p{ margin-top: 1.5rem;}

@media screen and ( max-width: 1400px ){

    .kosher img{
        width: 18%;
    }
}
@media screen and ( max-width: 1200px ){

    .kosher img{
        top: -3.3rem;
        width: 18%;
    }
}
@media screen and ( max-width: 1000px ){

    .kosher img{
        top: -3.3rem;
        width: 17%;
    }
}
@media screen and ( max-width: 800px ){

    .kosher img{
        top: -3rem;
        width: 20%;
    }
}
@media screen and ( max-width: 700px ){

    .kosher img{
        top: -3rem;
        width: 25%;
    }
}

@media screen and ( max-width: 500px ){

    .kosher img{
        top: -2.5rem;
        width: 30%;
    }
}

/*frecuencia*/
.frecuencia-parallax{
    background-image: url(../images/432.jpg);
    background-attachment: fixed;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.frecuencia h3{
    font-size: 2rem;
}

/* afirmacion*/

.afirmacion-parallax{
    background-image: url(../images/afirmacion.jpg);
    background-attachment: fixed;
    background-size: cover;
    padding-top: 4rem;
    padding-bottom: 4rem;
}


/*margen*/
.margen{
    /* margin-top: 3.2rem;
    margin-bottom: 3.2rem; */
}

/*procuctos*/
.contenedor-productos{
    /* display: grid; */
    /* grid-template-columns: auto;  */
    /* grid-template-rows: 1fr; */
    margin: 0 auto;  
}

.description{
    margin-top: 40px;
}

#cafe{
    margin-top: 80px;
}




/*ingredientes*/
.contenedor-ingredientes{ max-width: 1500px; margin: 0 auto; }

.ingredientes{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1rem;

}

@media screen and (max-width: 1195px ){
    .ingredientes{
        grid-template-columns: 1fr;
    }
}

.ingrediente{
    background-image: url(../images/mancha.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 5rem;
    max-height: 620px;
    min-height: 620px;
    position: relative;
    margin: 10px 0;
    max-width: 620px;
    min-width: 620px;

}

.ingrediente p{
    font-size: 1.52rem !important;
    text-align: center !important;
   margin-top: 0;
   margin-left: 5%;
   margin-right: 5%;
    
}

.ingrediente h3{ 
    text-align: center; 
    margin-top: 13%; 
    margin-bottom: 13px; 
}

.botones img, .botones a{
    /* max-width: 460px; */
    /* max-width: 250px !important; */
    width: 300px !important;
}
.botones{display: flex;justify-content: space-evenly;flex-wrap: wrap;align-content: space-around;justify-items: center;}
@media screen and (max-width: 1194px ){
    .ingrediente{
        max-width: 760px;
        min-width: 760px;
        max-height: 760px;
        min-height: 760px;
    }
    .ingrediente p{
        font-size: 1.7rem !important;
        margin-top: 7%;
        margin-left: 5%;
        margin-right: 5%;
    }
    .ingrediente h3{
        font-size: 2rem !important;
    }
}
@media screen and (max-width: 768px ){
    .ingrediente{
        max-height: 520px;
        min-height: 520px;
        max-width: 520px;
        min-width: 520px;
    }
    .ingrediente p{
        font-size: 1.2rem !important;
        margin-top: 7%;
        margin-left: -1%;
        margin-right: -1%;
    }
    
    .ingrediente h3{
        font-size: 1.7rem !important;
    }
}
@media screen and (max-width: 528px ){
    .ingrediente{
        margin: auto 0;
        max-height: 360px;
        min-height: 360px;
        max-width: 360px;
        min-width: 360px;
    }
    .ingrediente p{
        font-size: .8rem !important;
        margin-top: 13%;
        margin-left: -13%;
        margin-right: -13%;
    }
    
    .ingrediente h3{
        margin-top: 0;
        font-size: 1rem !important;
    }
}






/*bobino*/
.bovino h3::before{
    content: '';
    background-image: url(../images/compuestos/bobino.png);
    background-size: contain;
    position: absolute;
    width: 70px;
    height: 70px;
    left: 45%;
    top: -30px;
}

/*cisteina*/
.cisteina h3::before{
    content: '';
    background-image: url(../images/compuestos/cisteina.png);
    background-size: contain;
    position: absolute;
    width: 70px;
    height: 70px;
    left: 45%;
    top: -30px;
}
/*bobino*/
.caprino h3::before{
    content: '';
    background-image: url(../images/compuestos/caprino.png);
    background-size: contain;
    position: absolute;
    width: 70px;
    height: 70px;
    left: 45%;
    top: -30px;
}

/*bobino*/
.resveratrol h3::before{
    content: '';
    background-image: url(../images/compuestos/resveratrol.png);
    background-size: contain;
    position: absolute;
    width: 70px;
    height: 70px;
    left: 45%;
    top: -30px;
}

.lucidum h3::before{
    content: '';
    background-image: url(../images/compuestos/GANODERMA.png);
    background-size: contain;
    position: absolute;
    width: 70px;
    height: 70px;
    left: 45%;
    top: -30px;
}

.shiikate h3::before{
    content: '';
    background-image: url(../images/compuestos/SHIIKATE.png);
    background-size: contain;
    position: absolute;
    width: 70px;
    height: 70px;
    left: 45%;
    top: -30px;
}

.morel h3::before{
    content: '';
    background-image: url(../images/compuestos/MOREL.png);
    background-size: contain;
    position: absolute;
    width: 70px;
    height: 70px;
    left: 45%;
    top: -30px;
}

/*frase*/
.frase img{
   height: 80vh;
}

.frase2{
    display: flex;
    flex-direction: column;
    background-image: url(../images/family.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    height: 70vh;
    justify-content: center;
}

.frase2 h3,
.frase h3
{
    margin: 2px;
    color: var(--blanco);
    text-align: center;
    font-size: 3rem !important;
    font-weight: 700 !important;
    text-shadow: 2px 5px 13px #630C72;
}




.sociales ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    flex:1 0 auto;
    list-style: none;
}
.sociales ul li {
    margin-left: 1.5rem;
}
.sociales ul li:last-of-type {
    margin-right: 0;
}
.sociales ul li a {
    text-decoration: none;
}
.sociales ul li a:before {
    font-family: "Font Awesome 5 Brands";
    color:  var(--blanco);
    text-shadow: 2px 5px 13px #000000;
    font-size: 1.8rem;
}
.sociales ul li a[href*='facebook.com']::before {
    content: "\f082";
}

.sociales ul li a[href*='whatsapp.com']::before {
    content: "\f40c";
}
.sociales ul li a[href*='youtube.com']::before {
    content: "\f431";
}

.sociales ul li span{
    display: none;
}

/*boton*/
.boton-flotante{
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    background: var(--blanco);
    padding: .5rem;
    color: var(--negro);
    text-decoration: none;
    box-shadow: 0px 13px 19px -10px rgba(0, 0, 0, 0.52);
}

.boton-flotante.activo{
    background-color: var(--colorBoton);
    color: var(--blanco);
}

.imagen-redonda {
    width: 200px; /* Puedes ajustar este valor según necesites */
    height: 200px; /* Puedes ajustar este valor según necesites */
    border-radius: 50%; /* Esto hace que la imagen sea redonda */
    border: 2px solid white; /* Esto agrega un marco blanco de 2px */
    box-shadow: 0px 0px 10px black; /* Esto agrega un sombreado negro */
    object-fit: cover; /* Esto asegura que la imagen se ajuste adecuadamente dentro del círculo */
    display: inline-block; /* Esto asegura que la imagen se trate como un bloque en línea y los estilos se apliquen correctamente */
    overflow: hidden; /* Esto asegura que cualquier parte de la imagen fuera del círculo se oculte */
    left: 38%;
    position: absolute;
    top: -40px;
}
.texto-dos-columnas {
    display: flex;
    flex-wrap: wrap;
    /* gap: 2px; */
    /* column-count: 3;          Esto crea dos columnas */
    column-gap: 30px;
    /* grid-auto-columns: auto; */
    /* column-gap: 30px;        Espacio entre columnas */
    text-align: center;     /* Justifica el texto para que se vea más uniforme en las columnas */
    font-size: 14px;
    justify-content: center;
}

.nombres-equipo{
    text-align: center !important;
    font-weight: 600 !important;
    font-size: 20px !important;
    margin: auto;
}

.footer-azul {
    background-color: #001837;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Asegura que los elementos se ajusten si no hay suficiente espacio */
}

.footer-azul .datos-contacto p {
    margin: 5px 0;
}

.footer-azul .redes-sociales {
    display: flex; /* Esto hará que los íconos se muestren horizontalmente */
    gap: 30px;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    margin: auto;
}

.footer-azul .redes-sociales a {
    margin: 0 10px;
    color: white;
    text-decoration: none;
    font-size: 40px; /* Aumenta el tamaño de los íconos */
}

.footer-azul .redes-sociales a:hover {
    opacity: 0.8;
}

.btn-articulo {
    background-color: #c07204;
    color: white;
    padding: 10px 20px;
    border: none;
    font-size: 25px;
    /* margin: 10px; */
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-articulo:hover {
    background-color: #2980b9;
}

