
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    position: relative;
}
/* BOTONES */

.go-top-button{
    position: fixed;
    width: 60px;
    height: 60px;
    background: rgb(255, 255, 255);
    border-radius: 50%;
    cursor: pointer;
    transition: .2s;
    bottom: 105px;
    right: 20px;
    z-index: -1;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1),
    -5px -5px 5px rgba(0, 0, 0, 0.1),
    5px -5px 5px rgba(0, 0, 0, 0.1),
    -5px 5px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
}
.go-top-button:hover{
    transform: translateY(-10px);
}.go-top-button svg{
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: #000000;
    transition: .2s;
}
.show{
    z-index: 10;
}
.show .go-top-button{
    animation: popup .3s ease-in-out;
    width: 60px;
    height: 60px;
    z-index: 11;

    bottom: 45px;
    right: 20px;
}
.show svg{
    transform: translate(-50%,-50%) scale(1);
}
@keyframes popup{
    0%{
        width: 0rem;
        height: 0rem;
    }
    50%{
        width: 4rem;
        height: 4rem;
    }
    100%{
        width: 2.3rem;
        height: 2.3rem;
    }
}
.float {
    position: fixed;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    bottom: 25px;
    right: 20px;
    color: white;
    z-index: 2;
    padding: 12px;
    border-radius: 50%;
    text-align: center;
    transition: transform 0.2s ease-in-out;

}
.float:hover{
    background-color: #25d366;
    transform: translateY(-10px);
}



/*  ENCABEZADOS*/
header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.6s;
    padding:20px 20px;
    z-index: 1000;
    
}

.navbar{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-flow: row wrap;
    position: relative;
 
  
    
}

header button{
    border-color: transparent;
    background-color: transparent;
  


}
button svg{
    color: rgb(255, 255, 255);
    width: 100%;
}
header .logo{
    position: relative;
    width: 60px;
}

header ul{
    gap: 5px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
    font-weight: bold;
    flex-flow: row wrap;
    padding: 10px 20px 0 20px;
    font-size: 16px;
}
header ul li{
    position: relative;
    list-style: none;
}

header ul li a{
    position: relative;
    margin: 0 10px;
    font-size: 16px;
    text-decoration: none;
    color: #fff;
    letter-spacing: 2px;
    font-weight: 500px;
    transition: 0.6s;

}
.logo{
    flex: 1;
}

.logo a{
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    color: black;
    font-weight: bold;
    padding: 10px;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);

}
.logo a h1{
    font-size: 18px;
    color: #fff;
}
.banner{
    position: relative;
    width: 100%;
    height: 100vh;
    background: url(../img/banner.webp);
    background-size: cover;
    width: 100%;
}
.botones-banner{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 15px;
    gap: 15px;
    margin-top: 5px;
}
.btn-banner{
    padding: 15px 25px;
  font-size: 16px;
  text-decoration: none;
  color: white;
  background-color: #000000;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;

}
.btn-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
.btn-banner:hover {
    background-color: #ff0000; /* Cambia el color de fondo al pasar el cursor */
  box-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000, 0 0 30px #ff0000; /* Agrega un resplandor al botón */
}
.btn-banner:hover::before {
    opacity: 1; /* Hace visible el efecto neon al pasar el cursor */
  }
.text-banner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    color: white;
}
.text-banner h2 span{
    font-weight: bold;
    color: #ff0000;
    font-style: normal;
    width: 100%;
    text-shadow: 5px 5px 8px rgba(0, 0, 0, 0.9);

}
.text-banner p{
    font-size: 18px;
    width: 50%;
    padding:5px;
    font-weight: 900;
    color: rgb(0, 0, 0);
    background-color: #ffffff;
    margin: 0 auto;
  
}


.text-banner h2 {
    font-size: 1.8em; /* Ajusta el tamaño del texto según tus necesidades */
    margin: 0;
    text-align: center;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
    color: rgb(255, 255, 255);

}
header.sticky{
    padding: 5px 50px;
    background:#000000;
}
header.sticky .logo,
header.sticky ul li a{
    color: #ffffff;
}


/*hover*/

.link:after{
    content: "";
    position:absolute;
    background-color: #ff004c;
    height: 3px;
    width: 0;
    left: 0;
    bottom: -10px;
}
a:hover:after{
width: 100%;
}
/*hover*/

/*  ENCABEZADOS*/


/* ANIMACION REVEAL*/
.reveal{
    position: relative;
    transform: translateY(150px);
    opacity: 0;
    transition: all 2s ease;
   }
   .reveal.activo{
       transform: translateY(0px);
       opacity: 1;
   }

/* ANIMACION REVEAL*/


hr{
    border: 0;
  height: 1px;
  background-color: #3498db; 
  margin: 20px 0;
}





/* servicios */
.servicios-container{
 display: flex;
 justify-content: center;
 align-items:center;
 flex-wrap: wrap;
 margin-top: 60px;
}

.card {
    position: relative;
    width: 300px;
    height: 350px;
    margin: 20px;
}

.card .face {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    overflow: hidden;
    transition: .5s;
}

.card .front {
    transform: perspective(600px) rotateY(0deg);
    box-shadow: 0 5px 10px #000;
}

