/*
@font-face {
  font-family: "Founders Grotesk";
  src: url("../../assets/fonts/FoundersGrotesk-BoldItalic.woff2")
      format("woff2"),
    url("../../assets/fonts/FoundersGrotesk-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Founders Grotesk";
  src: url("../../assets/fonts/FoundersGrotesk-Bold.woff2") format("woff2"),
    url("../../assets/fonts/FoundersGrotesk-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Founders Grotesk";
  src: url("../../assets/fonts/FoundersGrotesk-Light.woff2") format("woff2"),
    url("../../assets/fonts/FoundersGrotesk-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Founders Grotesk";
  src: url("../../assets/fonts/FoundersGrotesk-LightItalic.woff2")
      format("woff2"),
    url("../../assets/fonts/FoundersGrotesk-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Founders Grotesk";
  src: url("../../assets/fonts/FoundersGrotesk-MediumItalic.woff2")
      format("woff2"),
    url("../../assets/fonts/FoundersGrotesk-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Founders Grotesk";
  src: url("../../assets/fonts/FoundersGrotesk-Regular.woff2") format("woff2"),
    url("../../assets/fonts/FoundersGrotesk-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Founders Grotesk";
  src: url("../../assets/fonts/FoundersGrotesk-Medium.woff2") format("woff2"),
    url("../../assets/fonts/FoundersGrotesk-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Founders Grotesk";
  src: url("../../assets/fonts/FoundersGrotesk-RegularItalic.woff2")
      format("woff2"),
    url("../../assets/fonts/FoundersGrotesk-RegularItalic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Founders Grotesk";
  src: url("../../assets/fonts/FoundersGrotesk-SemiboldItalic.woff2")
      format("woff2"),
    url("../../assets/fonts/FoundersGrotesk-SemiboldItalic.woff") format("woff");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Founders Grotesk";
  src: url("../../assets/fonts/FoundersGrotesk-Semibold.woff2") format("woff2"),
    url("../../assets/fonts/FoundersGrotesk-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
*/

html,
body {
  font-family: "Manrope", sans-serif;
  font-weight: normal;
  font-style: normal;
}

a {
  text-decoration: none; /* Eliminar el subrayado */
  color: inherit; /* Hereda el color del elemento padre */
}

a:focus,
a:hover {
  text-decoration: none; /* Eliminar subrayado en hover y focus */
  color: inherit; /* Mantener el color original en hover */
}

.navbar {
  height: 96px;
}

.navbar-brand {
  text-decoration: none; /* Eliminar el subrayado */
  color: inherit; /* Heredar el color del texto del elemento padre */
}

.navbar-brand:focus,
.navbar-brand:hover {
  text-decoration: none; /* Eliminar subrayado en hover y focus */
  color: inherit; /* Mantener el color original en hover */
}

.menu-item a {
  color: #fbfbfb;
  margin: 0 20px;
}

.cont-decoration {
  height: 92px;
}

.navbar-decoration {
  background: url("../../assets/img/decoracion.png") no-repeat center center;
  transition: opacity 0.3s ease; /* Para un cambio suave */
  top: -4px;
  left: 361px;
  width: 466px;
  height: 98px;
  z-index: 0;
  /* UI Properties */
}


/* Background colors */
.bg-blue-dark {
  background-color: #101820;
}

.bg-search-section{
  background-image: url("../../assets/img/patrn.svg");
  background-position-y: 42px;
  background-repeat: repeat-x;
}

.bg-gray-light {
  background-color: #b4b9bc;
}

.bg-white {
  background-color: #ffffff;
}

.bg-dark-gray {
  background-color: #2b3641;
}

.bg-light-gray {
  background-color: #fbfbfb;
}

.bg-gray {
  background-color: #c1c5c8;
}

.bg-dark-gray-alt {
  background-color: #707070;
}

.bg-gray-darker {
  background-color: #616161;
}

.bg-transparent-dark {
  background-color: #2b364100;
}

.bg-blue {
  background-color: #0087a8 !important;
}

.bg-green {
  background-color: #4bcb74 !important;
}

.bg-red {
  background-color: #f41938 !important;
}

.bg-dark {
  background-color: #101920 !important;
}

.bg-light-black {
  background-color: #0000001c;
}

/* Text colors */
.cl-blue-dark {
  color: #101820 !important;
}

.cl-gray-light {
  color: #b4b9bc;
}

.cl-white {
  color: #ffffff;
}

.cl-dark-gray {
  color: #2b3641;
}

.cl-light-gray {
  color: #fbfbfb !important;
}

.cl-gray {
  color: #c1c5c8;
}

.cl-dark-gray-alt {
  color: #707070;
}

.cl-gray-darker {
  color: #616161;
}

.cl-transparent-dark {
  color: #2b364100;
}

.cl-blue {
  color: #0087a8;
}

.cl-green {
  color: #4bcb74;
}

.cl-red {
  color: #f41938;
}

.cl-light-black {
  color: #0000001c;
}

.cont-logo {
  width: 175px;
  height: 70px;
}

.search-section .input-group {
  display: flex;
  justify-content: space-between;
}

.search-section .form-select {
  border-radius: 5px;
  padding: 6px;
}

.search-section .btn-outline-light {
  border-radius: 5px;
  padding: 10px 20px;
}

.product-cards-section .card {
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.product-cards-section .card-img-top {
  object-fit: cover;
  height: 460px;
}

.product-cards-section .whatsapp-contact-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
}

.product-cards-section .btn-success {
  font-size: 30px;
  padding: 15px 20px;
}

.about-us-section {
  padding: 50px 0;
  color: white;
}

.about-us-section h2 {
  font-weight: bold;
}

.about-us-section .btn-light {
  margin-top: 20px;
  border-radius: 25px;
  font-size: 18px;
  padding: 12px 30px;
}

.blog-section .card {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.blog-section .card-img-top {
  height: 200px;
  object-fit: cover;
}

.blog-section p {

}

.contact-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 2;
}

.blog-section .btn-primary,
.blog-section .btn-success {
  font-size: 24px;
  padding: 15px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
}

footer {
  background-color: #1e1e1e;
  color: #ffffff;
}

footer a {
  text-decoration: none;
}

footer .fab,
footer .fas {
  font-size: 20px;
}

footer .text-uppercase {
  font-weight: bold;
}

footer .list-unstyled {
  padding-left: 0;
}

footer .list-unstyled a {
  color: #ffffff;
  transition: color 0.3s;
}

footer .list-unstyled a:hover {
  color: #00aaff; /* Puedes cambiar este color si lo deseas */
}

footer .img-fluid {
  max-width: 100%;
  height: auto;
}

.form-select {
  border-radius: 0 !important;
}

/* Botón gray con diagonal */
.btn-gray {
  background-color: #d3d3d3; /* Gris claro */
  color: #000000; /* Texto oscuro */
  border: 0;
  border-radius: 0;
  padding: 6px 20px;
  font-weight: bold;
  transform: skew(-15deg);
  display: inline-block;
  text-align: center;
  position: relative;
  font-family: sans-serif;
  text-decoration: none;
  transition: all 0.3s ease;
  overflow: hidden; /* Asegura que el fondo no sobresalga */
}

.btn-gray.no-skew {
  transform: none; /* Elimina el skew */
}

.btn-gray span {
  display: block;
  margin: 0;
  transform: skew(15deg); /* Aplica skew al texto en sentido opuesto al fondo */
  z-index: 1; /* Asegura que el texto esté encima del fondo */
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0px;
  color: #101820;
  font-size: 1.1em;
}

.btn-gray.no-skew span {
  transform: none; /* Elimina el skew del texto */
}

.btn-gray:hover {
  background-color: #949494; /* Gris claro */
  color: #000000; /* Texto oscuro */
}

/* Botón gray con diagonal */
.btn-gray-dark {
  background-color: #d3d3d3; /* Gris claro */
  border: 2;
  border-radius: 0;
  padding: 6px 20px;
  font-weight: bold;
  transform: skew(-15deg);
  display: inline-block;
  text-align: center;
  position: relative;
  font-family: "Manrope", sans-serif;
  text-decoration: none;
  overflow: hidden; /* Asegura que el fondo no sobresalga */
}

.btn-gray-dark span {
  display: block;
  margin: 0;
  transform: skew(15deg); /* Aplica skew al texto en sentido opuesto al fondo */
  z-index: 1; /* Asegura que el texto esté encima del fondo */
  color: #101820; /* Texto oscuro */
  font-weight: 700;
}
.btn-gray-dark:hover span {
  color: white;
}
.btn-gray-dark:hover {
  background: #101820 0% 0% no-repeat;

}

.sub-back-blue {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 3.24px;
  color: #C1C5C8;
  margin: 0;
}

/* Botón white con diagonal */
.btn-white {
  background-color: #ffffff; /* Fondo blanco */
  color: #000000; /* Texto oscuro */
  border: 2px solid #000000; /* Borde negro */
  padding: 10px 20px;
  font-weight: bold;
  display: inline-block;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  font-family: sans-serif;
  transform: skew(-25deg);
  border-radius: 0;
}

