/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.google.com/share?selection.family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;
  
  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --white-color: hsl(0, 100%, 100%);
  --black-color: hsl(0, 100%, 100%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Kanit", sans-serif;
  --biggest-font-size: 2rem;
  --big-font-size: 1.5rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-semi-bold: 600;
  --font-bold: 700;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1150px) {
  :root {
    --biggest-font-size: 4rem;
    --big-font-size: 3rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
.main {
    overflow: hidden;
  }
  

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--black-color);
  color: var(--white-color);
  margin: 0; 
  padding: 0;
}

.header::before {
    content: " ";
    display: block;
    margin-bottom: 80px;
}


.header-hero {
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 800px;
    position: relative;
    display: grid;
    grid-template-rows: 100px 1fr;
    color: #fff;
}

.header-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 105%;
    background-image: linear-gradient(180deg, #0182ec93 0%, #0000008c 100%), url('../img/Toda\ la\ compa.jpg');
    background-size: cover;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 95%, 0 80%);
    z-index: -1;
}

header::before {
    content: " ";
    display: block;
    margin-bottom: 80px;
}

/*Particulas JS diseño*/
#particles-js{
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: -1;
}



/* Hero container */
/* Ensure z-index of hero__container is above particles.js */
.hero__container {
    max-width: 800px;
    --padding-container: 0;
    display: grid;
    grid-auto-rows: max-content;
    align-content: center;
    gap: 1em;
    padding-bottom: 100px;
    text-align: center;
    margin-top: 10%; /* Adjusted margin */
    margin-left: auto; /* Centered the container */
    margin-right: auto; /* Centered the container */
    z-index: 1; /* Ensure it's above particles.js */
    position: relative;
}

/* Add background and adjustments to make text visible */
.header-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 105%;
    background-image: linear-gradient(180deg, #0182ec93 0%, #0000008c 100%), url('../img/produtos2.jpg');
    background-size: cover;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 95%, 0 80%);
    z-index: -1;
}

.titulo-1{
    justify-content: center;
    text-align: center;
    margin-top: 15%;
    font-size: var(--big-font-size);
}

.parrafo-box{
    margin-top: 17%;
}
.parrafo-2{
    justify-content: center;
    text-align: center;
    margin-right: 2%;
    font-size: var(--h3-font-size);
}

.cta {
    background-color: #2091F9;
    color: #fff;
    text-decoration: none;
    padding: 13px 30px;
    border-radius: 32px;
    z-index: 1;
    margin-left: 44%;
    
}

.cta-pro{
  background-color: #2091F9;
  color: #fff;
  text-decoration: none;
  padding: 13px 30px;
  border-radius: 32px;
  z-index: 1;
  margin-left: 39%;
}

/*Prueba de animacion*/

.animacion-zoom {
  opacity: 0;
  transform: scale(0.5);
  transition: all 1s ease-in-out;
}

.animacion-zoom.show {
  opacity: 1;
  transform: scale(1);
}




/*NAV-BAR O Barra de navegación*/

.nav {
    position: fixed;
    height: var(--header-height);
    display: flex;
    justify-content:space-around;
    align-items: center;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.692),rgba(0, 110, 255, 0.671)); /* Fondo oscuro opaco */
    width: 100%;
    transition: top 0.3s ease; /* Transición suave */
    z-index: 100;
    
  }
  