.card .front img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card .front h3 {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 45px;
    line-height: 45px;
    color: #fff;
    background: rgba(0,0,0,.4);
    text-align: center;
}

.card .back {
    transform: perspective(600px) rotateY(180deg);
    background: rgb(56, 121, 227);
    font-weight: bold;
    padding: 15px;
    color: rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    box-shadow: 0 5px 10px #000;
}

.card .back ul{
    padding: 8px;
}
.card .back .link {
    border-top: solid 1px #ffffff;
    height: 50px;
    line-height: 50px;
}

.card .back .link a {
    color: #ffffff;
}

.card .back h3 {
    font-size: 30px;
    margin-top: 20px;
    letter-spacing: 2px;
}

.card .back p {
    letter-spacing: 1px;
} 

.card:hover .front {
    transform: perspective(600px) rotateY(180deg);
}

.card:hover .back {
    transform: perspective(600px) rotateY(360deg);
}
/* servicios */
/*SOBRE NOSOTROS*/


.nosotros-seccion-home {
    margin-top: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.nosotros-titulo-home{
    margin-bottom: 25px;
    font-size: 20px;

}
.nosotros-titulo-home h1{
    color: rgb(253, 85, 33);

}

.main-home img{
    margin-top: 75px;
    transition: transform 0.3s;
    
}
.main-home img:hover {
    transform: scale(1.1); 

}
.nosotros-titulo-home h1{
    font-weight: 600;
}

.container-nosotros-home{
    width: 100%;
    background:white;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.iconos-nosotros-home{
    display: flex;
    align-items: start;
    justify-content: start;
    margin-top: 10px ;
    padding-top: 10px;
    gap: 25px;
}
.container-nosotros-home .main-home img{
    width: 450px;
    max-width: 100%;
    height: auto;
    padding: 0 10px;
}
.texto-nosotros-home{
    width: 600px;
    max-width: 100%;
    padding: 0 10px;

}



.texto-nosotros-home p {
    font-weight: lighter;
    color: #c77272;
    font-size: 16px;
    display: inline-block;
    width: 100%;
    margin: 0;
    text-align: justify;

  
}
.main-home{
    width: 1290px;
    max-width: 95%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
}
/*GALERIA*/
.img-gallery{
    width: 80%;
    margin: 50px auto 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 25px;
}
.img-gallery img{
    width: 100%;
    cursor: pointer;
    transition: 1s;
    box-shadow: 0 5px 10px #000;

}
.img-gallery img:hover{
    transform: scale(1.2);
}
.gallery-div{
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 12px;
}

.full-img{
    
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    position: fixed;
    top: -9%;
    left: 0;
    display: none;
    align-items: center;
    justify-content: center;
    margin-top: 55px;
    z-index: 1000;
    
}
.full-img span{
    position: absolute;
    top: 10%;
    right: 5%;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    z-index: 99;
}
.full-img img{
    width: 90%;
    max-width: 800px;
}
/*GALERIA*/

@media screen and (max-width:768px){
    .main-home{
        gap: 35px;
        margin: 0;
        padding: 0;
   
    }
    .full-img span{
        top: 10%;
        right: 6%;
    }
  
  
    
    
}


/*clientes home*/



.container{
    margin: 160px auto;
    max-width: 1200px;
    width: 95%;
}
.container h1{
    text-align: center;
    width: 100%;
    padding: 10px;
  
}
.container h1 span{
    color: rgb(253, 85, 33);
}

.container h3{
    text-align: center;
    margin-bottom: 60px;
    font-weight: lighter;
}
.slider-wrapper{
    position: relative;
}
.slider-wrapper .slide-button{
    position: absolute;
    top: 38%;
    height: 50px;
    width: 50px;
    color: #fff;
    border: none;
    outline: none;
    background: #000;
    font-size: 2.2rem;
    cursor: pointer;
    border-radius: 50%;

}
.slider-wrapper .slide-button#prev-slide{
    left: 5px;
    display: none;
}
.slider-wrapper .slide-button#next-slide{
    right: 5px;
}
.slider-wrapper .slide-button:hover{
    background: #444;
}
.slider-wrapper .image-list{
    display: grid;
    gap: 18px;
    font-size: 0;
    margin-bottom: 30px;
    overflow-x: auto;
    scrollbar-width: none;
    grid-template-columns: repeat(23,1fr);
}

.slider-wrapper .image-list::-webkit-scrollbar{
    display: none;
}
.slider-wrapper .image-list .image-item{
    width: 130px;
    height: 130px;
    object-fit:fill;
}

.container .slider-scrollbar{
    height: 24px;
    width: 100%;

    display: flex;
    align-items: center;
}
.slider-scrollbar .scrollbar-track{
    height: 2px;
    width: 100%;
    background: #ccc;
    position: relative;
    border-radius: 4px;
}

.slider-scrollbar:hover .scrollbar-track{
    height: 4px;
}
.slider-scrollbar .scrollbar-thumb{
    position: absolute;
    height: 100%;
    width: 50%;
    background: #000;
    border-radius: inherit;
    cursor: grab;
}
.slider-scrollbar .scrollbar-track:active{
    cursor: grabbing;
    height: 8px;
    top: -2px;
}
.slider-scrollbar .scrollbar-thumb::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -10px;
    bottom: -10px;
}

/*clientes home*/




/*SOBRE NOSOTROS*/

