/* E  S  T  I  L  O  S    G  E  N  E  R  A  L  E  S  */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* <uniquifier>: Use a unique and descriptive class name  */
/* <weight>: Use a value from 100 to 900  */

.montserrat  {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

body {
    font-family: "Montserrat", sans-serif !important;
    color: #fff !important;}

/* H  E  A  D  E  R  */

.main-menu__top-inner{ background-color: #66bbcc;}

.main-menu__top ul li a { font-size: 11px;}

.main-menu__top .main-menu__contact-list img { width: 14px;}

.main-menu__top-inner { padding-top: 0; padding-bottom: 0;}

.main-menu .main-menu__list li,
.main-menu__logo { padding: 20px 0;}

.main-menu__wrapper-inner {
    background-color: #2c3f52;
}

.main-menu__logo img { max-width: 100px;}

.main-menu .main-menu__wrapper-inner .main-menu__left .main-menu__main-menu-box ul li a {
    font-family: "Montserrat", sans-serif;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
}

.main-menu__contact-list li .text p a:hover {
    color: #2c3f52;
}

.main-menu__btn { 
    background: #28ebf5;
    color: #000;
    padding: 4px 10px;
    font-family: "Montserrat",
    sans-serif; font-size: 14px;
}

.main-menu__btn:before,
.main-menu__btn:after { background-color: #fff;}

.social_links img { width: 14px; margin-right: 14px;}

.social_links { margin-right: 10px;}

.main-menu .main-menu__list>li>a::before { background-color: #28ebf5;}


/* S  L  I  D  E  R  */

.full-width-background {
    background-image: url(../images/site/slider01.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 82vh;
    display: flex;
    justify-content: left;
    align-items: center;
    overflow: hidden;
  }

.contenidoSlider { margin-left: 12%;}


.contenidoSlider h1 { 
    font-family: "Montserrat", sans-serif !important;
    font-weight: 900;
    color: #fff;
    font-size: 70px;
    opacity: 0;
    position: relative;
    animation-name: slideInFromRight;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-delay: 0.1s;
}

.contenidoSlider p { 
    font-family: "Montserrat", sans-serif !important;
    font-weight: 100;
    text-transform: lowercase;
    font-size: 36px;
    letter-spacing: 8px;
    opacity: 0;
    position: relative;
    animation-name: slideInFromLeft;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-delay: 0.6s;
}

/* Animaciones */
@keyframes slideInFromRight {
    0% {
      opacity: 0;
      transform: translateX(100%);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes slideInFromLeft {
    0% {
      opacity: 0;
      transform: translateX(-100%);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }

.active .main-slider__title { margin-left: 100px;}

.main-slider__sub-title { margin-left: 110px;}


/* Q  U  I  E  N  E  S    S  O  M  O  S  */

.about-us {
    padding-top: 55px;
    text-align: center;
    margin: auto;
    width: 60%;
}

.quienesSomos {
    margin: 0 50px;
}

/* Ocultar elementos inicialmente */
.quienesSomos h2,
.quienesSomos p,
.quienesSomos .info-box {
    opacity: 0;
    position: relative;
    transform: translateY(-20px); /* Comienza ligeramente arriba */
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

/* Esta clase se agregará cuando el elemento sea visible */
.quienesSomos.visible h2,
.quienesSomos.visible p,
.quienesSomos.visible .info-box {
    opacity: 1; /* Hacer visible */
    transform: translateY(0); /* Asegurarse de que estén en su posición final */
}

  
  .about-us h2 {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 900;
    font-size: 2rem;
    margin-bottom: 40px;
    text-transform: uppercase;
    color: #000;
  }
  
  .about-us p {
    font-size: 14px;
    margin-bottom: 35px;
    color: #000;
    line-height: 1.2em;

  }

  .about-us p strong { color: #2c3f52;}
  
  .info-box {
    border: 2px solid #90d3e0;
    border-radius: 15px;
    padding: 20px;
    /* display: inline-block; */
    margin: 50px 0;
    opacity: 0; /* Inicialmente oculto */
    transform: translateY(20px); /* Comienza ligeramente hacia abajo */
    transition: opacity 1s ease-in-out, transform 1s ease-in-out; /* Transición suave */
    
  }

  .brand-item.visible .info-box {
    opacity: 1; /* Hacer visible */
    transform: translateY(0); /* Asegurarse de que estén en su posición final */
}

  .info-box p {
    width: 90%;
    margin: auto;
    font-weight: 700;
    font-size: 14px;
  }

  .brands {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 30px;
  }
  
  .brand-item {
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;

    /* Animación inicial */
    opacity: 0; /* Inicialmente oculto */
    transform: translateX(-20px); /* Comienza desplazado hacia la izquierda */
    transition: opacity 1s ease-in-out, transform 1s ease-in-out; /* Transición suave */
  }
  
  .brand-item.visible {
    opacity: 1; /* Hacer visible */
    transform: translateX(0); /* Asegurarse de que estén en su posición final */
}

  
  .brand-item img {
    max-width: 100%;
    margin: 15px;
  }
  
  .brand-item p {
    font-size: 10px;
    color: #333;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 20px;
  }
  


/* T  I  E  N  D  A  S  */

.gradient-section {
    background: linear-gradient(to bottom, #66bccd, #c8f4fe);
    padding: 50px 0;
    display: flex;
    justify-content: center;
    gap: 70px;
    flex: 1;
  }
  
  .bannerTienda {
    width: 380px;
    height: 250px;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-items: flex-start;
    color: white;
    text-align: left;
    background-size: cover;
    background-position: center;
    opacity: 0; /* Oculto inicialmente */
    transform: translateX(-30px); /* Posición inicial fuera de la vista */
    transition: opacity 1s ease, transform 1s ease;
	    background-size: 100%;
  }
  
  .bannerTienda.bannerMinorista {
    background-image: url('../images/site/tienda.png');
  }
  
  .bannerTienda.bannerMayorista {
    background-image: url('../images/site/mayorista.png');
  }
  .bannerTienda:hover {background-size: 110%;-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-ms-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;}

  .bannerTienda h3, 
.bannerTienda p {
    font-family: "Montserrat", sans-serif;
    margin: 0;
    color: #fff;
    opacity: 0; /* Oculto inicialmente */
    transform: translateY(-20px); /* Comienza fuera de la vista */
    transition: opacity 0.6s ease, transform 0.6s ease;
}
  
  .bannerTienda h3 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 300;
  }
  
  .bannerTienda p {
    font-size: 18px;
    font-weight: 700;
  }

  /* Clases visibles para animación */
.visible {
    opacity: 1;
    transform: translateX(0); /* Volver a la posición final */
}

.visible h3, .visible p {
    opacity: 1;
    transform: translateY(0); /* Volver a la posición final */
}

  .bannerTienda h3, .caja p {
    margin: 0;
    color: #fff;
  }
  

/* F  O  O  T  E  R  */

.footerSitio {
    padding: 20px 40px;
    background-color: #fff;
    display: flex;
    text-align: left;
  }
  
  .lupe {
    font-size: 9px;
  }
  
  .lupe svg {
    width: 15px;
    margin-left: 5px;
    color: #23dae6;
  }
  
  .footerSitio { padding: 10px 40px; margin-top: 0;}

  .footerSitio a {
    color: #000;
    text-decoration: none;
  }
  
  .footerSitio a:hover {
    text-decoration: underline;
  }

  .rights {
    font-size: 9px;
    color: #000;
    margin: 0;
    margin-left: 50px;
  }

  footer p {
    color: #000;
    font-size: 9px;
    margin-left: 20px;
    }

    #wppwidget{   bottom: 40px; right: 40px; position: fixed;     top: auto;    width: 50px;z-index: 98;}
	#wppwidget .btn-whatsapp{background-color: #00d35e; -webkit-border-radius: 25px;  border-radius: 25px; -webkit-box-shadow: 3px 3px 0 0 rgba(0,0,0,0.2); box-shadow: 3px 3px 0 0 rgba(0,0,0,0.2); color: #fff;  display: block;   float: left;    height: 50px;     padding: 0; text-align: center; width: 50px;z-index: 999;}
	#wppwidget svg{ color:#fff;fill:#fff; margin: 8px;width:30px}


    /* R  E  S  P  O  N  S  I  V  E  */

    .fa-bars:before {
        color: #fff;
    }

    .mobile-nav__contact li i { background-color: #23dae6;}

    .main-menu__list li a { font-family: "Montserrat", sans-serif !important;}

    @media (max-width: 900px) {
        .bannerTienda {
            width: 300px;
            height: 200px;
            padding: 20px;
          }

          .bannerTienda h3 {
            font-size: 14px;
          }
          
          .bannerTienda p {
            font-size: 14px;
          }
    }
  

    @media (max-width: 768px) {
        .brands {
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .quienesSomos { margin: 0 10px;}
    }
    
    @media (max-width: 480px) {
.about-us {  width: 80%;}

        .brands {
            grid-template-columns: 1fr;
        }
        
        .brand-item {
            padding: 15px;
            margin-bottom: 25px;
        }
        
        .brand-item p {
            font-size: 10px;
        }

        .gradient-section {
            padding: 50px 0;
            display: block;
          }
        
        .bannerTienda { margin: auto; margin-bottom: 20px;}

        .footerSitio { display: block; text-align: center;}

        
        #wppwidget{   bottom: 10px; right: 10px;  width: 50px;}
        #wppwidget .btn-whatsapp{ height: 30px; width: 30px;}
        #wppwidget svg{ margin: 4px;width:20px}
    }