.btn-white:hover {
  background-color: #000000; /* Fondo negro en hover */
  color: #ffffff; /* Texto blanco en hover */
  cursor: pointer;
}

.btn-white-prod {
  background-color: #ffffff; /* Fondo blanco */
  color: #000000; /* Texto oscuro */
  padding: 10px 20px;
  font-weight: bold;
  display: inline-block;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  font-family: sans-serif;
  transform: skew(-4deg);
  border-radius: 0;
}

.btn-white-prod span{
  transform: skew(4deg);
}

.card {
  border-radius: 0;
}

.btn-strech {
  top: -24%;
  transform: skew(15deg);
}

.btn-strech span {
  display: block;
  margin: 0;
  transform: skew(-15deg);
  z-index: 1; /* Asegura que el texto esté encima del fondo */
  font-size: 24px;
}

.card-lineas .card-text {
  height: 120px;
  font-size: 18px;
}

.card-lineas button {
  bottom: -35%;
}

.subtitulo-gray-18 {
  font-size: 18px;
  letter-spacing: 3.24px;
  text-transform: uppercase;
  opacity: 0.8;
}

.titulo-blue-28 {
  font-size: 45px;
  font-weight: bold;
}

.card-image {
  overflow: hidden;
}

.card-lineas{
  position: relative;
}

.card-lineas img {
  width: 100%; /* Asegura que la imagen ocupe todo el ancho del contenedor */
  transition: transform 0.3s ease; /* Transición suave para el zoom */
}

.card-lineas:hover img {
  transform: scale(1.2); /* Al hacer hover, aumenta el tamaño de la imagen */
}

.simple-link {
  text-align: left;
  font-family: "Manrope", sans-serif;
  font-weight: bold;
}

.btn {
  text-decoration: none;
  position: relative;
  color: #fff;
  font-weight: 500;
  display: inline-block;
  text-align: left;
  font-family: "Manrope", sans-serif;
  letter-spacing: 0px;
  transition: all 0.4s;
}

/* Slanted on the right side */
.red-blog .btn {
  background: #f41938;
  clip-path: polygon(0% 0%, 94% 0%, 84% 100%, 0% 100%);
  border-radius: inherit;
  padding: 10 4 8 2;
  padding-left: 80px;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-right: 50px;
}

/* Slanted on the right side */
.green-blog .btn {
  background: #4bcb74;
  clip-path: polygon(0% 0%, 94% 0%, 84% 100%, 0% 100%);
  border-radius: inherit;
  padding: 10 4 8 2;
  padding-left: 80px;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-right: 50px;
}

/* Slanted on the right side */
.blue-blog .btn {
  background: #0087a8;
  clip-path: polygon(0% 0%, 94% 0%, 84% 100%, 0% 100%);
  border-radius: inherit;
  padding: 10 4 8 2;
  padding-left: 80px;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-right: 50px;
}

.simple-link::before {
  content: "";
  background-image: url("../../assets/img/arrow-right.svg");
  width: 8px;
  height: 12px;
  position: absolute;
  right: -20px;
  top: 7px;
  background-size: contain;
  background-repeat: no-repeat;
}

.bg-lineas {
  background-image: url("../../assets/img/bg-lineas.svg");
  background-repeat: no-repeat;
  background-position: -55%;
}

.i-filter{
    position: relative;
    background-image: url(../../assets/img/filter.svg);
    display: inline-block;
    width: 20px;
    height: 16px;
    background-size: cover;
}

.tag-btn {
    background-color: #101820;
    color: white;
    padding: 6px 12px;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}
.tag-btn:hover {
    background-color: #1a1f24;
}
.tag-btn .remove {
    font-weight: bold;
}
.tag-btn.selected {
    background-color: #4BCB74;
}


.blog-section .card .card-body{
    transition: background-color 0.3s ease; /* transición de 2 segundos */
}

.blog-section .card:hover .card-body {
  background-color: #101820 ;
}

.blog-section .card:hover a,  .blog-section .card:hover p{
    color: white;
}

.blog-section .card:hover .simple-link::before{
  filter: brightness(0) invert(1);
}

.blog-section .card:hover span a{
    color:#101820;
}

#myInput {
  background: transparent;
  border: none;
  height: 40px;
  border-radius: 0;
  color: transparent;
  width: 0%;
  pointer-events: none;
  transition: width 0.3s ease-in-out;
  position: absolute;
  z-index: 5;
  right: -14px;
  display: block;
  margin-right: 2%;
  /* margin-top: -14px; */
}



#myInput::placeholder {
  color:transparent;
}

.col-md-6.cont-menu-search {
  display: flex;
  justify-content: flex-end; /* Alinea los elementos a la derecha */
  align-items: center; /* Alinea verticalmente si es necesario */
}

@media(max-width:600px){
    #myInput {
    left: 0;
  }
}

#myInput:focus {
  width: 100%;
  transition: width 0.5s ease-in-out;
  border: solid 1px #fff;
  box-shadow: none;
  z-index: 3;
  float: right;
  display: block;
  background: #101820;
  color: white;
  pointer-events: all;
}



#myInput:focus::-webkit-input-placeholder {
  color: rgb(255, 255, 255);
}

#myInput:focus ~ .collapse #fade {
  opacity: 0 ;
}

#fade{
  opacity: 1 ;
  transition: all 0.5s ease;
}

.buscador:has(:focus) .x-close{
  pointer-events: all;
  display: block;
}

#search_container.opened .x-close{
  display: block;
  pointer-events: all;
}

#search_container{
  display: none;
}

#search_container.opened{
  display: flex;
}

#search_box{
  width: 0;
  transition: width 0.5s ease;
  overflow: hidden;
  opacity: 0;
}

#search_box:has(.opened){
  width: 100%;
   opacity: 1;
}

.x-close {
  font-size: 18px;
  font-weight: bold;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 18px;
  /* display: block; */
  display: none;
  z-index: 999;
  position: absolute;
  right: 10px;
  /* top: -3px; */
  pointer-events: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

/* #myInput:focus ~ .x-close,
#myInput:not(:placeholder-shown) ~ .x-close {
  display: block;
} */

/* Mostrar la X solo cuando el input está enfocado */
/* #myInput:focus + #clearSearch {
  display: block;
} */

.form-header{
  width: 40px;
  height: 100%;
  align-items: center;
}

.glyphicon-search{
  width: 18px;
  height: 18px;
  background-image: url("../../assets/img/ico-search.svg");
  background-size: cover;
  /* position: absolute; */
  margin-left: 20px;
  z-index: 2;
  font-size: 2em;
  cursor: pointer;
  padding-top: 10px;
  color: #EDEDED;
  display: block;
  margin-right: 40px;
}


.collapse.navbar-collapse {
  position: relative;
}

.slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.slide {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: relative;
}

.slide-text {
  max-width: 100%;
  color: #fff;
  text-align: left;
  font-size: 24px;
}

/* .slide-text h2 { */
  /*margin-bottom: 20px;*/
/* } */

/*
.btn {
  padding: 10px 20px;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  border-radius: 5px;
}
*/

.slide-video {
  max-width: 100%;
  position: relative;
  overflow: hidden;
}

.slide-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-controls {
  position: absolute;
  bottom: 50%;
  margin-top: -30px;
  left: 57%;
  transform: translateX(-57%);
  display: flex;
  justify-content: space-between;
  width: 98%;
  z-index: 5;
}
/* Estilo del botón de navegación */
.prev-btn, .next-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  color: #101820;
  border: 1px solid #101820;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 12px 12px rgba(1, 1, 0, 0.2);
  transition: all 0.3s ease;
}

.prev-btn:hover, .next-btn:hover {
  background-color: #101820;
  color: #fff;
}

.prev-btn:focus, .next-btn:focus {
  outline: none;
}

/* Estilo de los indicadores */
.indicators {
  display: flex;
  gap: 15px;
}

.indicator {
  width: 30px;
  height: 5px;
  background-color: #ccc;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.indicator.active {
  background-color: #101820;
  width: 50px;
}

/* Botón gray con diagonal */
.btn-dark {
  background-color: #101820; /* Gris claro */
  color: #fff; /* Texto oscuro */
  border: 0;
  border-radius: 0;
  padding: 10px 20px;
  font-weight: bold;
  transform: skew(-10deg);
  display: inline-block;
  text-align: center;
  position: relative;
  font-family: sans-serif;
  text-decoration: none;
  transition: all 0.3s ease;
  overflow: hidden; /* As34egura que el fondo no sobresalga */
}

.btn-dark span {
  display: block;
  margin: 0;
  transform: skew(10deg); /* Aplica skew al texto en sentido opuesto al fondo */
  z-index: 1; /* Asegura que el texto esté encima del fondo */
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0px;
  color:#C1C5C8;
}

/* Botón gray con diagonal */
.btn-assistance {
  background-color: #FFF; /* Gris claro */
  color: #101820; /* Texto oscuro */
  border: solid 2px #101820;
  border-radius: 0;
  padding: 10px 20px;
  font-weight: bold;
  transform: skew(-10deg);
  display: inline-block;
  text-align: center;
  position: relative;
  font-family: sans-serif;
  text-decoration: none;
  transition: all 0.3s ease;
  overflow: hidden; /* As34egura que el fondo no sobresalga */
}