/* contacto */
.contacto-section{
    margin-top: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 70px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Sombra del formulario */
    background-image: url('../img/slider1.webp');
    background-size: cover;
    background-position: center center; /* Centra la imagen de fondo */
    overflow: hidden;
}




.formulario-container{
    width: 540px;
    z-index: 99;
    
}

form{
    padding: 50px 55px;
    border-radius: 20px;
    text-align: center;
    width: 100%;
    
    
}
.input-group{
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    text-align: left;
    
}


label{
    color: rgb(255, 255, 255);
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 15px;
    padding-top: 5px;
}
input, textarea{
    padding: 10px 15px;
    background-color: #ffffff;
    border: 2px solid #F0FAF1;
    color: #283629;
    outline: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Sombra del formulario */

}
.btn-form{
    margin-top: 10px;
    color: white;
    background-color: #000000;
    border: none;

}
.btn-form:hover{
   background-color: #6D42EB;
}


.contactanos{
    z-index: 99;
}
.contactanos h2{
    width: 100%;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 40px;
    color: white;
    padding: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);

}

/* contacto */




/*FOOTER*/
footer{
    bottom: 0;
    margin-top: 100px;
    width: 100%;
    background-color: #000000;
    color: white;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2); /* Sombreado */
    position: relative;
        margin-bottom: 0;
    
    
}
footer .footer-container{
    width: 100%;
    max-width: 1200px;
    margin:auto;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 50px;
    padding: 55px 0px;
}

.box{
    display: flex;
    flex-direction: column;
    gap: 10px;
    
}
.box h3{
    font-weight: 900;
}
.box span,a{
    color: white;
    padding-top: 15px;
    text-decoration: none;
}

.footer-container-2{
    font-size: 14px;
    text-align: center;
    padding: 20px 50px; 
}
.box-icons{
    display: flex;
    justify-content: flex-start;
   
    gap: 12px;
    margin-top: 10px;
}

#map{
    height: 100%;
    width:100%;
}
/*FOOTER*/