.nav__logo img{
  width: 113px;
  margin-top: 5px;

}
     
  .nav__close, 
  .nav__toggle {
    display: flex;
    color: var(--white-color);
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  /* Navigation for mobile devices */
  @media screen and (max-width: 1150px) {

    .nav{
      width: 110%;
      margin-left: -3%;
    }
    .nav__menu {
      position: fixed;
      left: -100%;
      top: 0;
      background-color: rgba(3, 122, 233, 0.473);
      width: 100%;
      height: 100%;
      padding: 6rem 3.5rem 4.5rem;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: left .4s;
      backdrop-filter: blur(5px); /*Para el efecto BLUR es necesario dejar el background con el RGBA y el color ya se modifica a gusto :3*/
    }
  
    .nav__item {
      transform: translateX(-150px);
      visibility: hidden;
      transition: transform .4s ease-out, visibility .4s;
    }
  
    .nav__item:nth-child(1) {
      transition-delay: .1s;
    }
    .nav__item:nth-child(2) {
      transition-delay: .2s;
    }
    .nav__item:nth-child(3) {
      transition-delay: .3s;
    }
    .nav__item:nth-child(4) {
      transition-delay: .4s;
    }
    .nav__item:nth-child(5) {
      transition-delay: .5s;
    }
  }
  
  .nav__list, 
  .nav__social {
    display: flex;
  }
  
  .nav__list {
    flex-direction: column;
    row-gap: 3rem;
  }
  
  .nav__link {
    position: relative;
    color: var(--white-color);
    font-size: var(--h1-font-size);
    font-weight: var(--font-semi-bold);
    display: inline-flex;
    align-items: center;
    transition: opacity .4s;
  }
  
  .nav__link i {
    font-size: 2rem;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s, visibility .4s;
  }
  
  .nav__link span {
    position: relative;
    transition: margin .4s;
  }
  
  .nav__link span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background-color: var(--white-color);
    transition: width .4s ease-out;
  }
  
  /* Animation link on hover */
  .nav__link:hover span {
    margin-left: 2.5rem;
  }
  
  .nav__link:hover i {
    opacity: 1;
    visibility: visible;
  }
  
  .nav__link:hover span::after {
    width: 100%;
  }
  
  /* Sibling fade animation */
  .nav__list:has(.nav__link:hover) .nav__link:not(:hover) {
    opacity: .4;
  }
  
  .nav__close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
  }
  
  .nav__social {
    column-gap: 1rem;
  }
  
  .nav__social-link {
    color: var(--white-color);
    font-size: 1.5rem;
    transition: transform .4s;
  }
  
  .nav__social-link:hover {
    transform: translateY(-.25rem);
  }
  
  /* Show menu */
  .show-menu {
    left: 0;
  }
  
  /* Animation link when displaying menu */
  .show-menu .nav__item {
    visibility: visible;
    transform: translateX(0);
  }

  .scroll-up {
    transform: translateY(0);
    transition: transform 0.3s ease-in-out;
}

.scroll-down {
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
}

  
  
  /* Show menu */
  
  .show-menu{
    right: 0;
  }

  ul {
    list-style: none;
  }
  
  a {
    text-decoration: none;
  }

  
  /*=============== BREAKPOINTS ===============*/
/* For large devices */
@media screen and (min-width: 1150px) {
    .container {
      margin-inline: auto;
    }
  
   
    .nav__toggle, 
    .nav__close {
      display: none;
    }
  
    .nav__link {
      font-size: var(--normal-font-size);
    }
  
    .nav__link i {
      font-size: 1.5rem;
    }
  
    .nav__list {
      flex-direction: row;
      column-gap: 3.5rem;
    }
  
    .nav__menu {
      display: flex;
      align-items: center;
      column-gap: 3.5rem;
    }
  }

  /*=============== BREAKPOINTS ===============*/
/* For medium devices */