.btn-assistance span {
  display: block;
  margin: 0;
  transform: skew(10deg); /* Aplica skew al texto en sentido opuesto al fondo */
  z-index: 1; /* Asegura que el texto esté encima del fondo */
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0px;
  color:#101820;
}

.btn-assistance:hover {
  background-color: #101820; /* Gris claro */
}

.btn-assistance:hover span{
  color: #fff; /* Texto oscuro */
}

.share-product{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.share-product p{
  font-size: 24px;
  font-weight: 700;
  padding-top: 6px;
}

.share-product li{
  padding:0 10px;

}

.ico-prod{
  border-radius: 40px;
  padding: 12px;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px #00000029;
  border: 0.30000001192092896px solid #C1C5C8;
}

.btn-dark:hover {
  background-color: #d3d3d3; /* Gris claro */
}

.btn-dark:hover span{
  color: #000000; /* Texto oscuro */
}

.cont-slider-inner{
  height: 434px;
  max-height: 434px;
  overflow: hidden;
}

.hero-bg-section{
  background-color: #ffffff;
  width: 52%;
  height: 100%;
  display: block;
  position: absolute;
  left:0;
  top:0;
  z-index: 2;
}

.arrow:after {
  content: "";
  display: block;
  position: relative;
}

.hero-bg-section:after{
  left: 140px;
  border-top: 434px solid #ffffff;
  border-right: 120px solid transparent;
  border-bottom: 0px solid transparent;
  border-left: 0px solid #ffffff;
}

.cont-izq{
  z-index: 3;
}

.slide-text{
  width: 68%;
  margin: 0 auto;
  margin-top: 6%;
}

.hero-first-txt{
  font-size: 1.3em;
  font-family: "Manrope", sans-serif;
  color: #101820;
}

.hero-fsec-txt a, .hero-fsec-txt{
  font-size: 1.3em;
  font-family: "Manrope", sans-serif;
  color: #101820;
  font-weight: bold;
  margin-top: -14px;
}

.hero-fsec-txt a{
  text-decoration: underline;
}



/* Estilos para los controles de navegación con imágenes personalizadas */
.swiper-button-next, .swiper-button-prev {
  background-color: transparent;  /* Fondo transparente */
  width: 100px;  /* Ajustamos el tamaño de los botones */
  height: 100px; /* Ajustamos el tamaño de los botones */
  position: absolute;  /* Coloca los botones en posición absoluta */
  top: 38%;  /* Centra los botones verticalmente */
  transform: translateY(-50%);  /* Asegura que el botón esté centrado */
  cursor: pointer;  /* Aplica el cursor de puntero */
  z-index: 11;  /* Asegura que el botón esté por encima de otros elementos */
}

/* Especificar los íconos de navegación con las imágenes en los pseudo-elementos */
.swiper-button-next::after, .swiper-button-prev::after {
  content: '';  /* Elimina el contenido por defecto */
  background-size: contain;  /* Asegura que la imagen se ajuste al tamaño del botón */
  background-repeat: no-repeat;  /* Impide la repetición de la imagen */
  display: block;  /* Asegura que se renderice como un bloque */
  width: 100%;  /* El tamaño del ícono debe ser el 100% del contenedor */
  height: 100%; /* El tamaño del ícono debe ser el 100% del contenedor */
}

/* Botón "next" (derecha) */
.swiper-button-next::after {
  background-image: url("../../assets/img/arrow-slide-der.svg");  /* Imagen personalizada para 'next' */
}

/* Botón "prev" (izquierda) */
.swiper-button-prev::after {
  background-image: url("../../assets/img/arrow-slide-izq.svg");  /* Imagen personalizada para 'prev' */
}

/* Estilos para los controles de navegación con imágenes personalizadas */
/*
.swiper-button-next, .swiper-button-prev {
  background-color: transparent;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 10;
}

.swiper-button-next {
  right: 10px;
}

.swiper-button-prev {
  left: 10px;
}
  */

/* Estilos para las cards dentro de los slides */


.cont-impacto-inner{
}

.swiper-impacto .swiper-slide .card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  background-color: transparent;
}

.swiper-impacto .swiper-slide .card-body {
  text-align: left;
  padding: 20px;
}

.swiper-impacto .swiper-slide .card-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}

.swiper-impacto .swiper-slide .card-text {
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: 200;;
}

.swiper-impacto .swiper-slide .btn-primary {
  background-color: #101820;
  color: #fff;
  border: none;
}

.swiper-impacto .swiper-slide .btn-primary:hover {
  background-color: #444;
}

/* Estilos para la paginación (indicadores) */
.swiper-pagination {
  position: relative;
  bottom: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 1.5rem;
}

.swiper-pagination .swiper-pagination-bullet {
  width: 60px;
  height: 6px;
  background-color: #5e5e5e;
  border-radius:0;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background-color: #101820;
}

.swiper-impacto .card .cont-img-impacto img{
  width: 100%;
}

.swiper-impacto .card .cont-img-impacto{
  width: 94px;
  height: 100px;
}


/* Estilo general para el swiper */
/* Estilos específicos solo para swiper-casos */
.swiper-casos {
  width: 100%;
  position: relative;
}

.swiper-casos .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

/* Cards dentro de los slides */
.swiper-casos .swiper-slide .card {
  position: relative;
  width: 100%;
  margin: 0 10px;
  background-color: #fff;
  transition: transform 0.3s ease;
  transform: skew(-2deg);
}

/* Efecto del overlay para los slides laterales (no activos) */
.swiper-casos .swiper-slide:not(.swiper-slide-active) .card {
  opacity: 0.5;
}

.swiper-casos .swiper-slide-active .card {
  opacity: 1;
}

/* Overlay de los slides laterales */
.swiper-casos .swiper-slide:not(.swiper-slide-active) .card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.2);  /* Overlay solo en los slides laterales */
  z-index: 1;
}

/* Estilos de los títulos y el texto */
.swiper-casos .card-body {
  padding: 20px 40px;
  z-index: 2;  /* Asegura que el texto y botones estén por encima del overlay */
  transform: skew(2deg);
}

.swiper-casos .card-title {
  font-size: 1.5rem;
  font-weight: bold;
}

.swiper-casos .card-text {
  font-size: 1rem;
  margin-top: 10px;
}

.swiper-casos .author {
  font-size: 0.9rem;
  color: #888;
}

/* Estilo de la paginación (indicadores) */
.swiper-casos .swiper-pagination {
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 60px;
}

.swiper-casos .swiper-pagination .swiper-pagination-bullet {
  width: 60px;
  height: 2px;
  background-color: #fff;
  /*opacity: 0.5;*/
  transition: opacity 0.3s;
  margin-top: 0px;
}

.swiper-casos .swiper-pagination .swiper-pagination-bullet-active {
  width: 60px;
  height: 4px;
  background-color: #ffffff;
  border-radius:0;
  /*opacity: 0.5;*/
  transition: opacity 0.3s;
  margin-top: 0;
}

.ppal-txt-casos{
  font-size: 45px;
}

.sec-impact{
  background-image: url(../../assets/img/bg-impacto.svg);
  background-repeat: no-repeat;
  background-position-x: 100%;
  background-position-y: 40%;
}

.swiper-casos .card-body img{
  max-width: 230px;
}

.swiper-casos .card-body .author{
  font-size: 18px;
  max-width: 230px;
  color: #101820;
}


.swiper-casos .card-img-top{
  margin-top: 30px;
  margin-bottom: 20px;
}

.logo-foot{
  /* UI Properties */
  opacity: 1;
  width: 100%;
  height: 90px;
}

.tit-footer{
  font-weight: 300;
  color: #FBFBFB;
  opacity: 0.7;
}

.bg-dark .text-center .small{
  opacity: 0.7;
}

footer .list-unstyled li a{
  text-align: left;
  color: #FBFBFB;
}

.logo-footer{ 
  width: 84% ;
  height: auto;
}

.btn-cont {
  width: 60px;
  height: 60px;
  border-radius: 80px;
  margin: auto;
  text-align: center;
  display: flex;
  justify-content: center; 
  align-items: center;
}

.btn-cont img{
  max-width: 60%;
}

.mega-sub-menu img{
  max-width: 170px !important;
}

.menu{
  list-style: none !important;
  padding: 0;
  margin: 0;
}

.menu-item a {
  margin: 0 0px !important;
}

.tit-mega-menu{
  font-size: 45px;
  color: white;
  line-height: 45px;
}

.buscador{
  display: flex;
}

.navbar {
  position: relative;
  z-index: 1000; /* Ajusta este valor según sea necesario */
}

.cont-menu-search{
  display: inline-flex;
}

.swiper-hero .swiper-pagination-bullets{
  position: absolute;
  bottom: 20%;
  left: -39%;
}

.swiper-button-next, .swiper-button-prev {
  top: 58%;
}

.mega-sub-menu:first-of-type {
  /* Estilos para el primer .mega-sub-menu */
  margin-top: 25px !important;
}