/*pestaña servicios*/
.main-container{
    width: 90vw;
    margin: 0 auto;
    padding: 40px 0;
}
.main-container > h2{
    text-align: center;
    padding: 10px 0;
    font-size: 35px;
}
.main-container > p{
    font-weight: 300;
    padding: 10px 0;
    opacity: 0.7;
    text-align: center;
}
.category-head{
    margin: 30px 0;
}
.category-head ul{
    list-style-type: none;

    justify-content: center;
    align-items: center;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    max-width: 100%;
    
}
.category-title{
    justify-content: center;
    display: flex;
    align-items: center;
    text-align: center;
    width: 300px;
    height: 75px;
    padding: 15px 25px;
    font-size: 16px;
    text-decoration: none;
    color: white;
    background-color: #000000;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}
.category-title:hover{
    opacity: 0.7;
}
.category-title li{
    padding: 0 10px;
}
.category-title span{
    color: #222;
}

.category-name{
    position: absolute;
    top: 20px;
    left: 20px;
    text-transform: uppercase;
    font-size: 13px;
    color: #fff;
    padding: 4px 10px;
    border-radius: 2px;
}

.post-content{
    padding: 25px;
}
.post-content-top{
    background: #80ced7;
    color: #fff;
    opacity: 0.8;
    padding: 5px 0 5px 15px;
}
.post-content-top span{
    padding-right: 20px;
}
.post-content-top .fa-comment, .post-content-top .fa-calendar{
    padding-right: 5px;
}
.post-content h2{
    font-size: 22px;
    padding: 12px 0;
    font-weight: 400;
}
.post-content p{
    opacity: 0.7;
    font-size: 15px;
    line-height: 1.8;
}


.read-btn:hover{
    background: #f6f6f6;
}



/***************/



/***********/

.active{
    background: #f0544f;
}

.servicios-inicio-fondo{
    width: 100%;
    height: 150px;
    background:#000000;
    overflow: hidden;
    background-image: url(../img/nosotros-bg.webp);
    background-size:cover;
    background-position:center center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.servicios-inicio-fondo h2{
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);

}
.servicios-fondo{
    width: 100%;
    height: 150px;
    background:#000000;
    overflow: hidden;

}
/*pestaña servicios*/



/*pestaña proyectos*/

.proyectos-fondo{
    width: 100%;
    height: 150px;
    background:#000000;
    overflow: hidden;

}
.proyectos-inicio-fondo{
    width: 100%;
    height: 150px;
    background:#000000;
    overflow: hidden;
    background-image: url(../img/nosotros-bg1.webp);
    background-size:cover;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}
.proyectos-inicio-fondo h2{
        text-align: center;
        font-size: 30px;
        color: white;
        font-weight: 900;
        text-shadow: 4px 4px 6px rgba(0,0,0,0.9);
   
}
.titulo-proyectos{
    margin-top: 60px;
    padding:25px 25px;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}
.titulo-texto h2{
    padding-bottom: 10px;
}
.titulo-texto{
    width: 40%;
    text-align: justify;

}

.titulo-texto p{
    display: inline-block;
    width: 100%;
    margin: 0;    
}  
.img-proyecto{
    width: 350px;
}
.img-proyecto img{
    width: 100%;
}


.titulo-proyectos h2{
    font-size: 38px;
    font-weight: bold;
    position: relative;
    display: inline-block;  
   
}

.decoracion {
    margin-top:60px ;
    margin-bottom:60px ;
    display: flex;
    align-items: center;
    position: relative;
}

.linea {
    flex: 1;
    height: 2px; /* Grosor de la línea */
    background-color: #000000; /* Color de la línea */
}

.circulo {
    width: 20px; /* Diámetro del círculo */
    height: 20px;
    background-color: #ccc; /* Color del círculo */
    border-radius: 50%;
    margin: 0 10px; /* Espaciado entre la línea y el círculo */
}

.container-proyectos{
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-template-rows: 300px;
    grid-gap: 20px;
    padding: 120px 0;
}
.box-proyectos img{
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;

}
.box-proyectos {
    position: relative;
    display: inline-block;
}

.box-proyectos:nth-child(1){
    grid-column-start: span 2;
}
.box-proyectos:nth-child(4){
    grid-column-start: span 2;
}

.superpuesto {
    position: absolute;
    bottom: 0; /* Ajusta la posición vertical para estar en la esquina inferior */
    left: 0; /* Ajusta la posición horizontal para estar en la esquina izquierda */
    color: white; /* Ajusta el color del texto según tus necesidades */
    font-size: 18px; /* Ajusta el tamaño del texto según tus necesidades */
    font-weight: bold;
    padding: 10px; /* Añade un poco de relleno alrededor del texto */
    z-index: 1; /* Asegura que el texto esté encima de la imagen */
    background: rgba(0, 0, 0, 0.5); /* 0.5 para una transparencia del 50% */
    width: 100%;
}
.superpuesto P{
    font-size: 14px;
}









/*pestaña proyectos*/


/*nosotros */
.nosotros-fondo{
    width: 100%;
    height: 150px;
    background:#000000;
    overflow: hidden;

}
.nosotros-inicio-fondo{
    width: 100%;
    height: 150px;
    background:#000000;
    overflow: hidden;
    background-image: url(../img/nosotros-bg1.webp);
    background-size:cover;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}
.nosotros-inicio-fondo h2{
    text-align: center;
    font-size: 30px;
    color: white;
    font-weight: 900;
    text-shadow: 4px 4px 6px rgba(0,0,0,0.9);
   
}

.nosotros-fondo h1{
    z-index: 1;
    color: white;
    font-weight: 900;
    text-shadow: 4px 4px 6px rgba(0,0,0,.7);
}
.nosotros-seccion{
    display: flex;
    align-items: center;
    justify-content:center ;
}
.nosotros-seccion h1{
    margin-top: 60px;
    font-size: 42px;
    text-align: center;
    position: relative;
    display: inline-block;
    font-weight: 200; 
 
}

.container-nosotros{
    margin-top: 60px;
    width: 100%;
    background:white;
    display: flex;
    justify-content: center;
    align-items: center;
}
.container-nosotros .main img{
    width: 480px;
    max-width: 100%;
    height: auto;
    padding: 0 10px;
    margin-top: 50px;
    
}


.texto-nosotros{
    width: 600px;
    max-width: 100%;
    padding: 0 10px;

}
.texto-nosotros p {
    display: inline-block;
    width: 100%;
    margin: 0;
    text-align: justify;
    font-weight: lighter;
    color: #000000;
    font-size: 16px;
    padding-left: 5px;
}
.main{
    width: 1290px;
    max-width: 95%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
}
.texto-nosotros h1{
    padding-left: 5px;
    font-size: 48px;
    letter-spacing: 1px;
    font-weight: 300;
    padding-left: 5px;
   
}
.texto-nosotros h4{
    font-size: 18px;
    color: #777;
    letter-spacing: 3px;
    font-weight: 400;

    padding-left: 5px;
}
/*nosotros */




/*INVERSIONISTAS */

.container-inversionistas{
   margin: 0 auto;
   
}
.texto-inversionistas{
    margin: 0 auto;
    width: 80%;
    padding-top:60px;
}
.inversionista-parrafo{
    margin-top: 15px;
}
.inversionista-parrafo ul{
    padding: 10px;
}
.inversionista-parrafo ul li{
    padding: 5px;
}
.entrevista-titulo {
    text-align: center;
    margin-top: 60px;
 
  }

  .entrevista-titulo h1 {
    position: relative;
    display: inline-block;
    font-weight: lighter;
    font-size: 32px;
    padding: 0 20px;
  }

  .entrevista-titulo h1::before,
  .entrevista-titulo h1::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50%;
    height: 1px;
    background-color: #333; /* Color de las líneas */
  }

  .entrevista-titulo h1::before {
    left: 0;
    margin-left: -50%;
  }

  .entrevista-titulo h1::after {
    right: 0;
    margin-right: -50%;
  }

  .informacion-entrevistado {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding-top: 25px;
  }

  .informacion-entrevistado p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 5px;
  }
  .contenedor-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .caja-flex {
    padding: 20px;
    margin: 10px;
    border: 1px solid #ddd;
  }
/*INVERSIONISTAS */







/*PESTAÑA SERVICIOS */

.flex-category{
    margin-top: 120px;
    width: 100%;
    display:grid;
    grid-template-columns: repeat(2,1fr);
    align-items: start;
    justify-content: center;
    gap: 120px;

}

