:root {
  --liteflex-blue: #002f87;
  --liteflex-red: #ce0e2d;
  --liteflex-yellow: #f4b422;
  --whatsapp-color: #128c7e;
  --instagram-color: #c13584;
  --facebook-color: #1877f2;
  --youtube-color: #ff0000;
  --twitter-color: #1da1f2;
}

.orbitron-font {
  font-family: "Orbitron", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.saira-font {
  font-family: "Saira", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

body {
  margin: 0;
  padding: 0;
  /* height: 5000px; */
  /* overflow-x: hidden; */
  /* font-family: "Fira Sans Condensed", sans-serif !important; */
  /* font-family: "Orbitron", sans-serif !important; */
  font-family: "Saira", sans-serif !important;
  background-image: url(../img/Fondos/Fondo_002.jpg);
  background-repeat: repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: top center;
  color: #fff;
  position: relative; /* Importante para posicionar la pseudo-elemento ::before en relación al body */
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1; /* Para que esté detrás del contenido del body */
}

main {
  position: relative;
  /* background-color: #222; */
  background-color: #000;
  margin-bottom: 415px; /* este valor se asocia con el height del .main-footer */
  /* z-index: 2; */ /* Lo desactivé por problemas con los modals y le puse el z-index directamente al .parallax-footer*/
}

/* NAVBAR */
.navbar-custom {
  /* background-color: rgba(0, 0, 0, 0.7);
  margin: 5% auto;
  width: 90%;
  border-radius: 5px;
  z-index: 1000;
  opacity: 1;
  transition: opacity 0.5s; */
  /* position: absolute; */
  position: fixed;
  width: 90%;
  margin: 4% 5%;
  background-color: rgba(0, 0, 0, 0.7);
  /* border-radius: 5px; */
  padding: 5px;
  z-index: 1000;
}

.fixed-top {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0;
  border-radius: 0px;
  padding-top: 10px;
  padding-bottom: 3%;
  opacity: 1;
}

.navbar-brand img {
  max-height: 75px;
}

@keyframes sprayPaint {
  0% {
    background-position: -100% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

.navbar-nav .nav-link {
  font-size: 1em;
  /* font-weight: bold; */
  background-size: 200% 100%;
  transition: all 0.3s;
  position: relative;
  /* border-radius: 5px; */
  overflow: hidden;
}

.navbar-nav .nav-link:hover {
  color: #fff;
  background-image: linear-gradient(
    90deg,
    transparent,
    #ce0e2d,
    transparent
  ); /* Efecto de pintura en aerosol */
  animation: sprayPaint 1s forwards;
}

.navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  width: 130%;
  height: 130%;
  border: 1px solid #c0c0c0;
  top: -15%;
  left: -15%;
  z-index: -1;
  transform: rotate(0);
  transition: transform 0.5s;
}

.navbar-nav .nav-link:hover::before {
  transform: rotate(0.5turn); /* Gira el borde circularmente al hacer hover */
}

.navbar-nav .nav-item.active .nav-link {
  background-color: #ce0e2d;
  color: #fff;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

.navbarSVG {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  width: 200px;
  height: auto;
  text-align: center !important;
}
.navbarSVG_fixed {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 5%);
}

#svgLogoNavbar {
  width: 60%;
  height: auto;
}

/* Estilos específicos para móviles (<= 576px) */
@media (max-width: 576px) {
  .navbar-brand svg {
    max-height: 50px;
  }
  .navbar-custom {
    width: 100%;
    margin: 0;
    border-radius: 0px;
  }
  #svgLogoNavbar {
    width: 100%;
    height: auto;
  }
  .navbarSVG {
    position: relative;
    top: 50%;
    left: 0%;
    transform: translateX(5%);
  }
}
@media only screen and (max-width: 992px) and (min-width: 577px) {
  .navbar-brand svg {
    max-height: 50px;
  }
  .navbar-custom {
    width: 100%;
    margin: 0;
    border-radius: 0px;
  }
  #svgLogoNavbar {
    width: 100%;
    height: auto;
  }
  .navbarSVG {
    position: relative;
    top: 50%;
    left: 0%;
    transform: translateX(5%);
  }
}
/* NAVBAR */