.sub-tit-mega{
  letter-spacing: 3.24px;
}

.txt-encuentra{
  font-size: 28px;
  line-height: 28px;
  font-weight: lighter;
  padding-top: 14px;
}

.footer-redes{
  display: flex;
}

.swiper-casos .swiper-button-next, .swiper-casos .swiper-button-prev {
  background-color: transparent;
  width: 62%;
  height: 100px;
  position: absolute;
  top: 38%;
  transform: translateY(-80%);
  transform: translateX(0%);
  cursor: pointer;
  z-index: 11;
  margin-top: -2%;
}

/* Botón "next" (derecha) */
.swiper-casos .swiper-button-next::after {
  background-image: url("../../assets/img/icon-right.svg");  /* Imagen personalizada para 'next' */
  max-width: 40px;
  width: 30px;
  height: 30px
}

/* Botón "prev" (izquierda) */
.swiper-casos .swiper-button-prev::after {
  background-image: url("../../assets/img/icon-left.svg");  /* Imagen personalizada para 'prev' */
  max-width: 40px;
  width: 30px;
  height: 30px
}

.equal-width{
  width: 60%;
  text-align: right;
}

.logo-eco{
  position: absolute;
  top: 2%;
  left: 6%;
  z-index: 5;
  object-fit: fill;
  height: inherit;
}

.logo-eco img{
  width: 68%;
}

.subt-about{
  font-size: 28px;
  letter-spacing: 0px;
  line-height: 28px;
}

.about-us-section p{
  font-size: 16px;
}

.destacado-about{
  font-weight: lighter;
  font-size: 26px;
}




.swiper-impacto .swiper-buttons {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 100%;
}

.swiper-impacto  .swiper-button-next,
.swiper-impacto  .swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.swiper-impacto  .swiper-button-next {
  right: -19px; /* Mueve más lejos a la derecha */
}

.swiper-impacto  .swiper-button-prev {
  left: -19px; /* Mueve más lejos a la izquierda */
}

#mega-menu-wrap-menu-principal #mega-menu-menu-principal li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row {
  border-top: 1px solid #fff;
}

.col-logo{
  z-index: 1;
}

.navbar-decoration{
  position: absolute;
  /*left: 280px;*/
  left: 37%;
  z-index: 0;
}

.bg-movil{
  display: none;  
}





/*--------------Single product--------------------*/


.product-container .swiper-single{
  overflow: hidden;
}

.swiper-producto-especial {
  width: 100%;
  max-width: 800px;
  margin: auto;
}

.swiper-producto-especial .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #333;
  padding: 20px;
}

.swiper-producto-especial .swiper-slide:last-child {
  border-right: none;
}

.swiper-producto-especial .swiper-slide img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 10px;
}

.swiper-producto-especial .swiper-slide span {
  color: white;
  font-size: 16px;
  margin-top: 10px;
  font-family: "Manrope", sans-serif;
  padding-inline: 10px;
}

.swiper-producto-especial .swiper-pagination-bullet {
  background-color: gray;
}

.swiper-producto-especial .swiper-pagination-bullet-active {
  background-color: #00ff88;
}

.swiper-producto-especial .swiper-button-prev,
.swiper-producto-especial .swiper-button-next {
  color: white;
}

.navegacion{
  text-align: left;
  font-family: "Manrope", sans-serif;
  font-size: 16x;
  font-family: manrope;
  letter-spacing: 2.88px;
  color: #101820;
  text-transform: uppercase;
  padding-left: 20px;
  border-bottom: solid 1px #ccc;
  padding-top: 10px;
  padding-bottom: 10px;
}

.single-category{
  border-left: solid 1px #ccc;
  border-right: solid 1px #ccc;
  border-top: solid 1px #ccc;
  display: inline-flex;
  padding: 20px 22px;
  background-color: white;
  margin-bottom: -2px;
}

.single-category .btn-eco{
  /*max-width: 240px;*/
}

.cont-single-txt{
  border: 1px solid #ccc;
  padding: 20px;
}

.ref-single-prod{
  letter-spacing: 3.24px;
  color: #101820;
  text-transform: uppercase;
  opacity: 1;
  font-weight: lighter;
}

.product-title{
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 0px;
  color: #101820;
  opacity: 1;
  text-align: left;
}

.product-description{
  font-size: 16px;
  text-align: left;
  letter-spacing: 0px;
  color: #101820;
  opacity: 1;
}
.cont-single-txt p{
  text-align: justify!important;
}
.prod-tit-single{
  font-size: 20px;
  font-weight: bold;
  text-align: left;
  letter-spacing: 0px;
  color: #101820;
  opacity: 1;
}

.characteristics-list{
  list-style: none;
  padding: 0;
  margin: 0;
}

.characteristics-list li {
  font-size: 18px;
  padding-right: 10px;
  letter-spacing: 0px;
  color: #101820;
  opacity: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.characteristics-list li span{
  padding-right: 10px;
  position: absolute;
}

.characteristics-list li p{
  margin-left: 40px;
  font-size: 16px;
}

.prod-tit-single{
  font-size: 20px;
  font-weight: bold;
  text-align: left;
  letter-spacing: 0px;
  color: #101820;
  opacity: 1;
}

.swiper-producto-especial.swiper-buttons {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 100%;
}

.swiper-producto-especial .swiper-button-next,
.swiper-producto-especial .swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.swiper-producto-especial .swiper-button-next {
  right: -19px; /* Mueve más lejos a la derecha */
}

.swiper-producto-especial .swiper-button-prev {
  left: -19px; /* Mueve más lejos a la izquierda */
}

/* Botón "next" (derecha) */
.swiper-producto-especial .swiper-button-next::after {
  background-image: url("../../assets/img/icon-right.svg");  /* Imagen personalizada para 'next' */
  max-width: 40px;
  width: 30px;
  height: 30px
}

/* Botón "prev" (izquierda) */
.swiper-producto-especial .swiper-button-prev::after {
  background-image: url("../../assets/img/icon-left.svg");  /* Imagen personalizada para 'prev' */
  max-width: 40px;
  width: 30px;
  height: 30px
}

.nav-fichas button{
  font-size: 24px;
  color: #101820;
  letter-spacing: 0px;
  opacity: 1;
}

/* Estilos generales para las pestañas */
.nav-fichas .nav-link {
  color: #999;
  border: none;
  border-bottom: 3px solid transparent;
  font-weight: 500;
  transition: all 0.3s ease;
  border-top: 1px solid #dee2e600 !important;
  border-left: 1px solid #dee2e600 !important;
  border-right: 1px solid #dee2e600 !important;
}

#courses .nav-link{
  padding: 0 !important;
  opacity: .5 !important;
}


#courses .nav-item:has(.active) .nav-link {
  opacity: 1 !important;
}

#courses .nav-link.active {
  border-bottom: none !important;
}

.nav-fichas .nav-link.active {
  color: #101820; 
  border-bottom: 3px solid #4BCB74;
  background-color: transparent;
  border-top: 1px solid #dee2e6 !important;
  border-left: 1px solid #dee2e6 !important;
  border-right: 1px solid #dee2e6 !important;
}

/* Estilo general del contenido */
.tab-content {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-top: none;
}

/* Título */
.tab-content h5 {
  font-weight: 700;
}

.tit-tab{
  font-size: 36px;
}

.form-prodcto{
  width: 880px;
  margin: auto;
}

/* Tabla personalizada */
.table.custom-table {
  width: 100%;
  border-collapse: collapse;
}

.table.custom-table td {
  padding: 0.75rem 1rem;
  border: none;
}

.table.custom-table tr:nth-child(even) {
  background-color: #f7f7f7;
}

.table.custom-table tr:nth-child(odd) {
  background-color: #c1c5c87a;
}

.table.custom-table td:first-child {
  color: #555;
  font-weight: 500;
}

.table.custom-table td:last-child {
  text-align: right;
  color: #333;
}

.form-title{
  color: white;
  font-weight: lighter;
}

.form-check-label{
  color:white;
}

.card-body-custom{
  color:white;
  z-index: 10;
}

.tit-category{
  letter-spacing: 0px;
  color: #FBFBFB;
  opacity: 1;
  font-size: 22px;
  font-weight: normal;
  min-height: 70px;
}

.card-body-custom .categoria{
  letter-spacing: 0px;
  color: #FBFBFB;
  opacity: 0.5;
  font-weight: lighter;
  min-height: 48px;
}

.cont-cat{
  cursor:pointer;
  transform: skew(-2deg);
}

.cont-cat img{
  transform: skew(2deg);
}

.cat-bord-verde.active{
  border: solid 1px #4BCB74;
}

.cat-bord-verde{
  border: solid 1px #4bcb744a;
} 

.cat-bord-verde:hover{
  border: solid 1px #4BCB74;
} 

.cat-bord-verde img{
  opacity:0.3;
}

.cat-bord-verde.active img{
  opacity:1;
}

.cat-bord-verde:hover img{
  opacity:1;
}

.cat-bord-rojo.active{
  border: solid 1px #d61935;
}