.flex-category img{
    width: 550px;
    height: 335px;
   
}


.div-category ul{
    list-style:square;

}
.div-category li{
    margin-top: 14px;
    margin-bottom: 
    10px;
}
.servicios a {
    text-decoration: none; /* Quita el subrayado predeterminado */
    color: #000; /* Color del texto normal */
}

.servicios a:hover {
    color: rgb(255, 0, 0); /* Cambia el color del texto al pasar el ratón sobre el enlace */
    font-weight: bold;
}
.camion-category{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 100px;
}
.card-category{
    width: 325px;
    border-radius: 10px;
    overflow: hidden;
}
.card-category img{
    width: 100%;
    height: auto;
    object-fit: cover;
}
.info-camion h2{
    margin-top: 5px;
    font-size: 20px;
    padding-left: 8px;
}
.info-camion p{
    font-size: 15px;
}
.btn-form-contacto{
    margin-top: 10px;
    color: white;
    background-color: #000000;
    border: none;
    width: 250px;
    letter-spacing: 3px;
    max-width: 100%;
}

.contact-body{
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1rem;
}
.contact-info{
    margin: 2rem 0;
    text-align: center;
    padding: 2rem 0;
}
.contact-info span{
    display: block;
}
.contact-info div{
    margin: 0.8rem 0;
    padding: 1rem;
}
.contact-info span .fas{
    font-size: 2rem;
    padding-bottom: 0.9rem;
    color: #f7327a;
}
.contact-info div span:nth-child(2){
    font-weight: 500;
    font-size: 1.1rem;
}
.contact-info .text{
    padding-top: 0.4rem;
}
.contact-form{
    padding: 2rem 0;
    border-top: 1px solid #c7c7c7;
}
.contact-form form{
    padding-bottom: 1rem;
}
.form-control{
    width: 100%;
    border: 1.5px solid #c7c7c7;
    border-radius: 5px;
    padding: 0.7rem;
    margin: 0.6rem 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    outline: 0;
}
.form-control:focus{
    box-shadow: 0 0 6px -3px rgba(48, 48, 48, 1);
}
.contact-form form div{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 0.6rem;
}

.contact-form h2{
    padding-bottom: 20px;
}
.contact-form > div img{
    width: 85%;
}
.contact-form > div{
    margin: 0 auto;
    text-align: center;
}
.contact-footer{
    padding: 2rem 0;
    background: #000;
}


.contact-footer h3{
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 1rem;
    text-align: center;
}
.social-links{
    display: flex;
    justify-content: center;
}
.social-links a{
    text-decoration: none;
    width: 40px;
    height: 40px;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0.4rem;
    transition: all 0.4s ease;
}
.social-links a:hover{
    color: #f7327a;
    border-color: #f7327a;
}