@media screen and (min-width: 768px) {

    .nav__menu{
      width: 50%;
    }
    
  }
  
  
  /* For large devices */
  
  @media screen and (min-width: 1150px) {
  
    .nav{
      height: calc(var(--header-height) + 1rem);
    }
  
    .nav__toggle,
    .nav__close{
      display: none;
    }
  
    .nav__menu{
      width: initial;
    }
    .nav__list{
      flex-direction: row;
      column-gap: 4rem;
    }
  

  }

 
  /*=====RESPONSIVE======*/

  @media screen and (max-width:600px) {

    .header-hero::before {  
      background-image: linear-gradient(150deg, #0182ec93 0%, #0000008c 100%), url('../img/Toda\ la\ compa.jpg');
      background-position: center;  
  }

    .titulo-1{
      margin-top: 210px;
    }
  
    .parrafo-box{
      margin-top: 210px;
    }

    .cta{
      margin-left: 38%;
    }

    .informacion-img video{
      display: none;
    }

   .informacion{
    padding: 40px 20px;
    margin-right: 110px;
   }

   .informacion-txt{
    text-align: center;
    text-align:center;
   }

  
   .center{
    display: none;
   }
  }

  @media screen and (max-width: 800px) {
    /* results */

    .conten-results {
      flex-direction: column-reverse;
  }

  .results-text>a {
      margin-bottom: 60px;
  }

  .numbers {
      width: 100%;
      /* justify-content: space-between; */
  }

  .results-text {
      width: 100%;
      text-align: center;
  }

  /*Scroller infinity*/

  .scroller{
    max-width: 60%;
  }

  .cta-pro{
    margin-left: 28%;
  }

  /* About us */

  .articulo {
    width: 55%;
}

.numbers {
  width: 100%;
  /* justify-content: space-between; */
}

.results-text {
  width: 100%;
}
    
}

@media screen and (max-width: 500px) {

  /* ABOUT US */

  .imagen-about-us{
    margin-bottom: 60px;
    width: 70%;
}

  
}






@media (max-width: 500px) {
  header {
    padding: 1em;
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;
  }
  header ul {
    flex-direction: column;
  }
  header li {
    width: min-content;
    margin-right: 0;
  }
}

/*=====Nuevo footer para la parte de inicio======*/

footer{
  width: 100%;
  background: linear-gradient(to right,#00093c, #152c3b);
  color: #fff;
  padding: 50px 0 30px;
  font-size: 13px;
  line-height: 20px;
}
.row{
  width: 85%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
.col{
  flex-basis: 25%;
  padding: 10px;
}
.col:nth-child(2), .col:nth-child(3){
  flex-basis: 15%;
}
.footer_logo{ /*El general y la 45001*/
  width: 90px;
  position: relative;
  top: -23px;
  left: -18px;
}
/*individualizar logos ISO*/


.footer_logo:nth-child(1){ /*ISO 9001*/
  width: 262px;
  left: -64px;
}

.footer_logo:nth-child(2){ /*ISO 45001*/
  width: 20px;
  
}

.footer_logo:nth-child(3){ /*ISO 14001*/
  margin-left: 7px;
  width: 80px;
}

.footer_about-codigo{
  position: relative;
  top: -50px;
  margin-left: 2px;
  font-weight: 500;
}

.footer_about{
  position: relative;
  top: -23px;
}
.col h3{
  width: fit-content;
  margin-bottom: 40px;
  position: relative;
}
.footer_email{
  width: fit-content;
  border-bottom: 1px solid #34a1fa;
  margin: 20px 0;
}
.col ul li{
  list-style: none;
  margin-bottom: 12px;
}
.col ul li a{
  text-decoration: none;
  color: #fff;
}
.col form{
  padding-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #1379ff;
  margin-bottom: 50px;
}
.col form .icon{
  font-size: 18px;
  margin-right: 10px;
}
.col form input{
  width: 100%;
  background: transparent;
  color: #ccc;
  border: 0;
  outline: none;
}
.col form button{
  background: transparent;
  border: 0;
  outline: none;
  cursor: pointer;
}
.col form button .icon_right{
  font-size: 16px;
  color: #ccc;
}
.col .social_icons .social_icon{
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-size: 20px;
  color: #fff;
  background: linear-gradient(to top,rgb(0, 102, 255), rgb(34, 34, 34));
  margin-right: 15px;
  padding: 5px;
  cursor: pointer;
}
hr{
  width: 90%;
  border: 0;
  border-bottom: 1px solid #ccc;
  margin: 20px auto;
}
footer .copyright{
  text-align: center;
}
.bottom_line{
  width: 100%;
  height: 5px;
  background: #767676;
  border-radius: 3px;
  position: absolute;
  top: 25px;
  left: 0;
  overflow: hidden;
}
.bottom_line span{
  width: 15px;
  height: 100%;
  background: #3572f6;
  border-radius: 3px;
  position: absolute;
  top: 0;
  left: 10px;
  animation: moveline 2s linear infinite;
}
@keyframes moveline{
  0%{
      left:-20px;
  }
  100%{
      left:100%;
  }
}

@media (max-width:500px){
  .bottom_line{
    margin-top: 20px;
  }
}

/*Diseño de la estructura de los productos*/


.wrap{
	max-width: 1100px;
	width: 90%;
	margin: auto;
    
}

.wrap > h1{
	color: #0053ee;
	font-weight: 400;
	display: flex;
	flex-direction: column;
	text-align: center;
	margin: 15px 0px;
}

.wrap > h1:after{
	content: '';
	width: 100%;
	height: 2px;
	background: #C7C7C7;
	margin: 20px 0;
}

.store-wrapper{
	display: flex;
	flex-wrap: wrap;
}

.category_list{
	display: flex;
	flex-direction: column;
	width: 18%;
    
    
}

.category_list .category_item{
	display: block;
	width: 90%;
	padding: 15px 0;
	margin-bottom: 20px;
	background: #1b42ec;
    border-radius: 20px;
	text-align: center;
	text-decoration: none;
	color: #fff;
}

.category_list .ct_item-active{
	background: #2D3E50;
}

/* PRODUCTOS ============*/

.products-list{
	width: 82%;
	display: flex;
	flex-wrap: wrap;
}

.product-item{
  overflow: hidden; 
  position: relative; 
  transition: transform 0.3s ease; 
}

.product-item{
  color: black;
}
.product-item:hover {
  transform: scale(1.1);
}

.products-list .product-item{
	width: 22%;
	margin-left: 3%;
	margin-bottom: 25px;
	box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.22);
    border-radius: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	align-self: flex-start;

	transition: all .4s;
}

.products-list .product-item img{
	width: 100%;
}

.products-list .product-item a{
	display: block;
	width: 100%;
	padding: 8px 0;
	background: #0038d1;
    border-radius: 20px;
	color: #fff;
	text-align: center;
	text-decoration: none;
}

/* RESPONSIVE */

@media screen and (max-width: 1100px){
	.products-list .product-item{
		width: 30.3%;
	}
}

@media screen and (max-width: 900px){
	.category_list,
	.products-list{
		width: 100%;
	}

	.category_list{
		flex-direction: row;
		justify-content: space-between;
	}

	.category_list .category_item{
		align-self: flex-start;
		width: 15%;
		font-size: 14px;
	}

	.products-list .product-item{
		margin-left: 4.5%;
	}

	.products-list .product-item:nth-child(3n+1){
		margin-left: 0px;
	}
}

@media screen and (max-width: 700px){
	.category_list{
		flex-direction: column;
	}
	.category_list .category_item{
		width: 100%;
		margin-bottom: 10px;
	}
}

@media screen and (max-width: 600px){

	.products-list .product-item{
		width: 47.5%;
	}

	.products-list .product-item:nth-child(3n+1){
		margin-left: 4.5%;
	}

	.products-list .product-item:nth-child(2n+1){
		margin-left: 0px;
	}

  .category_list{
    display: none;
  }

}

@media screen and (max-width: 350px){
	.products-list .product_item{
		width: 100%;
		margin-left: 0px;
	}
}

/**/

.slider-carro main{
  position: relative;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    width: 1100px;
    height: 570px;
    border-radius: 20px;
    overflow: hidden;
    -webkit-box-shadow: -7px 10px 111px -33px rgba(0,0,0,0.75);
    -moz-box-shadow: -7px 10px 111px -33px rgba(0,0,0,0.75);
    box-shadow: -7px 10px 111px -33px rgba(0,0,0,0.75);
    background: linear-gradient(90deg, rgba(167,162,244,1) 0%, rgba(112,112,143,1) 35%, rgba(166,149,13,1) 100%, rgba(0,212,255,1) 100%);
}

.menu-text{
  display: flex;
  gap:50px;
  font-weight: 600;
  color:white;
}
.juice-text{
  z-index: 1;
}
h1{
  text-align: center;
  color:white;
}
.juice-info{
  text-align: center;
  margin-top: 20px;
  color: white;
}
button{
  font-size: 18px;
  padding: 10px 30px;
  border-radius: 15px;
  background-color: transparent;
  border: 1px solid white;
  color:white;
  cursor: pointer;
}
.content{
  display: flex;
  flex-direction: column;
  width: 50%;
  gap:80px;
  margin: 30px;
}
.juice-wrapper{
  width: 90px;
  height: 120px;
  padding-bottom:10px ;
  z-index: 1;
}
.static-juice{
  width: 100%;
  height: 100%;
  cursor:pointer;
  
}
.photos{
  display: flex;
  margin-left: 20px;
}
.activePhoto{
  border-bottom: 2px solid white;
}
.juice-wheel{
  width: 500px;
  height: 500px;
  border-radius: 50%;
  position: absolute;
  right:-280px;
  bottom:-300px;
  transform: rotate(-45deg);
  transition: transform 1s;
  z-index: 1;
}
.juice-wheel img{
  width: 320px;
}
.dynamic-juice-1{
  position: absolute;
 top:-350px;
 right:90px;
}
.dynamic-juice-2{
  position: absolute;
  transform: rotate(90deg);
  right:-290px;
  top:30px;
}
.dynamic-juice-3{
  position: absolute;
  transform: rotate(180deg);
  bottom:-350px;
  right:83px;
}
.dynamic-juice-4{
  position: absolute;
  transform: rotate(-90deg);
  top:30px;
  left:-290px
}
.fruits-wheel{
  width: 700px;
  height: 700px;
  border-radius: 50%;
  position: absolute;
  top:-600px;
  left:-480px;
  transform: rotate(-45deg);
  transition: transform 1s;
  z-index: 0;

}
.fruits-wheel img{
  width: 650px;
  opacity: 40%;
}
.dynamic-fruits-1{
  position: absolute;
  transform: rotate(90deg);
  bottom: -500px;
  left:10px;

}
.dynamic-fruits-2{
  position: absolute;
  transform: rotate(180deg);
  bottom: 200px;
  left:-580px;
}
.dynamic-fruits-3{
  position: absolute;
  transform: rotate(100deg);
  top: -350px;
  left:90px; 

}
.dynamic-fruits-4{
  position: absolute;
  bottom: 120px;
  right:-600px; 
}

.fade-in {
  animation: fadeIn 1.5s forwards;
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}


/* Dropdown Button */
.nav__link.dropdown-toggle {
  background-color: #00000000; /* Black background */
  color: #fff; /* White text */
  border-radius: 20px;
  border: none; /* No border */
  cursor: pointer; /* Pointer cursor on hover */
}

/* Dropdown Content (Hidden by Default) */
.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #000; /* Black background */
  min-width: 60px;
  border-radius: 20px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.021);
  z-index: 1;
}

.dropdown-item{
  position: relative;
    color: var(--white-color);
    font-size: var(--h1-font-size);
    font-weight: var(--font-semi-bold);
    display: inline-flex;
    align-items: center;
    transition: opacity .4s;
    padding: 20px;
}

/* Show the dropdown menu on hover */
.nav__link.dropdown-toggle:hover.dropdown-menu {
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-item:hover {
  background-color: #007bff; /* Blue background */
  color: #fff; /* White text */
  border-radius: 20px;
}



  
   



  
   