/* Estilos generales */
body {
    font-family: 'Roboto', sans-serif;
    display:none;
    width:100%;
  }

  
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;
}

.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);
    /* height: 155px; */
  }


  .navbar-brand img{
    height: 100%;
    max-height: 11vh;
  }

  .nav-link{
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    
    padding-bottom: 25px;
    
  }
  
  .above{
      position:absolute;
  }
  
  .under{
     font-weight:bold;
    color:white;
  }

  .nav-link:hover{
    font-weight: bold;
  }
  
  .nav-item{
    margin-left: 24px;
  }
 
  .solicitud-link{
    padding-bottom: 25px;
    padding-top: 25px;
  }

  .green-btn{
    padding: 10px 20px; /* Mayor padding para hacerlo cuadrado */
    border: 1px solid #3AB616; /* Borde verde claro */
    background-color: #ffffff; /* Fondo blanco */
    color: #3AB616; /* Texto 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 */
}

.green-btn:hover {
    background-color: #3AB616; /* Fondo verde claro al pasar el ratón */
    color: #ffffff; /* Texto blanco al pasar el ratón */
}

.ver-todos{
  width: 155px;
  height: 45px;
}

.titulo{
  background-color: #F5F5F5;
}

.portada{
    height: 640px;
    overflow: hidden;
    display: flex; /* Usamos flexbox */
    justify-content: center; /* Centramos horizontalmente */
    align-items: center;
}

.degradado {
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0)); /* Opacidad en degradado de izquierda a derecha */
    z-index: 1;
}

.portada-cuadro{
    position: absolute;
    z-index: 10;
    width: 50%;
    /* left:0px; */
    height: 613px;
}

.portada-texto{
    height: 100%;
    
}

.portada-interno{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: absolute; /* Posiciona el texto de forma absoluta dentro del contenedor */
    /* left: 10%;  */
    top: 10vw; 
    /* right:10%; */
    bottom: 10vw;
    max-width: 100%;
    /* padding: 10px; */
}

.green-btn-inverse{
    padding: 10px 20px; /* Mayor padding para hacerlo cuadrado */
    border: 2px solid #3AB616; /* 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: 250px;
    background-color: #3AB616;
    color: white;
}

.green-btn-inverse:hover{
  border: 2px solid #3AB616; /* Borde verde claro */
  background-color: #ffffff; /* Fondo blanco */
  color: #3AB616; /* Texto verde claro */
}

.botones-slider{
  z-index:100;
  position:absolute;
  left:0px;
  bottom:-80px;
}

.btn-carousel{
  height: 8px;
  width: 37px;
  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:613px;
}
  
  /* Estilos de la sección de servicios */
  
  .service-item {
    text-align: center;
    margin-bottom: 30px;
    /* border: 1px solid #ddd; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 365px;
    position: relative;
  }
  
  .service-item img {
    max-height: 100%;

  }

  .service-item div{
    overflow: hidden;
  }

  .service-item-cont{
    position: relative;
  }

  .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 365px;
    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 .overlay {
    opacity: 0.5;
  }

  .service-item-cont:hover .middle {
    opacity: 1;
  }


  h3{
    margin:0;
    padding: 24px;
    font-size: 20px;
  }
  

.about-info{
  background-color: #0542B7;
  color: white;
  padding:80px;
}

.two-panel{
  display: flex;
  padding-top:50px;
  padding-bottom:85px;
}

.nosotros-mas{
  width: 50%;
}
  
  /* Estilos de la sección de clientes */
  .clients {
    padding: 80px 0;
    padding-bottom:120px;
    background-color: #F5F5F5DB;
  }

  .cliente{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  
  }
  
  
  /* Estilos del pie de página */
  footer {
    padding-top: 50px;
    background-color: #333333;
    color: #fff;
  }
  
  footer h4 {
    color: #fff;
  }
  
  footer ul {
    list-style: none;
    padding: 0;
  }
  
  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: 10px;
  }
  
  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:#ffffffc0;
  }
  
  /* Estilos responsive */
  @media (min-width: 1470px) {
    .portada-interno{
      top:23%;
      bottom:23%;
    }
  }
  @media (max-width: 790px) {
    .hero .row {
      flex-direction: column-reverse;
    }
  
    .hero .row .col-md-6:first-child {
      margin-top: 30px;
    }
  
    .service-item {
      margin-bottom: 30px;
    }
  
    .about .row {
      flex-direction: column-reverse;
    }
  
    .about .col-md-6:last-child {
      padding: 20px;
    }

    #clientes-slider{
      min-height:550px;
    }

    .portada-interno{
      top:20%;
      bottom:20%;
    }

    .categorias-lista{
      display: none;
    }
  }

  @media (max-width: 990px){
    .mobile{
      display: block;
    }
    .monitor{
      display: none;
    }
    .barrasuperior1{
      display: none;
    }

    .empresa{
       font-size: 60px;
    }

    .descripcion{
      font-size: 19px;
    }

    .informacion{
      width: 75%;
    }

    .enviar-solicitud{
      width:50% !important;
    }

    .navbar{
      padding-bottom:9px !important;
    }

    .two-panel{
      display: block;
      padding-bottom: 0px;
    }
    
    .panel-1{
      padding-bottom: 50px;
    }

    .nosotros-mas{
      width: 100%;
    }

    .about-info{
      padding: 40px;
    }
  }

  @media (min-width: 990px){
    #navbarNav{
      display: none !important;
    }

    header{
      height:155px;
    }

    nav{
      height:155px;
    }
  }