/*GALERIA*/
.acordeon-gallery {
  /* position: relative;
  top: 0;
  left: 0;
  transform: translate(0%, -31%); */
  display: flex;
  height: 68vh;
  background: url("../img/productos/Productos_Top/BannerP_ProductosTop.webp")
    no-repeat top left;
  background-size: cover;
  /* background: radial-gradient(
    circle,
    rgb(150 176 239) 0%,
    rgba(0, 0, 0, 0.8408613445378151) 100%
  ); */
  align-items: center;
  overflow: hidden;
}

.acordeon-image {
  position: relative;
  flex: 1;
  height: 50vh;
  margin-top: 6em;
  transition: flex 0.5s, background-image 0.5s ease-in-out;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  /* filter: grayscale(75%);
  -webkit-filter: grayscale(75%); */
}
.acordeon-image:hover {
  flex: 4;
  /* filter: grayscale(0%);
  -webkit-filter: grayscale(0%); */
}
.acordeon-image:nth-of-type(1) {
  background-image: url("../img/productos/Productos_Top/ProductoTop_Masilla_01_S.webp");
}
.acordeon-image:nth-of-type(1):hover {
  background-image: url("../img/productos/Productos_Top/ProductoTop_Masilla_01.webp");
  /* animation: ease-in-out 1s infinite; */
}

.acordeon-image:nth-of-type(2) {
  background-image: url("../img/productos/Productos_Top/ProductoTop_KitFibra_02_S.png");
}
.acordeon-image:nth-of-type(2):hover {
  background-image: url("../img/productos/Productos_Top/ProductoTop_KitFibra_02.png");
}

.acordeon-image:nth-of-type(3) {
  background-image: url("../img/productos/Productos_Top/ProductoTop_BumperPaint_03_S.webp");
}
.acordeon-image:nth-of-type(3):hover {
  background-image: url("../img/productos/Productos_Top/ProductoTop_BumperPaint_03.webp");
}

.acordeon-image:nth-of-type(4) {
  background-image: url("../img/productos/Productos_Top/ProductoTop_HiloFibra_04_S.webp");
}
.acordeon-image:nth-of-type(4):hover {
  background-image: url("../img/productos/Productos_Top/ProductoTop_HiloFibra_04.webp");
}

.acordeon-image:nth-of-type(5) {
  background-image: url("../img/productos/Productos_Top/ProductoTop_CarWaterproofing_05_S.webp");
}
.acordeon-image:nth-of-type(5):hover {
  background-image: url("../img/productos/Productos_Top/ProductoTop_CarWaterproofing_05.webp");
}

/* .acordeon-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.15);
  transition: opacity 0.5s;
  opacity: 1;
}

.acordeon-image:hover::before {
  opacity: 0;
} */

/* Aviso oculto por defecto */
@keyframes sprayPaint2 {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}
.mobile-notice {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  width: 80%;
  padding: 7px 5px;
  border-radius: 5px;
  text-align: center;
  font-size: 0.8em;
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE/Edge */
  user-select: none;
  animation: sprayPaint2 2s infinite;
}

/* Estilos responsive */
@media (max-width: 768px) {
  .acordeon-gallery {
    height: auto;
    flex-direction: column;
  }
  .acordeon-image {
    height: 150px;
  }
  .acordeon-image:active {
    height: 400px;
    flex: 2;
    transition: 0.5s;
  }
  .acordeon-image:hover {
    flex: none;
  }
  .mobile-notice {
    display: block;
  }
}

/*GALERIA*/

/*CARRUSEL*/
.carrusel {
  /* position: relative;
  top: 0;
  left: 0;
  transform: translate(1%, -37%);
  width: 101%;
  border: 1px solid red; */
  position: absolute;
  top: 0px;
  width: 100%;
  transform: translate(0%, 0%);
  z-index: 0;
}
.carousel-image {
  width: 100%;
  height: 50vh;
}

