/* Estilos generales */
body {
  font-family: "Nunito Sans";
  color: var(--Negro, #000);
  width: 100%;
  overflow-y: scroll;
}

.loading-screen{
  position: absolute;
  top: 0;
  height:100vh;
  width:100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


#loading-img {
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

main{
  
  display: none;
}
  
a {
  color: inherit; /* Hereda el color del texto del elemento padre */
  text-decoration: none; /* Quita la subrayado del enlace */
  cursor: pointer; /* Cambia el cursor al puntero al pasar sobre el enlace */
  outline: none; /* Quita el contorno al enfocar el enlace */
}

a:hover {
  color: inherit; /* Hereda el color del texto del elemento padre */
  /* Otros estilos específicos según tus necesidades */
}

.mobile{
  display:none !important;
}

.mobile-flex{
  display:none !important;
}

.modal-body{
  padding:5px;
}

.form-control, .form-select{
  border-radius: 0;
  min-height: 44px;
  border: 1px solid #C4C4C4;
}

  
/* Estilos del encabezado */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15);
  max-height: 115px;
}

.navbar{
  padding-top:14px;
  padding-bottom:14px
}

.navbar-brand {
  padding: 0;
}

.navbar-brand img{
  height: 57px;
}

.search{
  padding-right: 19px;
}

.search-container {
  position: relative;
}

.search-icon {
  cursor: pointer;
  color: white;
}

.search-input {
  width: 0;
  padding: 5px;
  border: none;
  background: transparent;
  transition: width 0.3s ease;
}

.search-input.active {
  width: 200px;
}

.social{
  padding-left: 5px;
}

.nav-item{
  margin-right: 16px;
}

.highlight{
  font-weight: 800 !important;
}

.filter{
  border-bottom: 4px solid #EB3833;
}

.above{
  position:absolute;
}

.under{
  font: weight 800px;;
  color:white !important;
}

.nav-link{
  padding-top: 10px !important;
  padding-left: 0px !important;
  padding-right: 0px !important;
  padding-bottom: 10px;

  color: #232222;

  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%; /* 16.5px */
  text-transform: uppercase;
  
}

.nav-link:hover{
  font-weight: 800;
  transition: font-weight 0.2s ease;
}


.solicitud-container{
  padding-top:7px;
}

.solicitud-link{
  border: 1px solid #EB3833;
  padding-right:10px;
}

.selected{
  background-color: #EB3833;
  color:white;
}

#presupuesto-link{
  padding-left: 13px !important;
  padding-right: 13px !important;

  padding-top: 10px;
  padding-bottom: 10px;
  
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%; /* 16.5px */
  text-transform: uppercase;
}

#presupuesto-link:hover{
  background-color: #EB3833;
  color: #ffffff;
  transition: background-color 0.3s, color 0.3s;
}

.green-btn{
  padding: 10px 20px; /* Mayor padding para hacerlo cuadrado */
  border: 1px solid black; /* Borde verde claro */
  background-color: #ffffff; /* Fondo blanco */
  font-weight: bold; /* Negrita */
  text-transform: uppercase; /* Convertir texto a mayúsculas */
  cursor: pointer; /* Cambiar el cursor al pasar por encima */
  transition: background-color 0.3s, color 0.3s; /* Transición suave */

  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  
}

.green-btn:hover {
    background-color: #EB3833; /* Fondo verde claro al pasar el ratón */
    color: #ffffff; /* Texto blanco al pasar el ratón */
    border: 1px solid #EB3833;
}

.green-btn-inverse{
  padding: 10px 20px; /* Mayor padding para hacerlo cuadrado */
  border: 2px solid #EB3833; /* Borde verde claro */
  font-size: 16px; /* Tamaño de fuente */
  font-weight: bold; /* Negrita */
  text-transform: uppercase; /* Convertir texto a mayúsculas */
  cursor: pointer; /* Cambiar el cursor al pasar por encima */
  transition: background-color 0.3s, color 0.3s; /* Transición suave */

  width: 171px;
  height: 52px;
  background-color: #EB3833;
  color: #FFF;

  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.96px;
}