@media screen and (min-width: 768px){
    .contact-bg .text{
        width: 70%;
        margin-left: auto;
        margin-right: auto;
    }
    .contact-info{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

}

@media screen and (min-width: 992px){
    .contact-bg .text{
        width: 50%;
    }
    .contact-form{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
    }
}

@media screen and (min-width: 1200px){
    .contact-info{
        grid-template-columns: repeat(4, 1fr);
    }
}


/*PESTAÑA SERVICIOS */


/*PESTAÑA CLIENTES */
.clientes{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 100px;

}
.card-clientes{
    width: 170px;
    height: 150px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Sombra del formulario */
}

.card-clientes img{
    width: 100%;
    height: 150px;
    max-height: 100%;
    object-fit: fill;
}
.info-clientes h2{
    margin-top: 5px;
    font-size: 20px;
    padding-left: 8px;
}
.info-clientes p{
    font-size: 15px;
}

/*PESTAÑA CLIENTES */



/*PESTAÑA servicios de INSTEC*/
.contenedor-servicio{
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding:50px;
    gap: 25px;
    max-width: 1450px;
}
.img-servicio{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 450px;
    height: 350px;
}
.img-servicio img{
 width: 450px;
 height: 350px;
}
.texto-servicio {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: start;
    justify-content: start;
    padding: 100px;
    margin-bottom: 10px;
}
.texto-servicio h2{
    margin-bottom: 25px;
}
.texto-servicio h4{
    letter-spacing: 4px;
}
.btn-servicios{
    margin-top: 10px;
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 15px;
}
.btn-servicios a{
    color: #000;
}
/*PESTAÑA servicios de INSTEC*/


header button{
    display: none;
}


/*RESPONSIVIDAD PARA TODOS LOS DISPOSITIVOS */
@media screen and (min-width:1024px) and  (max-width:1366px ) {
     
    header.sticky {
        padding: 5px 20px;
        background: #000000;
    }
    header ul li a {
        margin: 0 5px;
    }
    header.sticky .navbar a h1 {
        font-size: 16px;
    }
    .logo a h1 {
        font-size: 16px;
        color: #fff;
    }
}
   
@media screen and (min-width:1800px) and  (max-width:2560px ) {
   


    /* HEADER*/
    header.sticky {
        padding: 50px 50px;
        background: #000000;
    }

 
    header.sticky .navbar a h1 {
        display: none;
    }
    header ul{
        padding: 30px 30px 30px 30px;
        font-size: 16px;
    }
        header ul li a {
            text-align: center; 
            padding: 15px;
            font-size: 25px;
            margin: 0 5px;
        }
    
       .logo{
        font-size: 80px;
        padding-top: 30px 30px;
       }
        .logo a h1{
            font-size: 32px;
        }
        .logo a img{
            width: 85px;
        }
    
        .text-banner h2 {
            font-size: 3.5em;
            margin: 45px 0;
            text-align: center;
            text-shadow: 5px 5px 8px rgba(0, 0, 0, 0.5);
            font-weight: bold; 
          
    
        }
     
        .btn-banner {
                padding: 40px 55px;
                font-size: 25px;
                margin-top: 10px;
        }
        
        .texto-nosotros-home p {
            font-size: 18px;
        }
    
        .gallery-div {
            font-size: 14px;
        }
            /* HEADER*/
    
    
     /* SERVICIOS HOME*/
     .card {
    
        width: 400px;
        height: 550px;
    
    }
    .card .front h3 {
        font-size: 30px;
    }
    .card .back ul li{
        font-size: 26px;
    }
    .card .back .link{
        font-size: 26px;
    }
    
    
     /* SERVICIOS HOME */
    
     /*NOSOTROS HOME*/
     .texto-nosotros-home {
        width: 1500px;
        max-width: 100%;
        padding: 20px 10px;    
        font-size: 30px;
    }
    .texto-nosotros-home p{
        width: 1500px;
        max-width: 100%;
        padding: 20px 10px;    
        font-size: 25px;
    }
    
    
    
    /*NOSOTROS HOME*/

    .container h1 {
      
        font-size: 40px;
    }
    .container h3 {
        font-size: 30px;
    }

   

    /*CONTACTO HOME*/
    .contactanos h2 {
        font-size: 70px;
    }
    .contacto-section {
        gap: 10px;
        justify-content: space-around;
    }
    
   
    .input-group input{
        width: 100%;
        font-size: 30px;
        padding: 20px;
    }
    .input-group textarea{
        font-size: 30px;
    }
    .input-group{
        font-size: 25px;
        width: 600px;
    }
    .input-group label{
        font-size: 30px;
    }
    /*CONTACTO HOME*/
    
    
        /*HOME SERVICIOS*/
      
        .info-camion p{
            font-size: 18px;
        }
        .info-camion span{
            font-size: 18px;
        }
        /*HOME SERVICIOS*/
        
        /*HOME  proyectos*/
      
        .titulo-proyectos p{
            font-size: 18px;
        }
        /*PHOME  proyectos/
    
         /*HOME  nosotros*/
      
         .texto-nosotros p{
            font-size: 18px;
        }
        .gallery-div p{
            font-size: 26px;
        }
        /*HOME  nosotros*/

    
        /*PESTAÑA SERVICIOS*/
        .proyectos-inicio-fondo h2{
            font-size: 48px;
        }
        .category-title {
          
            width: 500px;
            height: 100px;
            padding: 25px 35px;
            font-size: 25px;
        
        }
        .div-category ul,h2 {
            font-size: 25px;
        }
        .img-category img{
            width: 650px;
            margin: 0 auto;
            display: flex;
        }
        .card-category {
            width: 525px;
        
        }
        .flex-category {
            gap: 1px;
        }
        .info-camion h2{
            font-size: 25px;
        }
        .info-camion p {
            font-size: 25px;
        }
        .info-camion span{
            font-size:25px ;
        }
        .texto-servicio h4 {
            font-size: 25px;
        }
        .texto-servicio h2 {
            font-size: 35px;
        }
        .texto-servicio p {
            font-size: 25px;
        }
       
        /*PESTAÑA SERVICIOS*/

         /*PESTAÑA PROYECTOS*/
         .main-proyectos{
            width: 100%;
            margin: 0 auto;
         }
        .container-proyectos{
            width: 100%;
            margin: 0 auto;
        }
        .titulo-proyectos{
            width: 100%;
        }
        .img-proyecto img {
            width: 525px;
        }
        .superpuesto p{
            font-size: 20px;
        }
        .titulo-proyectos h2 {
            font-size:48px;
        }
        .titulo-proyectos p{
            font-size: 32px;
        }
        .card-proyectos h3{
            font-size: 28px;
        }


         /*PESTAÑA PROYECTOS*/
        .texto-nosotros h4{
            font-size: 30px ;
        }
        .texto-nosotros p{
            font-size: 24px ;
        }
         /*PESTAÑA PROYECTOS*/

         /*CONTACTO*/
        .contact-info .text{
            font-size: 22px;
        }
        .contact-info div span{
            font-size: 22px;
        }
        .form-control {
            
            font-size: 22px;
        }
        
         /*CONTACTO*/
         /*clientes*/
         .nosotros-inicio-fondo h2 {
            font-size: 48px;
        }
        .proyectos-inicio-fondo h2{
            font-size: 48px;
        }
        
         /*clientes */



         .main {
            width: 1490px;
        }
        .texto-nosotros {
            width: 1000px;}

            .div-category ul, h2 {
                font-size: 30px;
            }
            .div-category ul, h3{
                font-size: 26px;
            }
            .inversionista-parrafo {
                font-size: 20px;
            }
            .inversionista-parrafo ul li {
                font-size: 22px;
            }
            .entrevista-titulo h1 {
                font-size: 34px;
            }
            .informacion-entrevistado p{
                font-size: 22px;
            }
            .caja-flex{
                font-size: 22px;
            }

            .clientes {
                width: 1000px;
                margin: 60px auto;
            }

/*FOOTER*/

footer .footer-container{
  
    grid-gap: 150px;
    padding: 65px 0px;
}

.box{
    display: flex;
    flex-direction: column;
    gap: 30px;
    font-size: 28px;
}


.footer-container-2{
    font-size: 28px;
    text-align: center;
   
        /*FOOTER*/
    }

#mapa{
    width: 700px;
    height: 400px;
}
}
    