.cat-bord-rojo:hover{
  border: solid 1px #d61935;
}

.cat-bord-rojo{
  border: solid 1px #d6193547;
} 

.cat-bord-rojo img{
  opacity:0.3;
}

.cat-bord-rojo.active img{
  opacity:1;
}

.cat-bord-rojo:hover img{
  opacity:1;
}

.cat-bord-azul.active{
  border: solid 1px #027895;
}

.cat-bord-azul:hover{
  border: solid 1px #027895;
}

.cat-bord-azul{
  border: solid 1px #02789547;
} 

.cat-bord-azul img{
  opacity:0.3;
}

.cat-bord-azul.active img{
  opacity:1;
}

.cat-bord-azul:hover img{
  opacity:1;
}

.bg-curso-img{
  background-image: url("../../assets/img/icon-left.svg");  /* Imagen personalizada para 'prev' */
}

.cont-btn-tab{
  border: solid 1px #ccc;
}

.btn-diagonal {
  top: -24%;
  transform: skew(15deg);
  width: 240px;
  height: 30px;
}

.btn-diagonal span {
  display: block;
  margin: 0;
  transform: skew(-15deg);
  z-index: 1; /* Asegura que el texto esté encima del fondo */
  font-size: 24px;
  position: absolute;
  right: 10%;
  top: 0px;
  font-size: 18px;
  color: #000000;
}

.nav-cursos .nav-link.active {
  color: #101820;
  border-bottom: 3px solid #4BCB74;
  border-bottom:none;
  background-color: transparent;
  border-top: 1px solid #dee2e6 !important;
  border-left: 1px solid #dee2e6 !important;
  border-right: 1px solid #dee2e6 !important;
}

.curso-tit{
  font-size: 25px;
  color: #101820;
}

.ico-curso-serv img{
  max-width: 60px;
}

.ico-interno{
  max-width: 80px;
}

.bg-gray-section{
  background-color: #f1f1f1;
}

.fnd-patron{
  background-image: url("../../assets/img/fnd-patron-gris-claro.svg");
  background-repeat: no-repeat;
  background-position-x: right;
}

.fnd-patron-blog{
  background-image: url("../../assets/img/bg-blog-hero.svg");
  background-repeat: no-repeat;
  background-position-x: 140%;
}

.fnd-patron-productos{
  background-image: url("../../assets/img/fnd-patron-gris-claro.svg");
  background-repeat: no-repeat;
  background-position-x: right;
  background-position-y: -70px;
}

.tit-interno{
  font-size: 45px;
  letter-spacing: 0px;
  color: #101820;
  opacity: 1;
  font-weight: 700;
}

.tit-preguntas{
  color:#101820;
  font-size: 45px;
  font-weight: 700;
}

#preguntasFrecuentesAccordion .accordion{
  border: 1px solid #C1C5C8;
}

.accordion-button:not(.collapsed) {
  font-size: 24px;
  letter-spacing: 0px;
  color: #101820;
  background-color: #fff;
  box-shadow: none;
}

.accordion-button:focus{
  border-color: none;
  outline: 0;
  box-shadow: none;
}

.accordion-button{
  font-size: 20px;
}


.collapse,.accordion-item {
  border-bottom: solid 3px #4BCB74 !important;
}

.shadow{
  border-top: solid 1px #e9e9e9 !important;
  border-left: solid 1px #e9e9e9 !important;
  border-right: solid 1px #e9e9e9 !important;
}


.hero-text-content h2{
  letter-spacing: 0px;
  color: #FBFBFB;
  opacity: 1;
  font-weight: 100;
  max-width: 600px;
}

.accordion-button::after {
  background-image: url("");
}

.accordion-button:not(.collapsed)::after {
  background-image: url("");
}


.diagonal-hero-section .row {
  min-height: 60vh;
}

.hero-text-content {

}

.miga{
  position: absolute;
  top: 4%;
  left: 1.8%;
  color: white;
  font-weight: 500;
}

.hero-text-content h2{
  margin-left: 4%;
  margin-top: 22%;
}

.hero-text-content .btn-gray{
  margin-left: 4%;
}

.hero-image-mask {
  width: 100%;
  height: 100%;
  overflow: hidden;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-image-mask img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  margin-top: 0;
}

.video-player {
  display: none; /* El video está oculto inicialmente */
  width: 100%;
  height: auto;
}

.play-button {
  width: 60px;
  height: 60px;
  z-index: 99;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 99;
  margin-left: -30px;
  margin: -30px;
  background-image: url("../../assets/img/player.svg");
  background-size: cover;
  background-position: center center;
}

.play-button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/*-----------------------------------------------------------*/


.destacado-card {
  position: relative; /* Necesario para posicionar el overlay */
  background-size: cover; /* Cubre todo el área */
  background-position: center; /* Centra la imagen */
  min-height: 270px; /* Altura mínima, ajusta según necesites */
  display: block; /* Para que el enlace funcione bien */
  color: white; /* Color de texto por defecto */
}

/* La caja superpuesta */
.destacado-overlay-box {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0; /* O height: 100% */
  width: 60%; /* Ancho de la caja, ajusta este porcentaje */
  background-color: #101820; /* Color oscuro semi-transparente por defecto */
  transition: background-color 0.35s ease-in-out; /* Transición suave para el hover */
}

/* Efecto Hover: cambia el fondo del overlay */
.destacado-card:hover .destacado-overlay-box {
  background-color: #34a853; /* Color Verde - AJUSTA ESTE COLOR al verde exacto de tu imagen */
}

/* Estilos para el texto dentro del overlay */
.destacado-category {
  /* font-size: 0.8rem; */
  font-weight: 500;
  letter-spacing: 0.5px;
}

.destacado-title {
  font-weight: 600;
  margin-bottom: 1rem; /* Espacio entre título y el icono abajo */
}

/* Contenedor del icono (para alineación) */
.destacado-icon-wrapper {
  line-height: 0; /* Evita espacio extra */
}

/* Estilos para el icono (círculo y SVG) */
.destacado-icon {
  display: inline-flex; /* Para centrar contenido */
  align-items: center;
  justify-content: center;
  width: 36px; /* Tamaño del círculo */
  height: 36px;
  background-color: rgba(255, 255, 255, 0.15); /* Círculo semi-transparente */
  border-radius: 50%;
  font-size: 1.2rem; /* Tamaño del icono SVG */
  color: white;
  transition: background-color 0.3s ease;
}

.destacado-card:hover .destacado-icon {
   background-color: rgba(255, 255, 255, 0.3); /* Círculo un poco más opaco en hover */
}

/* Asegurar que el contenido del overlay esté sobre el fondo */
.destacado-overlay-box > * {
   position: relative;
   z-index: 2;
}

.list-blog{
  list-style: none;
  padding: 0;
}

.search-icon-button{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 16%;
  border: none;
}

.cont-top{
  max-width: 66%;
  transform: skew(-1deg);
}
.cont-top .container{
  transform: skew(1deg);
}

.search-icon-button{
  background-color: transparent;
}

.blog-top{
  list-style: none;
  margin: 0;
  padding: 0;
}

.space-black{
 /* width: 10px; <-- Quitamos el ancho fijo inicial */
 width: 0;           /* Empieza con ancho cero */
 cursor: pointer;
 height: 36px;
 background-color: black;

 display: inline-block; /* Necesario para que width funcione */
 vertical-align: middle; /* O ajusta según necesites */
 opacity: 0;         /* Empezar invisible para evitar saltos */
 visibility: hidden;   /* Oculto */
 overflow: hidden;     /* Oculta contenido si lo hubiera mientras se expande */
 transition: width 0.3s ease, opacity 0.2s ease 0.1s, visibility 0s linear 0.3s; /* Transición de ancho y luego opacidad */
}

.li-btn:hover .space-black{
  width: 10px;         /* Ancho final */
  opacity: 1;          /* Hacer visible */
  visibility: visible;   /* Hacer 'interactuable' */
  margin-right: 20px; /* El margen se aplicará cuando tenga ancho */
  transition: width 0.3s ease, opacity 0.2s ease, visibility 0s linear 0s;
}

.border-btn{
  border-bottom: 1px solid #d2c4c4;
}

.list-tit-blog{
  list-style: none;
  margin: 0;
  padding: 0;
}

.bg-electric{
  padding-left:100px;
  padding-right: 30px;
  clip-path: polygon(0% 0%, 100% 0%, calc(100% - 14px) 100%, 0% 100%);
}

.bg-fecha{
  background-color: #101820;
  padding-left: 39px;
  padding-right: 14px;
  clip-path: polygon(24px 0%, 100% 0%, 100% 100%, 0% 100%, 0% 40px);
  color: #FBFBFB;
  margin-left: -16px;
  font-weight: 100;
}

.blog-top li:hover{
  color: #4BCB74;
}

.list-blog p{
  color: #FBFBFB;
  font-weight: 700;
  font-size: 24px;
}

.icons-share{
  background-color: white;
    padding: 10px;
    margin: 0 4px;
    border-radius: 80px;
    width: 40px;
    height: 40px;
}

.form-section hr{
  color: white;
}