.green-btn-inverse:hover{
border: 2px solid #EB3833; /* Borde verde claro */
background-color: #ffffff; /* Fondo blanco */
color: black; /* Texto verde claro */
}

#navbarNav{
  border-bottom: 2px solid #EB3833;
}

.ver-todos{
  width: 180px;
  height: 52px;
}

.titulo{
  /* background-color: #F5F5F5; */
}

.miga{
  padding-top:13px;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.miga a{
  font-weight: 700;
}

.main-video{
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: auto;
  transform: translateY(-50%);
}

.portada{
  overflow: hidden;
  display: flex; 
  justify-content: center; 
  align-items: center;
}

.degradado {
  position: absolute; 
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.67), rgba(0, 0, 0, 0));
  z-index: 1;
  mix-blend-mode: normal;
}

.degradado-rojo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to bottom left, rgba(235, 56, 51, 0.46), rgba(235, 56, 51, 0));
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
}

.portada-cuadro{
    position: absolute;
    z-index: 10;
    width: 576px;
    height: 653px;
}

.portada-texto{
    height: 100%;
    
}

.portada-interno{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: absolute;
    top: 404px; 
    bottom: 197px;
    max-width: 100%;
}

.portada-descripcion{
  overflow: hidden;
  max-height: 205px;
}

.baner{
  height:653px;
  position:relative;
  z-index:2;
}

.baner-interno{
  overflow: hidden;
  padding-top: 120px;
}

.baner-texto{
  max-height: 205px;
}

.empresa{
  color: #FFF;
  font-size: 53px;
  font-style: normal;
  font-weight: 700;
  line-height: 68px; /* 128.302% */
  text-transform: uppercase;
}

.botones-slider{
  z-index:100;
  position:absolute;
  left:0px;
  bottom:-115px;
  width: 1000px;
}

.btn-carousel{
  height: 5px;
  width: 32px;
  opacity: 0.5;
  background-color: white;
  border: none;
  margin-right: 3px;
}

.btn-carousel.active{
  opacity: 1;
}

.solicitud-container{
  display: flex;
}

h1{
    z-index: 1;
    font: 'Roboto';
    font-weight: normal;
    font-size: 4.4em;
    margin:0;
}

.descripcion{
    color: #F5F5F5;
    font-weight: 300;
    font-size: 23px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: -0.46px;
}


.poster{
  height:653px;
  position:absolute;
  top:0;
  width:100%
}