@media screen and (min-width:1920px) and (max-width:1999px){
    /* HEADER*/
  
    header.sticky {
        padding: 50px 50px;
        background: #000000;
    }
    .proyectos-inicio-fondo h2{
        width: 100%;
        text-align: center;
        font-size: 32px;
    }
    .nosotros-inicio-fondo h2{
        width: 100%;
        text-align: center;
        font-size: 32px;
    }
    .texto-nosotros-home p {
        font-size: 18px;
    }

    .gallery-div {
        font-size: 14px;
    }
        /* HEADER*/


    /*PESTAÑA SERVICIOS*/
  
    .info-camion p{
        font-size: 18px;
    }
    .info-camion span{
        font-size: 18px;
    }
    /*PESTAÑA SERVICIOS*/
    
    /*PESTAÑA proyectos*/
  
    .titulo-proyectos p{
        font-size: 18px;
    }
    /*PESTAÑA proyectos/

     /*PESTAÑA nosotros*/
  
     .texto-nosotros p{
        font-size: 18px;
    }
    /*PESTAÑA nosotros*/
    .flex-category{
        gap: 1px;
    }
}

@media screen and (max-width:1024px){
     /*HOME*/
    /*HEADER*/
    nav button{
        display: block;
        cursor: pointer
    }
     nav .menu{
        width: 100%;
        height: 0;
        transition: all .5s ease;
        justify-content: center;
        overflow: hidden;
    }
     nav .menu.activado{
        height: 100vh;

    }
    .fondo-oscuro{
        background-color: #000000;
    }
    
        
   .menu ul {
        display: block;
     }
    .menu ul li{
         text-align: center;
         padding: 15px;
     }

     .text-banner h2 {
        font-size: 1.5em;
        margin: 0;
        
        text-align: center;
        text-shadow: 5px 5px 8px rgba(0, 0, 0, 0.5);
        font-weight: bold; 

    }


     /*HEADER*/


     /*NOSOTROS HOME*/
     .texto-nosotros-home {
        width: 800px;
        max-width: 100%;
        padding: 20px 10px;    
    }
    /*NOSOTROS HOME*/
    
    
    /*SERVICIOS PAGINA*/

    .flex-category {
        margin-top: 50px;
        grid-template-columns: repeat(1,1fr);
        gap: 70px;
    }
    .img-category{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
    }

    .div-category{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }
    
    .texto-servicio {
        padding: 0;
        margin-top: 100px;
        margin-bottom: 75px;
    }
    .contenedor-servicio {
        gap: 35px;
    }


    /*SERVICIOS PAGINA*/

   

    footer .footer-container{
        width: 90%;
        grid-template-columns: repeat(1,1fr);
        grid-gap: 30px;
        padding: 25px 0px;
       
    }
    footer{
        margin-top: 800px;
    } 
    .text h3 p{
    font-size: 10px;
    }   
    /*HEADER*/

    .container-proyectos{
        padding: 160px 20px;
    }

    .contenedor-servicio{
        flex-direction: column;
        gap: 0;
        padding: 0 20px;
        margin: 120px auto;
     }
}


/*TABLETS*/