.form-inner-blog{
    background-position: -18%;
    background-position-y: -16%;
    background-size: 42%;
    border-bottom: solid 1px #fbfbfb;
}

.cont-prod-inner{
  /*padding-bottom: 1rem;
  padding-right: 3rem;
  padding-left: 3rem;*/
}

.swiper-prod-cate{

}

.swiper-prod-cate .swiper-button-next, .swiper-prod-cate .swiper-button-prev {
    background-color: transparent;
    width: 100px;
    height: 100px;
    position: absolute;
    top: 38%;
    transform: translateX(-6%);
    margin-top: -25px;
    cursor: pointer;
    z-index: 11;
}

/* Botón "next" (derecha) */
.swiper-prod-cate .swiper-button-next::after {
  background-image: url("../../assets/img/arrow-slide-der.svg");  /* Imagen personalizada para 'next' */
  max-width: 85px;
}

/* Botón "prev" (izquierda) */
.swiper-prod-cate .swiper-button-prev::after {
  background-image: url("../../assets/img/arrow-slide-izq.svg");  /* Imagen personalizada para 'prev' */
  max-width: 85px;
}

.cont-prod-inner .swiper-slide{
  background-color: transparent;
}

.cont-prod-inner .card {
  background-color: transparent;
  border: none;
}

.cont-prod-inner .card-title{
  color:white;
}

.cont-img-prod{
  text-align: center;
  min-height: 82px;
}

.cont-img-prod img{
    height: 60px;
    width: 60px;
    object-fit: contain;
}

.swiper-producto-especial img{
 filter: brightness(0) invert(1);
}

.swiper-producto-especial .swiper-slide-active img{
  filter: none;
}

.swiper-prod-cate img{
 filter: brightness(0) invert(1);
}

.swiper-prod-cate.no-invert img{
 filter: none !important;
}

.swiper-prod-cate .swiper-slide-active img{
  filter: none;
}

.swiper-prod-cate img.no-active{
 filter: brightness(0) invert(1) !important;
}

.swiper-prod-cate img.active{
  filter: none !important;
}


.swiper-prod-cate .swiper-pagination-bullet-active{
  background-color: #4BCB74 !important;
}

.cont-prod-inner .card-body{
  text-align: center;
  padding-block: 0px !important;
}

.swiper-prod-cate .swiper-button-prev {
  left: var(--swiper-navigation-sides-offset,-25px);
}

.swiper-prod-cate .swiper-button-next {
  right: var(--swiper-navigation-sides-offset,-25px);
}

.b-left{
  border-left: solid 1px #dfdfdf;  
}

.ico-curso-serv{
  margin-top: 10%;
}

.mt-quienes{
  margin-top: 12%;
}

.txt-idea{
  margin-top: 14%;
  font-size: 32px;
  font-weight: 400;
}

.form-control{
  border-radius: 0 !important;
}

.search-input-with-icon{
  margin-right: 130px;
  padding-right: 80px;
  clip-path: polygon(0% 0%, 86% 0%, 84% 100%, 0% 100%);
}

.articulos .card{
  color:#101820;
}

.articulos .card:hover{
  background-color: #101820;
  color: white;
}

.articulos .card:hover .btn{
  color: #101820;
}

.articulos .card:hover .simple-link::before {
  filter: brightness(0) invert(1);
}

.card-body-custom{    
  min-height: 210px;
}

.card-producto{
  overflow: hidden;
  transition:all 0.3s ease;
}

.card-producto:hover img{
  transform:scale(1.2);
  animation-duration: 0.2s;
  transition:all 0.3s ease;
}

.card-producto .btn-white-prod{
  display: none;
}

.card-producto:hover .btn-white-prod{
  display: inline-block;
  color:#101820;
} 

.card-producto:hover .tit-category{
  margin-top: -2px;
  transition:all 0.6s ease;
}

.bg-gris-ppal{
  background-color: #fbfbfb;
}

.current{
  font-weight: 700;
  border-bottom: solid 3px #101820;
  padding: 0 4px;
  text-align: center;
}

.next, .prev{
  font-weight: 700;
}

body{
  background-color: #fbfbfb;
}

.accordion-button::after {
    background-image: url("../../assets/img/ico-mas.svg") !important;
}

/* Ícono cuando el acordeón está abierto */
.accordion-button:not(.collapsed)::after {
    background-image: url("../../assets/img/ico-menos.svg") !important;
}

#mega-menu-wrap-menu-principal #mega-menu-menu-principal > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-menu-principal #mega-menu-menu-principal > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-menu-principal #mega-menu-menu-principal > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link {

}

.filtro-sidebar, .filtro-sideba {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 80px;
    z-index: 10;
}

.quantity-selector {
    position: relative;
    display: inline-block;
    border: 1px solid #ccc;
}

.quantity-selector input {
    width: 100%;
    padding-right: 35px; /* Espacio para los botones */
    text-align: center;
    border: none;
    border-radius: 4px;
    -moz-appearance: textfield; /* Para Firefox */
    appearance: textfield; /* Para otros navegadores */
    max-height: 38px;
    border: none;
    text-align: left;
}

.quantity-selector input::-webkit-inner-spin-button,
.quantity-selector input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity-selector ul{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    padding-top: 6px;
}

.quantity-selector ul li{
  margin: 0 4px;
}

.tit-destacado{
  font-size: 18px;
  letter-spacing: 3.24px; 
  color: #101820;
}

.scroll-filtros{
  max-height: 420px;
  overflow-y: scroll;
}











/* Contenedor principal */
.cont-img-decoraright {
    position: relative;
    width: 100%;
    height: 420px; /* Ajusta según sea necesario */
    overflow: hidden;
}

/* Máscara diagonal izquierda */
.mask-left {
    position: absolute;
    top: 0;
    left: -10%;
    width: 10%;
    height: 100%;
    transform: skewX(-2deg);
    transform-origin: bottom left;
    overflow: hidden;
    z-index: 1;
}

.mask-left::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 150%;
    height: 100%;
    background-color: inherit;
    transform: skewX(-15deg);
    transform-origin: bottom left;
}

/* Máscara diagonal derecha */
.mask-right {
    position: absolute;
    top: 0;
    right: -10px;
    width: 10%;
    height: 100%;
    transform: skewX(-2deg);
    transform-origin: bottom right;
    overflow: hidden;
    z-index: 1;
}

.mask-right::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 150%;
    height: 100%;
    background-color: inherit;
    transform: skewX(15deg);
    transform-origin: bottom right;
}

/* Contenedor de la imagen */
.image-container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%; /* Ancho relativo a la imagen */
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.image-container img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ajusta la imagen al contenedor */
}

.bg-cuadro-right{
  position: absolute;
  width: 40%;
  height: 180px;
  background-image: url("../../assets/img/fnd-patron-gris-claro.svg");
  right: 0;
  bottom: 0;
  z-index: 3;
}

.bg-cuadro-left{
  position: absolute;
  width: 40%;
  height: 180px;
  background-image: url("../../assets/img/fnd-patron-gris-claro.svg");
  left: 0;
  top: 0;
  z-index: 3;
}

.p-custom{
  padding: 4%;
}

.color-bg-white{
  background-color: #f0f0f0;
}

.color-bg-gray{
  background-color: #fbfbfb;
}

.bg-cat-blue{
  background-image: url("../../assets/img/bg-blue.svg");
}

.bg-cat-green{
  background-image: url("../../assets/img/bg-green.svg");
}

.bg-cat-red{
  background-image: url("../../assets/img/bg-red.svg");
}


#buscador-menu{
  display: none;
}

.youtube-video{
  height: 60vh;
}

#contactModal input, #contactModal select, #contactModal textarea{
  width: 100%;
}

.wpcf7-list-item label{
  display: -webkit-inline-box;
}


.wpcf7-list-item label input{
  float: left;
}

.wpcf7-list-item input{
  max-width: 14px;
    margin-right: 11px;
}

.card-producto a:first-child {
    overflow: hidden;
    max-height: 300px;
}

@media (max-width: 1536px) 
{
  .hero-fsec-txt a, .hero-fsec-txt{
    font-size: 36px;
  }

  .btn-gray span {
    font-size: 17px;
  }

  .card-lineas .card-text {
    height: 120px;
    font-size: 18px;
  }

  .subt-about {
    font-size: 36px;
    line-height: 36px;
  }

  .titulo-blue-28 {
    font-size: 36px;
  }

  .about-us-section p {
    font-size: 18px;
  }

  .ppal-txt-casos {
    font-size: 36px;
  }

}

@media (max-width: 1366px) 
{
  .hero-fsec-txt a, .hero-fsec-txt {
    font-size: 36px;
  }
  .btn-gray span {
    font-size: 17px;
  }

  .card-lineas .card-text {
    height: 120px;
    font-size: 18px;
  }

  .subt-about {
    font-size: 36px;
    line-height: 36px;
  }

  .titulo-blue-28 {
    font-size: 36px;
  }

  .about-us-section p {
    font-size: 18px;
  }

  .ppal-txt-casos {
    font-size: 36px;
  }
}