.contenedor-carrusel {
  position: relative;
  max-width: 100%;
  height: 100vh;
  overflow: hidden;
}

.carrusel-deslizamiento {
  display: flex;
  background-color: #000;
  width: 300%; /* Este valor se ajustará con JavaScript */
  height: 100vh;
  transition: all 0.5s ease;
}

.carrusel-deslizamiento img,
.carrusel-deslizamiento video {
  width: 100%; /* Ajustar al ancho de su contenedor */
  height: auto; /* Permitir que el alto cambie para mantener la relación de aspecto */
  /* max-height: 100vh; */
  object-fit: cover;
  /* aspect-ratio: 16/9; */
}

.anterior,
.siguiente {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.3);
  color: #c0c0c0;
  padding: 8px;
  cursor: pointer;
}

.anterior {
  left: 20px; /* Despegado del borde izquierdo */
}

.siguiente {
  right: 20px; /* Despegado del borde derecho */
}

.puntos {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.punto {
  width: 10px;
  height: 10px;
  background-color: gray;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin: 0 2px;
}

.punto.activo {
  background-color: white;
}

@media (max-width: 767px) {
  .contenedor-carrusel {
    height: auto;
  }
  .carrusel-deslizamiento img,
  .carrusel-deslizamiento video {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .anterior,
  .siguiente {
    font-size: 1rem;
    padding: 6px;
  }
  .punto {
    width: 8px;
    height: 8px;
  }
}

/* @media screen and (max-aspect-ratio: 16/9) {
  .contenedor-carrusel {
    height: auto;
  }

  .carrusel-deslizamiento img,
  .carrusel-deslizamiento video {
    max-height: 70vh;
  }
} */

/*CARRUSEL*/

/*TESTIMONIOS*/
.slide-in-right {
  animation: slide-in-right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@keyframes slide-in-right {
  0% {
    transform: translateX(1000px);
    opacity: 0;
  }
  100% {
    /* transform: translateX(0); */
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}

.slide-out-left {
  animation: slide-out-left 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}
@keyframes slide-out-left {
  0% {
    /* transform: translateX(0); */
    transform: translate(-50%, -50%);
    opacity: 1;
  }
  100% {
    transform: translateX(-2000px);
    opacity: 0;
  }
}

/* Estilos para la sección de testimonios */
.testimonios {
  /* position: relative;
  width: 97.5vw;
  height: 40vh;
  overflow: hidden; */
  /* ESTO ESTABA BIEN*/
  /* position: absolute;
  width: 97.5vw;
  height: 40vh;
  overflow: hidden;
  top: 0;
  left: 50%;
  transform: translate(-50%, -80%); */
  position: relative;
  width: 97.5vw;
  height: 40vh;
  left: 50%;
  transform: translate(-50%, -175%);
  overflow: hidden;
}

/* .testimonio {
  text-align: center;
  width: 40%;
  height: 70%;
  border-radius: 0%;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  position: absolute;
  top: 10%;
  left: -100%;
  transform: translate(-50%, -50%);
} */
.testimonio {
  max-width: 650px;
  position: absolute;
  top: 50%;
  left: -100%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
}

/* .testimonio img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-bottom: 10px;
} */

.testimonio.slide-in-right {
  /* left: 30%; */
  left: 50%;
}
.testimonio.slide-out-left {
  /* left: 30%; */
  left: 50%;
}

@media (max-width: 767px) {
  .testimonios {
    width: 100%;
    height: auto;
  }
  .testimonio {
    width: 250px;
    top: 50%;
    left: -100%;
    transform: translate(-50%, -50%);
  }
  .testimonio img {
    width: 250px;
    height: 250px;
  }
  .testimonio.slide-in-right {
    left: 50%;
  }
  .testimonio.slide-out-left {
    left: 50%;
  }
}

/*TESTIMONIOS*/

/*CONTACTO*/
hr {
  border: 0;
  height: 1px;
  background-image: -webkit-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
  background-image: -moz-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
  background-image: -ms-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
  background-image: -o-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
}
@keyframes toastMsg {
  0% {
    transform: translateX(1000px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.toastMsg {
  animation: toastMsg 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@keyframes slide-out-right {
  0% {
    transform: translateX(0);
    opacity: 1;
  }

  100% {
    transform: translateX(1000px);
    opacity: 0;
  }
}
.slide-out-right {
  animation: slide-out-right 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}
.toastMns {
  position: fixed;
  top: 15%;
  right: 0;
  transform: translate(0%, 0%);
  width: auto;
  height: auto;
  padding: 5px;
  color: #f0f0f0;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid #000;
  border-top-left-radius: 7px;
  border-bottom-left-radius: 7px;
  z-index: 50;
}

.colCont {
  height: 65vh;
}

.heroCont {
  /* background-image: url("https://picsum.photos/1920/830?random"); */
  /* background-image: url("https://place-hold.it/1920x830"); */
  background-size: cover;
  background-position: center;
  height: 35vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 20px;
  position: relative;
}
.heroCont::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 15rem; /* puedes ajustar este valor según la intensidad de difuminado que desees */
  background: linear-gradient(
    transparent,
    rgb(0 0 0 / 85%)
  ); /* puedes ajustar el color final según el fondo de tu página */
}
.heroCont h1 {
  font-size: 2.5em;
  margin-bottom: 0.5em;
  text-shadow: 2px 2px #444444;
}
.heroCont p {
  font-size: 1.2em;
}

@media (max-width: 768px) {
  .colCont {
    height: 33.33vh;
  }
  .heroCont {
    height: 25vh;
  }
  #Capa_1 {
    /* display: none; */
    width: 70%;
    height: auto;
  }
  .toastMns {
    top: 10%;
  }
}
.tracking-in-contract {
  animation: tracking-in-contract 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) both;
}
@keyframes tracking-in-contract {
  0% {
    letter-spacing: 1em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    letter-spacing: normal;
    opacity: 1;
  }
}

/*CONTACTO*/

/*PRODUCTOS*/
.cardProd {
  width: 13.5rem;
}
.cardProd .card-body {
  background-color: rgb(0 0 0 / 50%);
  color: #f0f0f0;
}
.text-shadow {
  text-shadow: 2px 2px #444444;
}
.cardProd .card-body {
  height: 9rem;
}
@media (max-width: 768px) {
  .cardProd {
    width: 10rem;
  }
  .cardProd .card-body {
    height: 10rem;
  }
}
.slide-in-top {
  -webkit-animation: slide-in-top 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-in-top 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@-webkit-keyframes slide-in-top {
  0% {
    -webkit-transform: translateY(-1000px);
    transform: translateY(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-in-top {
  0% {
    -webkit-transform: translateY(-1000px);
    transform: translateY(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
.slit-in-horizontal {
  -webkit-animation: slit-in-horizontal 0.45s ease-out both;
  animation: slit-in-horizontal 0.45s ease-out both;
}
@-webkit-keyframes slit-in-horizontal {
  0% {
    -webkit-transform: translateZ(-800px) rotateX(90deg);
    transform: translateZ(-800px) rotateX(90deg);
    opacity: 0;
  }
  54% {
    -webkit-transform: translateZ(-160px) rotateX(87deg);
    transform: translateZ(-160px) rotateX(87deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateZ(0) rotateX(0);
    transform: translateZ(0) rotateX(0);
  }
}
@keyframes slit-in-horizontal {
  0% {
    -webkit-transform: translateZ(-800px) rotateX(90deg);
    transform: translateZ(-800px) rotateX(90deg);
    opacity: 0;
  }
  54% {
    -webkit-transform: translateZ(-160px) rotateX(87deg);
    transform: translateZ(-160px) rotateX(87deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateZ(0) rotateX(0);
    transform: translateZ(0) rotateX(0);
  }
}
/* Estilo de fondo tipo fibra de carbono */
.carbon-pattern {
  background: linear-gradient(27deg, #151515 5px, transparent 5px) 0 5px,
    linear-gradient(207deg, #151515 5px, transparent 5px) 10px 0px,
    linear-gradient(27deg, #222 5px, transparent 5px) 0px 10px,
    linear-gradient(207deg, #222 5px, transparent 5px) 10px 5px;
  background-color: #131313;
  background-size: 20px 20px;
}

/* Estilos del modal personalizado */
.carbon-modal-content {
  border: none;
  background-color: rgba(0, 0, 0, 0.85); /* Fondo oscuro semi-transparente */
  color: #fff; /* Texto blanco */
  border-radius: 5px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); /* Sombra suave alrededor del modal */
  position: relative;
  overflow: hidden; /* Oculta los reflejos que exceden los límites del modal */
}
/* Reflejo plateado superior */
.carbon-modal-content::before {
  content: "";
  position: absolute;
  left: -50%;
  top: 0;
  height: 10%; /* Altura del reflejo */
  width: 200%; /* Ancho del reflejo */
  background: linear-gradient(
    to bottom,
    rgba(192, 192, 192, 0.6),
    transparent
  ); /* Gradiente plateado */
  transform: rotate(-15deg); /* Rotación del reflejo */
  transform-origin: center top;
}

/* Reflejo plateado inferior */
.carbon-modal-content::after {
  content: "";
  position: absolute;
  left: -50%;
  bottom: 0;
  height: 10%; /* Altura del reflejo */
  width: 200%; /* Ancho del reflejo */
  background: linear-gradient(
    to top,
    rgba(192, 192, 192, 0.6),
    transparent
  ); /* Gradiente plateado */
  transform: rotate(15deg); /* Rotación del reflejo */
  transform-origin: center bottom;
}

.carbon-modal-content,
.carbon-modal-header,
.carbon-modal-body,
.carbon-modal-footer {
  border: none; /* Eliminar bordes predeterminados */
}

.carbon-modal-content .close {
  color: #fff; /* Color blanco para el botón de cerrar */
}

/* Aplicar el patrón de carbono al fondo del modal */
.carbon-modal-body {
  background: rgba(0, 0, 0, 0.85);
  position: relative;
  z-index: 1;
}

.carbon-modal-body::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.85);
  mix-blend-mode: overlay;
  border-radius: inherit;
}

.carbon-modal-body::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  border-radius: inherit;
  background-size: cover;
  mix-blend-mode: overlay;
}

.carbon-modal-header,
.carbon-modal-footer {
  border: none; /* Eliminar bordes predeterminados */
}
@media (max-width: 576px) {
  .carbon-modal-content .close {
    font-size: 1.5em;
    padding: 5px;
  }
}

.btn-liteflex {
  background-color: #002f87;
  color: #ffffff; /* Texto blanco para contraste */
  border: 2px solid #f4b422; /* Borde dorado */
  padding: 12px 25px;
  font-size: 1.1em;
  border-radius: 5px;
  position: relative; /* Para el pseudo-elemento */
  overflow: hidden; /* Para ocultar cualquier efecto que salga del borde del botón */
  transition: all 0.3s; /* Transición suave */

  /* Sombra plateada */
  box-shadow: 0 4px 8px rgba(192, 192, 192, 0.6);

  /* background-image: radial-gradient(
      circle at 10% 0%,
      rgba(255, 255, 255, 0.6),
      transparent
    ),
    radial-gradient(circle at 90% 0%, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(circle at 90% 100%, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(circle at 10% 100%, rgba(255, 255, 255, 0.6), transparent); */
}

.btn-liteflex:hover {
  background-color: #ce0e2d; /* Cambio de fondo al pasar el ratón */
  border-color: #f4b422; /* Borde dorado más brillante */
  transform: translateY(-2px); /* Levanta el botón un poco al pasar el ratón */
}

.btn-liteflex::before {
  content: "";
  position: absolute;
  top: 10%;
  right: -10%;
  bottom: 10%;
  left: -10%;
  z-index: -1;
  background: linear-gradient(
    -45deg,
    transparent 45%,
    rgba(192, 192, 192, 0.5) 45%,
    rgba(192, 192, 192, 0.5) 55%,
    transparent 55%
  );
  background-size: 30px 30px;
  transform: skewX(-25deg);
  filter: blur(2px); /* Suaviza los bordes */
  opacity: 0.5;
}

.btn-liteflex::after {
  content: "";
  position: absolute;
  top: 25%;
  left: 5%;
  width: 15%;
  height: 3px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(192, 192, 192, 0.7),
    transparent
  );
  transform: skewX(-25deg);
  filter: blur(1px); /* Suaviza los bordes */
}

.btn-liteflex:focus {
  outline: none; /* Elimina el borde predeterminado al enfocar con el teclado */
  box-shadow: 0 0 0 3px rgba(244, 180, 34, 0.5); /* Añade un resaltado dorado alrededor del botón */
}

/* Estilos para el efecto "presionado" al hacer clic */
.btn-liteflex:active {
  transform: translateY(1px);
  box-shadow: 0 2px 6px rgba(192, 192, 192, 0.6); /* Reduce la sombra al presionar el botón */
}
/* Variante Pequeña */
.btn-liteflex.btn-sm {
  /* padding: 8px 16px; */
  padding: 0.25rem 0.5rem;
  font-size: 0.875em;
}

/* Variante Mediana */
.btn-liteflex.btn-md {
  padding: 10px 20px;
  font-size: 1em; /* Tamaño de fuente estándar para la variante mediana */
}

/* Variante Grande */
.btn-liteflex.btn-lg {
  padding: 16px 32px;
  font-size: 1.25em; /* Un tamaño de fuente más grande para la variante grande */
}

.rotate-left {
  -webkit-animation: rotate-left 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955)
    both;
  animation: rotate-left 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
}
@-webkit-keyframes rotate-left {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotate-left {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.rotate-right {
  -webkit-animation: rotate-right 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955)
    both;
  animation: rotate-right 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
}
@-webkit-keyframes rotate-right {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotate-right {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.rainbow-button {
  background: linear-gradient(
    90deg,
    rgba(255, 0, 0, 1) 0%,
    rgba(245, 255, 0, 1) 16%,
    rgba(0, 255, 29, 1) 33%,
    rgba(0, 235, 255, 1) 49%,
    rgba(103, 108, 199, 1) 66%,
    rgba(255, 0, 244, 1) 83%,
    rgba(255, 0, 0, 1) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 2.5px;
}
.rainbow-button:after {
  content: attr(alt);
  background-color: #191919;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
}
.rainbow-button:hover {
  animation: slidebg 2s linear infinite;
  color: white;
}

@keyframes slidebg {
  to {
    background-position: 20vw;
  }
}

.flip-box {
  background-color: transparent;
  /* width: 250px; */
  width: 90%;
  height: 275px;

  border: 1px solid #f1f1f1;
  perspective: 1000px;
  /* Remove this if you don't want the 3D effect */
}

/* This container is needed to position the front and back side */
.flip-box-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-box:hover .flip-box-inner {
  transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-box-front,
.flip-box-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Style the front side (fallback if image is missing) */
.flip-box-front {
  background-color: #bbb;
  color: black;
}

/* Style the back side */
.flip-box-back {
  background-color: rgba(0, 0, 0, 0.75);
  /* background-color: white; */
  color: white;
  transform: rotateY(180deg);
}

/* TARJETAS HORIZONTALES */
.flip-box-hr {
  background-color: transparent;
  width: 100%;
  height: 220px;
  /* border: 1px solid #f1f1f1; */
  perspective: 1000px;
}

.flip-box-inner-hr {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-box-hr:hover .flip-box-inner-hr {
  transform: rotateX(180deg);
}

.flip-box-front-hr,
.flip-box-back-hr {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-box-front-hr {
  background-color: #aaa;
  color: black;
}

.flip-box-back-hr {
  background-color: #bbb;
  color: black;
  transform: rotateX(180deg);
}

.circuloColorCentrado {
  width: 50px;
  height: 50px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.imgHover {
  cursor: pointer;
  transition: 0.05s;
}
.imgHover:hover {
  position: absolute;
  transform: translate(-10%, -50%);
  width: 75%;
  /* transform: scale(7.5);
  left: 15%; */
  border: none !important;
  border-radius: 0px !important;
  z-index: 999;
  transition: 0.5s;
}
.centraContCard {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.centraFlex {
  display: flex;
  justify-content: center;
  align-items: center;
}
.centraImg {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.centraImg2 {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.tituloModal {
  color: #ddd;
  text-shadow: 2px 1px 3px #565656;
  font-size: 1.3em;
}
.imgDetLinea {
  transform: scale(1.3);
}
/* .imgDetLinea:hover {
  transform: scale(1.7);
  transition: transform 0.2s;
} */
.fade-in {
  -webkit-animation: fade-in 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.puff-in-bottom {
  -webkit-animation: puff-in-bottom 0.7s cubic-bezier(0.47, 0, 0.745, 0.715)
    both;
  animation: puff-in-bottom 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) both;
}
@-webkit-keyframes puff-in-bottom {
  0% {
    -webkit-transform: scale(2);
    transform: scale(2);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-filter: blur(4px);
    filter: blur(4px);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}
@keyframes puff-in-bottom {
  0% {
    -webkit-transform: scale(2);
    transform: scale(2);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-filter: blur(4px);
    filter: blur(4px);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}
.swing-in-top-fwd {
  -webkit-animation: swing-in-top-fwd 0.5s
    cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
  animation: swing-in-top-fwd 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}
@-webkit-keyframes swing-in-top-fwd {
  0% {
    -webkit-transform: rotateX(-100deg);
    transform: rotateX(-100deg);
    -webkit-transform-origin: top;
    transform-origin: top;
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
    -webkit-transform-origin: top;
    transform-origin: top;
    opacity: 1;
  }
}
@keyframes swing-in-top-fwd {
  0% {
    -webkit-transform: rotateX(-100deg);
    transform: rotateX(-100deg);
    -webkit-transform-origin: top;
    transform-origin: top;
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
    -webkit-transform-origin: top;
    transform-origin: top;
    opacity: 1;
  }
}

.jello-horizontal {
  -webkit-animation: jello-horizontal 1.1s both;
  animation: jello-horizontal 1.1s both;
  animation-delay: 0.75s;
}
@-webkit-keyframes jello-horizontal {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes jello-horizontal {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

/* ------------------ */
.custom-figure {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.custom-figure img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  opacity: 0.5;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.custom-figure:hover img {
  opacity: 1;
  transform: scale(1.2) rotate(-5deg);
}

.custom-figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #f0f0f0;
  padding: 10px;
  width: calc(100% - 20px);
  transform: translateY(40%);
  transition: transform 0.5s ease-in-out, color 0.5s ease-in-out;
}

.custom-figcaption h3 {
  margin: 0;
  text-shadow: 1px 1px 2px black;
  padding: 5px;
  transition: transform 0.5s ease-in-out, color 0.5s ease-in-out;
}

.explore-button {
  visibility: hidden;
  margin-top: 3px;
  margin-left: 5px;
  opacity: 0;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out,
    visibility 0.5s;
}

.custom-figure:hover .custom-figcaption {
  transform: translateY(-5%);
}

.custom-figure:hover .custom-figcaption h3 {
  transform: translateY(-5%);
}

.custom-figure:hover .custom-figcaption .explore-button {
  visibility: visible;
  opacity: 1;
  transform: translateY(-5%);
}

.line-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  box-sizing: border-box;
  pointer-events: none;
  padding: 3%;
}

.custom-figure:hover .line-animation {
  border-color: #ccc;
  animation: lineAnim 2s infinite;
}

.custom-figure:before,
.custom-figure:after {
  content: "";
  position: absolute;
  box-sizing: border-box;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  top: 2px;
  left: 2px;
  pointer-events: none;
}

@keyframes lineAnim {
  0% {
    border-width: 2px;
  }
  50% {
    border-width: 7px;
  }
  100% {
    border-width: 2px;
  }
}

/*PRODUCTOS*/

/*NOSOTROS*/

/*NOSOTROS*/

/* FOOTER */
.parallax-footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: auto;
  background-color: #333;
  color: #fff;
  padding: 50px 0 55px 0;
  z-index: -1;
}

.footer-bottom {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #222;
  color: #fff;
  padding: 10px 0;
}

.footer-bottom a {
  color: #fff;
}

.iconWh:hover,
.iconIg:hover,
.iconFb:hover,
.iconYt:hover,
.iconTw:hover {
  font-size: 1.3rem;
}

.iconWh:hover {
  color: var(--whatsapp-color);
}
.iconIg:hover {
  color: var(--instagram-color);
}
.iconFb:hover {
  color: var(--facebook-color);
}
.iconYt:hover {
  color: var(--youtube-color);
}
.iconTw:hover {
  color: var(--twitter-color);
}
/* FOOTER */

/* BOTÓN UP */
#btnUp {
  position: fixed;
  display: none;
  bottom: -5px;
  right: 20px;
  z-index: 100;
  padding: 10px 7px 10px 7px;
  border: none;
  border-radius: 5px;
  background-color: #ccc;
  color: #000;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s ease-in-out;
}
#btnUp.visible {
  display: block;
  opacity: 1;
}
.slide-in-bottom {
  -webkit-animation: slide-in-bottom 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
    both;
  animation: slide-in-bottom 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@-webkit-keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(1000px);
    transform: translateY(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(1000px);
    transform: translateY(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

/* BOTÓN UP */

/*ALGO INICIO*/
:root {
  --index: calc(1vw + 1vh);
  --transition: cubic-bezier(0.1, 0.7, 0, 1);
}
.items {
  display: flex;
  gap: 0.4rem;
  perspective: calc(var(--index) * 35);
}
.item {
  width: calc(var(--index) * 3);
  height: calc(var(--index) * 12);
  background-color: #222;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  filter: grayscale(1) brightness(0.5);
  transition: transform 1.25s var(--transition), filter 3s var(--transition),
    width 1.25s var(--transition);
  will-change: transform, filter, rotateY, width;
}

.item::before,
.item::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 20px;
  right: calc(var(--index) * -1);
}

.item::after {
  left: calc(var(--index) * -1);
}
.items .item:hover {
  filter: inherit;
  transform: translateZ(calc(var(--index) * 10));
}
.items .item:hover + * {
  filter: inherit;
  transform: translateZ(calc(var(--index) * 8.5)) rotateY(35deg);
  z-index: -1;
}
.items .item:hover + * + * {
  filter: inherit;
  transform: translateZ(calc(var(--index) * 5.6)) rotateY(40deg);
  z-index: -2;
}
.items .item:hover + * + * + * {
  filter: inherit;
  transform: translateZ(calc(var(--index) * 2.5)) rotateY(30deg);
  z-index: -3;
}
.items .item:hover + * + * + * + * {
  filter: inherit;
  transform: translateZ(calc(var(--index) * 0.6)) rotateY(15deg);
  z-index: -4;
}
.items .item:has(+ :hover) {
  filter: inherit;
  transform: translateZ(calc(var(--index) * 8.5)) rotateY(-35deg);
}
.items .item:has(+ * + :hover) {
  filter: inherit;
  transform: translateZ(calc(var(--index) * 5.6)) rotateY(-40deg);
}
.items .item:has(+ * + * + :hover) {
  filter: inherit;
  transform: translateZ(calc(var(--index) * 2.5)) rotateY(-30deg);
}
.items .item:has(+ * + * + * + :hover) {
  filter: inherit;
  transform: translateZ(calc(var(--index) * 0.6)) rotateY(-15deg);
}
.items .item:active,
.items .item:focus {
  width: 28vw;
  filter: inherit;
  z-index: 100;
  transform: translateZ(calc(var(--index) * 10));
  margin: 0 0.45vw;
}
.item.active {
  pointer-events: none; /* Desactivar clics */
}
/*ALGO INICIO*/

/* TITULOS */
.heroCont h1 {
  font-family: "Orbitron", sans-serif !important;
}
/* TITULOS */