@media screen and (max-width:768px){
   
    /*HOME*/
    /*HEADER*/

    nav button{
        display: block;
        cursor: pointer
    }
     nav .menu{
        width: 100%;
        height: 0;
        transition: all .5s ease;
        justify-content: center;
        overflow: hidden;
    }
     nav .menu.activado{
        height: 100vh;

    }
    .fondo-oscuro{
        background-color: #000000;
    }
    
        
   .menu ul {
        display: block;
     }
    .menu ul li{
         text-align: center;
         padding: 15px;
     }

     .text-banner h2 {
        font-size: 1.5em;
        margin: 0;
        
        text-align: center;
        text-shadow: 5px 5px 8px rgba(0, 0, 0, 0.5);
        font-weight: bold; 

    }
  
    /*HEADER*/

     /*SOBRE NOSOTROS HOME*/
     .full-img span{
        position: absolute;
        top: 8%;
        right: 5%;
        font-size: 30px;
        color: #fff;
        cursor: pointer;}
       

     /*SOBRE NOSOTROS HOME*/

    /*contacto home*/
 
    .contacto-section{
        margin-top: 120px;
        flex-wrap: wrap;
        gap: 0px;
      }
      .contactanos h2{
        font-size: 30px;
        margin-top:20px;
        padding: 10px;
        text-align: center;
      }
      .input-group{
        margin: 20px;
        padding: 20px;
      }
    
    
        form{
            margin: 0;
            padding: 0;
        }
     /*contacto home*/
    
   
 
    
    
    /*HOME*/
    
    /*SERVICIOS PAGINA*/

    .flex-category {
        margin-top: 50px;
        grid-template-columns: repeat(1,1fr);
        gap: 70px;
    }
    .img-category{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
    }

    .div-category{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        padding: 10px;
    }
    
    .contenedor-servicio{
       flex-direction: column;
       gap: 0;
       padding: 0 20px;
       margin: 120px auto;
    }
    .texto-servicio{
        margin:35px 0;
        padding: 0;
    }
    .nosotros-titulo-home {
        margin-bottom: 15px;
        font-size: 20px;
    }

    /*SERVICIOS PAGINA*/

    /*Proyectos PAGINA*/
    .titulo-texto{
        width: 100%;
    }
    .box-proyectos{
        height: 275px;
        margin-left: 10px;
        margin-right: 10px;
    }
    .box-proyectos img{
        height: 275px;
        object-fit: cover;
        width:525px;
      
    }
    .box-proyectos:nth-child(1){
        grid-column-start: span 1;
    }
    .box-proyectos:nth-child(4){
        grid-column-start: span 1;
    }
    .container-proyectos {
  
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
      
    }
    /*Proyectos PAGINA*/



    /*Inversionistas PAGINA */
    .texto-inversionistas{
        
        width: 100%;
        padding: 30px 30px;
    }

    .contenedor-flex{
        display: block;
    }
    .entrevista-titulo h1::before,
    .entrevista-titulo h1::after {
    display: none;
    }

 
      
    /*Inversionistas PAGINA */

    footer .footer-container{
        width: 90%;
        grid-template-columns: repeat(1,1fr);
        grid-gap: 30px;
        padding: 25px 0px;
       
    }
    footer{
        margin-top: 800px;
    } 
    .text h3 p{
    font-size: 10px;
    }   
}


@media screen and (max-width:375px){
    .img-servicio {
        width: 330px;
        height: 250px;
    }
    
    .img-servicio img {
      
        width: 100%;
        height: 100%;
    }
}





@media screen and (min-width:375px) and (max-width:595px){
    /* header */
    header {
       
        padding: 10px 10px;
       
    }
    .servicios-fondo , .proyectos-fondo,.nosotros-fondo{
        height: 95px;
    }
    
    header.sticky{
        padding: 5px 20px;
        background:#000000;
    }
    .btn-banner{
        padding: 15px;
    }
    /* header */

    .flex-category img{
        width: 310px;
        height: 245px ;
    }
    .gallery-div p {
        font-size: 18px;
    }

    .img-servicio {
        width: 350px;
        height: 325px;
    }
    .img-servicio  img{
        width: 100%;
        height: 100%;
    }

    /*PROYECTOS */
    .box-proyectos{
        height: 175px;
    }
    .box-proyectos img{
        height: 175px;
        object-fit: cover;
        width:295px;
    }
    .box-proyectos:nth-child(1){
        grid-column-start: span 1;
    }
    .box-proyectos:nth-child(4){
        grid-column-start: span 1;
    }
    .container-proyectos {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
     
    }
    .img-proyecto {
        width: 295px;
     
    }
   
    
}


@media screen and (max-width:425px){
    /* header */
    header {
       
        padding: 5px;
       
    }
    .servicios-fondo {
        width: 100%;
        height: 125px;
        background: #000000;
        overflow: hidden;
    }
    header.sticky{
        padding: 5px 5px;
        background:#000000;
    }
    .botones-banner {
        gap: 35px;
    }
    /* header */

    .flex-category img{
        width: 310px;
        height: 245px ;
    }
    .gallery-div p {
        font-size: 16px;
    }
    .card-proyectos img{
        height: 225px;
    }
    .card .back h3{
        font-size: 25px;
    }
    .container-proyectos {
        padding-top:20px;
    }
}

@media screen and (min-width:250px) and (max-width:366px){
    header {
       
        padding: 0;
       
    }
    .logo a h1 {
        font-size: 14px;
        color: #fff;
    }
    
    header.sticky{
        padding: 5px 10px;
        background:#000000;
    }
    .servicios-fondo , .proyectos-fondo,.nosotros-fondo{
        height: 110px;
    }
    .flex-category img{
        width: 250px;
        height: 195px ;
    }
    .div-category{
        padding: 10px;
    }

    /*PROYECTOS PESTAÑA */

    .box-proyectos{
        margin: 0;
        height: 175px;
        width:260px;
    }
    .box-proyectos img{
        height: 100%;
        object-fit: cover;
        width:100%;
    }
    .box-proyectos:nth-child(1){
        grid-column-start: span 1;
    }
    .box-proyectos:nth-child(4){
        grid-column-start: span 1;
    }
    .container-proyectos {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
     
    }
    .img-proyecto{
        width: 240px;
        height: 175px;
    }

    .img-proyectos img{
        width: 100%;
        height: 100%;
    }

    .img-servicio {
        width: 240px;
        height: 225px;
    }
    
    .img-servicio img {
      
        width: 100%;
        height: 100%;
    }
    .texto-servicio h2 {
        font-size: 20px;
        margin-top: 5px;
        margin-bottom: 10px;
    }
    .texto-servicio p{
     
        font-size: 14px;
    }

}