/* Adaptaciones para pantallas móviles */
@media (max-width: 768px) {

  #buscador-menu{
    display: block;
  }


  .bg-electric {
    padding-left: 70px;
  }

  #mega-menu-wrap-menu-principal #mega-menu-menu-principal > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-menu-principal #mega-menu-menu-principal > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-menu-principal #mega-menu-menu-principal > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link {
    background: #0087a8;
    padding-bottom: 34px;
  }

  .cont-top {
    max-width: 100%;
  }

  .form-prodcto{
    width:90%;
    margin: auto;
  }

  .destacado-title{
    font-size: 16px;
  }

  #mega-menu-menu-principal{
    padding-bottom: 40px;
  }

  .swiper-hero .swiper-pagination-bullets {
    position: absolute;
    bottom: 0.6%;
    left: auto;
  }

  .destacado-about {
    font-size: 18px;
  }

  .subt-about {
    font-size: 28px;
  }

  .titulo-blue-28, .ppal-txt-casos {
    font-size: 28px;
    line-height: 28px;
  }

  .sec-casos{
    padding: 0 20px;
  }

  .sec-imagen-der .btn-gray-dark{
    margin: 20px 0;
  }

  .swiper-casos .swiper-button-next::after {
    filter: brightness(0) invert(0);
  }

  .swiper-casos .swiper-button-prev::after {
    filter: brightness(0) invert(0);
  }

  .swiper-casos .swiper-button-next, .swiper-casos .swiper-button-prev {
    width: 6%;
  }

  .titulo-blue-28, .ppal-txt-casos {
    font-size: 28px;
    line-height: 28px;
  }

  .tit-preguntas {
    font-size: 28px;
  }

  .ico-interno {
    max-width: 48px;
  }

  .swiper-casos .card{
    margin: 0 20px;
  }

  .swiper-casos {
    width: 96%;
    position: relative;
  }

  .txt-idea {
    margin-top: 0;
    font-size: 28px;
  }

  #mega-menu-wrap-menu-principal #mega-menu-menu-principal > li.mega-menu-item > a.mega-menu-link {
    padding: 6px 12px;
    font-size: 20px;
  }

  .tit-interno {
    font-size: 28px;
  }

  .ico-curso-serv{
    margin-top: 0;
  }

  .cont-prod-inner{
    padding-bottom: 0;
    padding-right: 0;
    padding-left: 0;
  }

  .cont-cat{
    margin-bottom: 20px;
  }

  .card-producto .btn-white-prod{
    display: inline-block;
  }

  .filtro-sidebar{
    margin-bottom: 20px;
  }

  .diagonal-hero-section .col-md-6.bg-dark {
    min-height: 300px;
  }
  .hero-image-mask {
    min-height: 300px;
    clip-path: none;
  }
  .hero-text-content {
    padding: 2rem !important;
  }

  .blog-section .contact-buttons {
    bottom: 10%;
}

  .sec-impact .swiper-slide{
    padding-left: 6%;
  }
  .bg-movil {
    position: absolute;
    width: 94%;
    height: 70px;
    display: block;
    background-image: url("../../assets/img/decoracion.png"); /* Imagen de fondo */
    background-repeat: repeat-x;  /* La imagen se repetirá horizontalmente */
    z-index: 0;
    animation: slideBackground 10s linear infinite;  /* Animación que mueve el fondo */
    top:0px;
}

@keyframes slideBackground {
    0% {
        background-position-x: 0;
    }
    100% {
        background-position-x: 100%;  /* El fondo se mueve completamente a la derecha */
    }
}

  .logo-movil{
    position: absolute;
    top: 12px;
    width: 36%;
    height: 60px;
    background-image: url(../../assets/img/logo.svg);
    background-repeat: no-repeat;
    background-position-x: 0;
    background-position-y: 0px;
    background-size: contain;
  }

  .swiper-hero .swiper-button-next{
    right: -20px;
  }

  .search-section .text-white{
    padding-left: 8%;
  }

  .about-us-section .btn-gray{
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .cont-impacto-inner {
    margin-left: -10%;
  }

  .swiper-hero .swiper-button-prev{
    left: -20px;
  }

  .cont-logo{
    display: none;
  }
  .buscador{
    display: none;
  }

  .search-section .btn-gray{
    margin-left: 4% !important;
  }

  .cont-decoration{
    display: none;
  }
  .hero-first-txt{
    font-size: 22px;
    margin-bottom: 8px;
  }
  .hero-fsec-txt a, .hero-fsec-txt {
    font-size: 22px;
    line-height: 22px;
    margin-bottom: 20px;
  }
  .hero-bg-section{
    display: none;
  }
  .slide-text {
    margin-bottom: 20px;
  }
  .search-section .form-select, .search-section .cl-light-gray, .search-section .btn-gray {
    margin-left: 2%;
  }


  .ppal-txt-casos{
    margin-bottom: 20px;
  }

  .product-cards-section .card{
    margin-bottom: 20px;
  }

  .about-us-section {
    padding: 0 0;
    color: white;
  }

  .sub-back-blue{
    margin-top: 20px;
    opacity: 0.7;
  }

  .swiper-impacto .swiper-slide .card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    background-color: transparent;
    width: 80%;
    margin: auto;
    display: table-cell;
    text-align: center;
    align-items: baseline;
  }
  .swiper-impacto .card .cont-img-impacto {
    margin: 0 auto;
  }

  .card-title{
    text-align: center;
  }

  .card-text{
    text-align: center;
  }
  .logo-footer {
    width: 44%;
  }
  #mega-menu-wrap-menu-principal{
    margin-bottom: 20px;
  }

  .cont-menu-search{
    /*background-image: url("../../assets/img/logo.svg");  */
    background-repeat: no-repeat;
    background-size: 30%;
    background-position-x: 20px;
  }
  #mega-menu-menu-principal{
    margin-top: 19px !important;
  }

  #mega-menu-wrap-menu-principal .mega-menu-toggle {
    background: #101820;
  }

  #mega-menu-wrap-menu-principal .mega-menu-toggle + #mega-menu-menu-principal {
    background: #101820;
    height: 100vh;
  }

  #mega-menu-wrap-menu-principal #mega-menu-menu-principal > li.mega-menu-item.mega-toggle-on > a.mega-menu-link {
    background: #101820;
  }

}

/* Formulario Blog */
.formulario-novedades input[type="text"],
.formulario-novedades input[type="email"],
.formulario-novedades select {
  padding: 8px;
  border: 1px solid #ccc;
  width: 100%;
}