.titulo-seccion{
  color: var(--Negro, #000);
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin: 0;
}
  
/* Estilos de la sección de servicios */
  
.service-item {
  text-align: center;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 457px;
}

.service-item div{
  overflow: hidden;
}

.service-item-cont{
  position: relative;
  filter: grayscale(100%);
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 457px;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: #3AB616;
  z-index: 100;
}

.middle {
  transition: .2s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
  z-index: 101;
}

.service-item-cont:hover {
  transition: filter 0.6s ease;
  filter: grayscale(0%);
}

.service-logo{
  display: flex;
  position: absolute;
  right:30px;
  bottom:62px;
  height: 104px;
  width: 104px;
}


.service-item-name{
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 155.556% */
  text-transform: uppercase;
  padding-top: 9px;
}

.two-panel{
  display: flex;
  padding-top:50px;
  padding-bottom:85px;
}

.about-img{
  position: relative;
}

.about-info{
  padding-left: 82px;
  padding-top: 82px;
  padding-bottom: 82px;
}

.about-text{
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
}

.nosotros-mas{
  width: 33%;
}

.novedades-item {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* height: 457px; */
  position: relative;
}

.novedades-item-cont{
  height: 392px;

}

.novedades-item:hover .novedades-info{
  transition: background-color 0.6s ease;
  background-color: #F5F5F5;
}

.novedades-info{
  transition: background-color 0.5s ease;
  background-color: white;
  height:211px;
  padding:24px;
  padding-bottom: 3px;
}

.novedades-info:hover{
  transition: background-color 0.6s ease;
  background-color: #F5F5F5;
}

.etiqueta{
  color: var(--Rojo, #EB3833);
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  line-height: 140%; /* 19.6px */
  text-transform: uppercase;
  margin:0;
}

.novedades-titulo{
  font-size: 23px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%; /* 32.2px */
  margin-bottom:15px;
}

.epigrafe{
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.novedades-item div{
  overflow: hidden;
}

.leer-mas{
  color: rgba(0, 0, 0, 0.50);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.novedades-info:hover .leer-mas{
  transition: color 0.5s ease;
  color: black;
}

.novedades-item:hover .leer-mas{
  transition: color 0.5s ease;
  color: black;
}

.arrow{
  transition: filter 0.5s ease;
}

.novedades-info:hover .arrow{
  filter: sepia(100%) saturate(8000%);
}

.novedades-item:hover .arrow{
  filter: sepia(100%) saturate(8000%);
}

  
/* Estilos de la sección de clientes */
.clients {
  padding-top: 50px;
  padding-bottom:124px;
  background-color: #F5F5F5DB;
}

.cliente{
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(100%);
}

.cliente:hover{
  transition: filter 0.3s ease;
  filter: grayscale(0%);
}

.panel{
  
  
}

.panel-inner{
  height: 410px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  padding: 65px 24px 52px 24px;
  text-align: center;
}

.panel-titulo{
  text-align: center;
  font-size: 19px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
  padding-top: 28px;
  padding-bottom: 19px;
  margin:0;
}

.panel-img{
  height: 80px;
}

.panel-img img{
  width: 100%;
}

.panel-text{
  color: var(--Negro, #000);
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  overflow: hidden;
  font-size: 15px;
  margin:0;
}

/* SERVICIOS */

.servicio-logo{
  display: flex;
  flex-direction:column;
  justify-content: center;
  height: 104px;
  width: 104px;
  margin-right:34px;
}

.servicio-logo-mobile{
  display:flex;
  flex-direction:column;
  justify-content:center;
  height: 104px;
  width: 104px;
  position:absolute;
  padding-top:40px;
}

.servicio-descripcion{
  padding-top:80px;padding-bottom:64px;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

.texto2{
  padding-left: 12px;
}


.servicio-presupuesto{
  display: flex;
  justify-content: end;
  z-index: 1;
}


/* OBRAS REALIZADAS */

.solapa{
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px; /* 155.556% */
  text-transform: uppercase;
  
}

.solapa a{
  padding-bottom: 8px;
}

.obra-cont{
  height:288px;
  filter: grayscale(100%);
  cursor: pointer;
}

.obra-cont:hover {
  transition: filter 0.6s ease;
  filter: grayscale(0%);
}

.obras-info{
  transition: background-color 0.5s ease;
  background-color: white;
  height:104px;
  padding-bottom: 3px;
}

/* VIDEOS */

.video-item {
  text-align: center;
  margin-bottom: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.video-item div{
  overflow: hidden;
}

.video-item-cont{
  position: relative;
  filter: grayscale(100%);
  height: 248px;
  width: 100%;
}

.video-item-cont:hover {
  transition: filter 0.3s ease;
  filter: grayscale(0%);
}

.video-item-cont:hover .middle {
  transition: opacity 0.3s ease;
  opacity: 1;
}

.video-item-cont video{
  position:absolute;
  bottom:0;
  height:100%;
}

.video-item-name{
  text-align: start;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 155.556% */
  padding-top: 13px;
}

.reproductor{
  display: none;
}

.reproductor-link{
  display: none;
  height: 650px;
}

/* SOLICITUD */

.solicitud-titulo{
  margin:0;
  margin-left:13px;
  font-size: 21px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.enviar-solicitud{
  position:absolute;
  right:10px;
  bottom:0;
  width:80%;
}

/* Estilos del pie de página */
footer {
  display: none;
  padding-top: 82px;
  background-color: #000000;
  color: #fff;
}

.footer-logo{
  display:block;
  width:176px;
}

footer h4 {
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  opacity: 0.8;
  margin-bottom: 35px;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li{
  
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  opacity: 0.9;
  margin-bottom: 13px;
}

footer ul li a {
  color: #ffffffc0;
  text-decoration: none;
  
}


footer .social-icons a {
  color: #fff;
  font-size: 24px;
  margin-right: 10px;
}

footer .contact-list li {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

footer .contact-list li img {
  width: 16px;
  height: 16px;
  margin-right: 10px;
}

/* .whatsapp-container {
  position: relative;
} */


.whatsapp-btn img {
  width: 45px;
  height: 45px;
  padding: 5px;
}

.whatsapp-container {
position: fixed;
bottom: 55px;
right: 33px;
z-index: 999;
}

.whatsapp-btn {
    position: absolute;
    bottom: 10px;
    right: -10px;
    width: 70px;
    height: 70px;
    background-color: #22BE4A;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
  }

/* .whatsapp-btn {
  display: inline-block;
  background-color: #25D366;
  color: #fff;
  padding: 10px 15px;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s ease;
} */

.whatsapp-btn:hover {
  background-color: #128C7E;
}
/* 
.whatsapp-btn img {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  margin-right: 5px;
} */

  .derechos{
    color: #FFF;

    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    opacity: 0.8;
  }

  @media (max-width: 1200px) {
    .main-video{
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: auto;
      height: 100%;
    }
  }
  
  /* Estilos responsive */
  @media (max-width: 790px) {
    .hero .row {
      flex-direction: column-reverse;
    }
  
    .hero .row .col-md-6:first-child {
      margin-top: 30px;
    }

    /* .portada-cuadro{
      width: 70%;
    } */

    .empresa{
      font-size:40px;
      line-height: 50px;
    }
  
    .service-item {
      margin-bottom: 30px;
    }
  
    .about .row {
      flex-direction: column-reverse;
    }
  
    .about .col-md-6:last-child {
      padding: 20px;
    }

    #clientes-slider{
      min-height:550px;
    }

    .categorias-lista{
      display: none;
    }

    .enviar-solicitud{
      margin-top: 20px;
      position: inherit;
      width: 80%;
      right: auto;
      bottom: auto;
    }

    .panel-inner{
      height: 450px;
    }

    .reproductor-link{
      height:250px;
    }

    .footer-logo{
      width: 100%;
      padding: 20px;
    }
  }

  @media (max-width: 990px){
    .mobile{
      display: block !important;
    }
    .mobile-flex{
      display: flex !important;
    }
    .monitor{
      display: none !important;
    }
    .barrasuperior1{
      display: none !important;
    }

    /* .empresa{
       font-size: 60px;
    } */

    .descripcion{
      font-size: 19px;
    }

    /* .informacion{
      width: 50%;
    } */


    .navbar{
      padding-bottom:9px !important;
    }

    .two-panel{
      display: block;
      padding-bottom: 0px;
    }
    
    .panel-1{
      margin-bottom: 50px;
    }

    .nosotros-mas{
      width: 100%;
    }

    .about-info{
      padding: 40px;
    }

    .galeria-titulo{
      text-align: center;

    }
    
    .servicio-descripcion{
      padding-top:30px;
      padding-bottom:50px;
    }

    .texto1{
      padding-left: 12px;
      padding-bottom: 12px;
    }

    .texto2{
      padding-left: 24px;
      padding-right: 24px;
    }

    .servicio-presupuesto{
      justify-content: center;
      margin-top: 30px;
    }

    
  }

  @media (min-width: 990px){
    #navbarNav{
      display: none !important;
    }

    header{
      height:115px;
    }

    nav{
      height:115px;
    }
  }