
@font-face {
  font-family: 'RedHatDisplay';
  src: url('fonts/RedHatDisplay-VariableFont_wght.ttf') format('truetype');    
  /* Puedes especificar otros formatos de fuente si deseas admitir navegadores que no sean compatibles con TTF */
}
@font-face {
  font-family: 'RedHatDisplayItalic';
  src: url('fonts/RedHatDisplay-Italic-VariableFont_wght.ttf') format('truetype');
}



#slider{
  position: relative;
  display: inline-block;
}

video{
  /* width: 100%;
  height: auto;
  display: block; */

  width: 100vw;
  height: 100vh;
  object-fit: cover;

  opacity: 1;
  transition: opacity 2s ease-in-out;
  -webkit-transition: opacity 2s ease-in-out; 
  -moz-transition: opacity 2s ease-in-out; /* Prefijo para Firefox */
  -ms-transition: opacity 2s ease-in-out; /* Prefijo para Internet Explorer */
  -o-transition: opacity 2s ease-in-out; /* Prefijo para Opera */


}

.hidden {
  opacity: 0;
}


.imagen-malla {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7; /* Ajusta la opacidad según lo desees */
  background-image: url('../../dist/images/media/mesh.png');
  background-repeat: repeat;

  backdrop-filter: blur(1px);


}

#overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  text-align: center;
  opacity: 0;
  transition: opacity 0.0s;
}

/* #overlay1{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  text-align: center;
  opacity: 0;
  transition: opacity 0.9s;
}
#overlay1.show {
  opacity: 1;
  transform: translateX(0);
} */

#overlay.show {
  opacity: 1;
}

#overlay div.ftcont{
  width: 100%;
  margin-top: 35px;
}


.text-mayus{
  text-transform: uppercase;
}
.text-italic {
  font-style: italic;
}

.fancy-text {
  /* font-family: 'Roboto', sans-serif;  */
  font-family: 'RedHatDisplayItalic', sans-serif;
  font-size: 4.5em;
  font-weight:1000;

  text-align: center;



  color: #FFF;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 2s, transform 2s;
}

.fancy-text.show {
  opacity: 1;
  transform: translateX(0);
}

#img-log-ban{
  display: block;
  margin-top: 0px;
}
#img-log-ban img{
  width: 110% !important;

}


.btn-primary-ot{
  font-family: 'RedHatDisplay', sans-serif;
  border-radius: 35px;
  padding: 15px 45px;
  font-size: 24px;
  font-weight: bold;
  color: #222 !important;
  border: none;
  background-image: linear-gradient(#ada312, #afa515, #a19811);
}


#btn-productos-ban{
  margin-top: 30px;
  /* margin-left: 0px; */
  scroll-behavior: smooth;    
}


.btn-primary-ot-cl{
  font-family: 'RedHatDisplay', sans-serif;
  border-radius: 35px;
  padding: 14px 40px;
  font-size: 20px;
  font-weight: bold;
  color: #ada312 !important;
  border: none;
  background:linear-gradient(#272727, #2f2f33, #2d3636);
  width: 100% !important;
  margin-bottom: 20px; 
}
.btn-primary-ot-cl:active{
  background:linear-gradient(#111, #222, #111);
  color: #c0b410 !important;
  box-shadow:tomato;
}

.btn-active{
  background:linear-gradient(#111, #222, #111);
  color: #c0b410 !important;
  box-shadow:tomato;
}



/*************************************************/
/****   EFECTO FILTROS CATEGORIA PRODUCTOS   *****/
/*************************************************/

.product-item{
  transition: all .4s;
}


/*************************************************/
/************    BURBUJA WHATSAPP    *************/
/*************************************************/

/* Estilos para el botón */
.whatsapp-boton {
  position: fixed;
  bottom: 20px; /* Ajusta según tu preferencia */
  right: 20px; /* Ajusta según tu preferencia */
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  font-size: 24px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  animation: notificacion 1s infinite alternate; 
  z-index: 9999;

}

/* Animación de notificación */
@keyframes notificacion {
  from { transform: scale(1); }
  to { transform: scale(1.2); }
}

/* @keyframes chat-popup-fade-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
} */

.whatsapp-boton:hover {
  /* transform: scale(1.3); */
}

/* Estilos CSS para la ventana emergente del chat */
.chat-popup {
  /* padding:20px; */
  display: none;
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 340px;
  background-color: #fff;
  /* border: 1px solid #ccc; */
  border-radius: 10px;
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
  /* overflow: hidden; */
  z-index: 9999;

  /* transform:scale(0); */
  transform:translateY(100px);
  opacity:0;


  /* animation: chat-popup-fade-in 0.5s ease forwards; */
  transition: all .5s;
}

.triangle {
  position: absolute;
  bottom: -8px;
  right: 35px; /* ajusta según necesites */
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #ddd;
}



/*------- Mobile dvices -----------*/


@media only screen and (min-width:5px) and (max-width:920px) {
  video{
    width: 100%;
    height: 100%;
    display: block;
  }

  .fancy-text {
    font-size: 2em;
  }

  #overlay div.imgcont{
    display: none;
  }

  #overlay div.ftcont{
    width: 100%;
    margin: 0;
  }

  #img-log-ban{
    display: none;
  }
  #btn-productos-ban{
    display: none;
    transition: opacity 2s, transform 2s;

  }

  .portfolio-modal .modal-content {
    width: 110% !important;
    margin: 0 0 0 -20px !important;
    padding: 35px 0px 0px 0px;
  }

  iframe{
    width: 100% !important;
  }

}