.formulario-novedades input[type="submit"] {
  background: #ccc;
  color: #000;
  padding: 10px 20px;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

.formulario-novedades input[type="submit"] {
  background-color: #d3d3d3;
  color: #000000;
  font-family: "Manrope", sans-serif;
  font-weight: bold;
  font-size: 16px;
  padding: 6px 20px;
  border: 0;
  border-radius: 0;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  position: relative;
  transform: skew(-15deg);
  transition: all 0.3s ease;
  letter-spacing: 0;
  overflow: hidden;
  cursor: pointer;
  margin-left: 10px;
}
.terminos-form-novedades{
  margin-top: 20px!important;
  margin-left: -10px;
  font-size: 14px;
}
.formulario-novedades input[type="submit"]:hover {
  background-color: #949494;
  color: #000000;
}
.formulario-novedades label,
.formulario-novedades .wpcf7-acceptance label {
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
}
.formulario-novedades input[type="text"],
.formulario-novedades input[type="email"],
.formulario-novedades select {
  border: 1px solid #ccc; 
  padding: 8px;
  background-color: #ffffff;
  color: #000000;
  font-family: "Manrope", sans-serif;
  width: 100%;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.formulario-novedades input[type="text"]:focus,
.formulario-novedades input[type="email"]:focus,
.formulario-novedades select:focus{
  outline: none;
  border-color: #d3d3d3; 
  box-shadow: 0 0 5px rgba(211, 211, 211, 0.8);
}


.formulario-novedades .select-input label{
  width: 100%;
}

@media (max-width: 992px) {
  .formulario-novedades {
    flex-direction: column;
    align-items: stretch;
  }

  .formulario-novedades > div {
    width: 100% !important;
  }

  .formulario-novedades > div[style*="align-self: flex-end;"] {
    align-self: stretch !important;
    margin-top: 10px;
  }

  .formulario-novedades input[type="submit"] {
    width: auto;
    margin-left: 0;
  }
}


.wpcf7-form p {
  position: relative;
  margin-bottom: 10px; 
}

.wpcf7-not-valid-tip {
  position: absolute;
  left: 0;
  width: 100%;
  font-size: 12px;
  line-height: 1;
   top: 130%;
  margin-top: 7px;
}

/* Formulario Servicios */
@media (min-width: 1100px) {
.formulario-servicios{
  padding: 0px 100px;
}
}
.formulario-servicios label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: #fff; 
}

.formulario-servicios input[type="text"],
.formulario-servicios input[type="email"],
.formulario-servicios input[type="tel"],
.formulario-servicios select {
  padding: 10px;
  width: 100%;
  border: 1px solid #ccc;
  background-color: #fff;
  color: #000;
  border-radius: 4px;
}
.formulario-servicios input[type="text"]:focus,
.formulario-servicios input[type="email"]:focus,
.formulario-servicios input[type="tel"],
.formulario-servicios select:focus{
  outline: none;
  border-color: #d3d3d3; 
  box-shadow: 0 0 5px rgba(211, 211, 211, 0.8);
}

/* === FORMULARIO FONDO OSCURO === */
.form-dark .wpcf7-response-output {
  color: #ffcc00;
  background-color: transparent;
  border: 1px solid #ffcc00;
  font-size: 15px;
}

.form-dark .wpcf7-not-valid-tip {
  color: #ff6666;
}

/* === FORMULARIO FONDO CLARO === */
.form-light .wpcf7-response-output {
  color: #cc0000;
  background-color: #f9f9f9;
  border: 1px solid #cc0000;
}

.form-light .wpcf7-not-valid-tip {
  color: #cc0000;
}

.formulario-servicios input[type="submit"]{
   background-color: #d3d3d3;
  color: #000000;
  font-family: "Manrope", sans-serif;
  font-weight: bold;
  font-size: 16px;
  padding: 6px 20px;
  border: 0;
  border-radius: 0;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  position: relative;
  transform: skew(-15deg);
  transition: all 0.3s ease;
  letter-spacing: 0;
  overflow: hidden;
  cursor: pointer;
  margin-left: 10px;
}
.formulario-servicios input[type="submit"]:hover {
  background-color: #949494;
  color: #000000;
}
.formulario-servicios label {
  color: #fff;
}
.formulario-servicios .text-white label{
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Formulario Flotante */
@media (min-width: 1100px) {
.formulario-flotante{
  padding: 0px 50px 20px 50px;
}
.modal-title{
  padding-left: 50px;
}
}
.formulario-flotante label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: #000; 
}

.formulario-flotante input[type="text"],
.formulario-flotante input[type="email"],
.formulario-flotante input[type="tel"],
.formulario-flotante select {
  padding: 10px;
  width: 100%;
  border: 1px solid #ccc;
  background-color: #fff;
  color: #000;
  border-radius: 4px;
}
.formulario-flotante input[type="text"]:focus,
.formulario-flotante input[type="email"]:focus,
.formulario-flotante input[type="tel"],
.formulario-flotante select:focus{
  outline: none;
  border-color: #d3d3d3; 
  box-shadow: 0 0 5px rgba(211, 211, 211, 0.8);
}

.formulario-flotante input[type="submit"] {
  background-color: #d3d3d3;
  color: #000000;
  font-family: "Manrope", sans-serif;
  font-weight: bold;
  font-size: 16px;
  padding: 6px 20px;
  border: 0;
  border-radius: 0;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  position: relative;
  transform: skew(-15deg);
  transition: all 0.3s ease;
  letter-spacing: 0;
  overflow: hidden;
  cursor: pointer;
  margin-left: 10px;
  width: 100%;
}
.formulario-flotante input[type="submit"]:hover {
  background-color: #949494;
  color: #000000;
}
.formulario-flotante label {
  color: #000;
}
.formulario-flotante .text-dark label{
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
}

.product_grid{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.loader {
  width: 15px;
  display: none;
  height: 15px;
  border: 2px solid #FFF;
  border-bottom-color: transparent;
  border-radius: 50%;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  }

  @keyframes rotation {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
} 

.loading .loader{
  display: inline-block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn .5s ease-in-out forwards;
}

#sectores-menu{
  transform: translateY(-100%);
}

.sectores-menu-open #sectores-menu{
  transform: translateY(0);
}

/* .sectores-menu-open{
  overflow: hidden;
} */

#main-megamenu{
  transform: translateY(-100%);
}

.main-megamenu-open #main-megamenu{
  transform: translateY(0);
}

/* .main-megamenu-open{
  overflow: hidden;
} */

.sub-menu{
  padding-left: 0;
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vcp-main-menu > li > a{
  letter-spacing: 3px;
}

.menu-ecolighting > li > a{
  color: #4BCB74;
}

.menu-electric > li > a{
  color: #F41938;
}

.menu-connect > li > a{
  color: #0087A8;
}

.megamenu{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: white;
  margin-bottom: 0;
  height: 100%;
  padding-left: 0;
  gap: 10px;
}

.megamenu > li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  padding-inline: 5px;
}

.megamenu > li > a{
  height: 100%;
  display: flex;
  align-items: center;
}

.menu-item{
  cursor: pointer;
  padding-inline: 5px;
}

#mega-menu-wrap-menu-principal{
  height: 100%;
}

#coursesContent.tab-content > .active{
  display:flex !important;
}

.label-product{
    background-color: #101820;
    color: white;
    padding-right: 20px !important;
    clip-path: polygon(0% 0%, 100% 0%, 95% 100%, 0% 100%);
}

/* 
.swiper-casos .swiper-slide:nth-child(3n+1) hr {
  color: #0087a8 !important;
}

.swiper-casos .swiper-slide:nth-child(3n+2) hr {
  color: #4bcb74 !important; 
}

.swiper-casos .swiper-slide:nth-child(3n) hr {
  color: #f41938 !important;
} */


.gracias-section{
  text-align: center;
}
.gracias-section .btn-gracias{
  background-color: #fff!important;
  color: #101820;
  font-weight: bold;
  margin-top: 15px!important;
}
.gracias-section a.btn-gracias:hover{
  background-color: #000!important;
}
.gracias-section .skew-box {
  background-color: #2ecc71;
  display: inline-block;
  padding:0.7rem 3rem;
  transform: skew(20deg);
}

.gracias-section  .skew-text {
  display: inline-block;
  transform: skew(-20deg); 
  color: white;
  font-size: 1.4rem;
  font-family: "Manrope", sans-serif;
  font-weight: 300;
}

@media(max-width:600px){
  .gracias-section .skew-box {
  padding:0.4rem 2rem;
  }
 .gracias-section  .skew-text {
    font-size: 1.1em;
  }
  .gracias-section p{
    font-size: 0.8em;
  }
}

.custom-logo{
  height: 100%;
  object-fit: contain;
}

.navbar-toggler-icon{
  background-image: url("../../assets/img/menu_open.svg") !important;
  background-size: 40px;
  object-fit: cover;
}


nav.collapsed .navbar-toggler-icon{
  background-image: url("../../assets/img/menu_close.svg") !important;
  background-size: 40px;
  object-fit: cover;

}

#mobile-menu{
  position: fixed;
  top: 0;
  transform: translateX(-100%);
  width: 100%;
  height: 100%;
  background-color: #101820;
  z-index: 3;
  transition: transform 0.3s ease-in-out;
}

body.nav-opened{
  overflow: hidden;
}

.nav-opened #mobile-menu{
  transform: translateX(0);
}

.megamenu-mobile > li{
  padding: 10px 0;
  border-bottom: 1px solid #FBFBFB;
}

.megamenu-mobile > li:has(.sub-menu){
 position: relative;
}

.megamenu-mobile > li:has(.sub-menu) > a::after{
  content: " ";
  position: absolute;
  right: 0px;
  height: 18px;
  width: 18px;
  background-image: url("../../assets/img/arrow-down.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.megamenu-mobile .sub-menu{
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
  margin-top: 0px !important;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.megamenu-mobile li:has(.sub-menu).expanded .sub-menu{
  max-height: 500px;
  
}

.megamenu-mobile li:has(.sub-menu) .sub-menu a::before{
  content: "- ";
  width: 10px;
  height: 2px;
  
}

.megamenu-mobile li:has(.sub-menu) .sub-menu li:first-child{
  margin-top: 10px;
}

.megamenu-mobile li:has(.sub-menu) .sub-menu li:last-child{
  margin-bottom: 10px;
}

#mobile-menu .btn-gray span{
  font-size: 14px;
}

.cut_text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  overflow: hidden;
}

.cut_text_2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}

.error{
  border: 1px solid #ff0000 !important;
}

/* Estilos Pag Contacto */
.hero-contacto h2 {
  font-size: 50px;
  font-weight: bold;
}

@media (max-width: 1024px) and (min-width: 768px) {
  .hero-contacto h2 {
    font-size: 45px;
  }
}

@media (max-width: 767px) {
  .hero-contacto h2 {
    font-size: 38px;
  }
}

.hero-contacto .mx-2{
  color: #000!important;
}

.contacto-section label{
  color: #fff;
}
.contacto-section span{
  color: #fff;
}
.wpcf7-not-valid-tip {
    color: #dc3232!important;
  }
.contacto-section .wpcf7-response-output{
    color: #ffcc00!important;
  }
.contacto-section h2{
  text-align: center;
  font-family: "Manrope", sans-serif;
}
.contacto-section h2 span{
  font-size: 45px;
}
.hero-contacto .text-contact{
  display: flex;
  align-items: center;
}  
@media (max-width: 767px) {
.contacto-section h2{
  margin-bottom: 30px;
  }
.contacto-section h2 span{
    font-size: 24px;
  }
  .hero-contacto .text-contact{
  display: block;
  align-items: center;
  text-align: center;
}  
}
