:root {
    --bs-body-font-family: 'DM Sans', sans-serif; /* o la que quieras usar */
    --bs-body-font-size: 1rem; /* o 1.125rem */
    --bs-letter-spacing: 0.5px !important;
}



    #heroCarousel .carousel-item {
      position: relative;
      height: 100vh; /* ocupa toda la pantalla */
      overflow: hidden;
    }
    #heroCarousel .carousel-item iframe {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 100vw;
      height: 56.25vw; /* relación 16:9 */
      min-height: 100%;
      min-width: 177.77vh; /* relación 16:9 */
      transform: translate(-50%, -50%);
      z-index: 1;
      pointer-events: none; /* evita que se pueda pausar el video */
    }
    #heroCarousel .carousel-caption {
      position: absolute;
      z-index: 2;
    }





/* Panel interno, alineado al container y debajo del botón */
.menu-panel{
  box-shadow: 0 6px 18px rgba(0,0,0,.15);
  border-top: 1px solid rgba(0,0,0,.08);
  position: absolute;
  top: 100%;        /* justo debajo de la navbar */
  left: 0;          /* alineado al borde del .container */
  width:350px;     /* ancho del panel */
  min-height: 100vh; /* lo que pediste */
  height: 515px;
  background: #fff; 
  box-shadow: 0 6px 18px rgba(0,0,0,.15);
  border-top: 1px solid rgba(0,0,0,.08);
  padding: .5rem 0;
  z-index: 1030;
  margin-left: 50px;
  margin-top: -37px;
}
.navbar-nav{
  margin-top: 85px;
}



/* Estilos de links */
#nav .nav-link{ 

  color:#111; 
  font-weight:300; 
  padding:.15rem 4.5rem;
  font-size: 20px;
  line-height: 38px;
  color: #000000;

   }
#nav .nav-link:hover{ background:#f8f9fa; }

/* Evitar scroll horizontal por el panel */
body{ overflow-x:hidden; }

.menu-panel .btn-close {
  filter: invert(0);        /* negra sobre fondo blanco */
  width: 1.25rem;
  height: 1.25rem;
  opacity: .7;
  transition: opacity .2s;
  padding:.75rem 4.5rem;

}
.menu-panel .btn-close:hover {
  opacity: 1;
}

body {
  letter-spacing: var(--bs-letter-spacing) !important;
}

.hero-slide {
  min-height: 100vh; /* altura del hero */
  background-size: cover;
  background-position: center;
  background-image: url('img/slide1.jpg'); /* fallback si no se pone inline */
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0; /* top:0; right:0; bottom:0; left:0; */
  background: rgba(0, 0, 0, 0.45); /* nivel de oscuridad */
  z-index: 0; /* 👈 debajo del contenido */
}

/* Contenido dentro del slide (texto, botones, etc.) */
.hero-slide > * {
  position: relative;
  z-index: 1; /* 👈 encima del overlay */
}

 #heroCarousel h1{
  font-size: 60px;
  font-weight: 700;
  line-height: 56px;
  color: #ffffff;
 }

.navbar-toggler {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  background: transparent;
  padding: 0.25rem 0.5rem;
  transition: filter 0.3s ease;
}

.navbar-toggler-icon {
  width: 1.2rem;
  height: 1.2rem;
}






.fade-in-fwd {
  opacity: 0;
  transform: translateZ(-80px);
  will-change: transform, opacity;
}

.fade-in-fwd.show {
  -webkit-animation: fade-in-fwd 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
          animation: fade-in-fwd 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

@-webkit-keyframes fade-in-fwd {
  0% {
    -webkit-transform: translateZ(-80px);
            transform: translateZ(-80px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    opacity: 1;
  }
}

@keyframes fade-in-fwd {
  0% {
    -webkit-transform: translateZ(-80px);
            transform: translateZ(-80px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    opacity: 1;
  }
}



  .navbar.transition {
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
  }

  /* Estado al hacer scroll */
  .navbar.transparent {
    background-color: rgba(33, 37, 41, 0.5) !important; /* 50% opacidad */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }


.backdrop-dark {
  background: rgba(0,0,0,0.45);
}

.hero-title {
  font-size: 2rem;
}
@media (min-width: 992px) {
  .hero-title { font-size: 3rem; }
}




.backdrop-dark {
  background: rgba(0,0,0,0.45);
}

.hero-title {
  font-size: 2rem;
}
@media (min-width: 992px) {
  .hero-title { font-size: 3rem; }
}

/* Indicadores verticales */
.carousel-indicators-vertical {
      z-index: 33;
  position: absolute;
  top: 50%;
  right: 11%;          /* alineado con el container (ajustalo si usás padding distinto) */
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0;
  padding: 0;


}

.carousel-indicators-vertical button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background-color: rgba(255,255,255,0.5);
}

.carousel-indicators-vertical button.active {
  background-color: #ffffff; /* color activo */
}


    /* Placeholders (bloques ficticios) */
    .ph {
      background: repeating-linear-gradient(
        45deg,
        #e9ecef,
        #e9ecef 10px,
        #dee2e6 10px,
        #dee2e6 20px
      );
      border: 1px dashed #adb5bd;
    }
    .ph-dark { background: #0b0f1a; }
    .ratio-21x9 { --bs-aspect-ratio: calc(9 / 21 * 100%); }
    .backdrop-dark { background: rgba(0,0,0,.45); }
    .section-pad { padding: 4rem 0; }
    .lead-tight { line-height: 1.35; }
    .logo-tile { height: 64px;}
    .kpi h2 { letter-spacing: .02em; }
    .mini { font-size: .85rem; color:#6c757d; }
    .card-service .ph { height: 180px; }
    /* Pequeños ajustes responsivos */
    @media (min-width: 992px){
      .hero-title { font-size: 3rem; }
    }




  .carousel-indicators-vertical{
  position:absolute;
  right:1rem;
  top:50%;
  transform:translateY(-50%);
  left:auto;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:.5rem;
}

.carousel-indicators-vertical .active{
  opacity:1;
}

/* el carrusel debe ser relativo para posicionar dentro */
#heroCarousel {
  position: relative;
}



/* botones de indicador */
.carousel-indicators-vertical [data-bs-target] {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.6);
  border: none;
  transition: opacity 0.3s, background-color 0.3s;
}

.carousel-indicators-vertical .active {
  background-color: #fff;
  opacity: 1;
}


.carousel-indicators-vertical {
  position: absolute;
  top: 50%;
  right: 11%;          /* alineado con el container (ajustalo si usás padding distinto) */
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
}
/*
font-family: "Inter", sans-serif;
font-family: "DM Sans", sans-serif;
*/

/* nico */
.container{
    padding-right: 42px;
    padding-left:  39px;
}



@media (min-width: 768px) {
.g-6, .gy-6 {
    --bs-gutter-y: 3.5rem;
}

.g-6, .gx-6 {
    --bs-gutter-x: 3.5rem;
}
.g-7, .gy-7 {
    --bs-gutter-y: 4.5rem;
}

.g-7, .gx-7 {
    --bs-gutter-x: 4.5rem;
}


.mt-md-6 {
        margin-top: 4rem !important;

}

.pt-6 {
    padding-top: 4rem !important;
}

.pt-7 {
    padding-top: 5rem !important;
}
.pb-6 {
    padding-bottom: 4rem !important;
}

.pb-7 {
    padding-bottom: 5rem !important;
}

}



.bloque2 .titulo{
  font-size: 23px;
  font-weight: 300;
  line-height: 24px;
  color: #1A1A1A ;
}  

.bloque2 .titlesec{
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  color: #333333;
}  

.bloque2 p{
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: #828282;
}  


  .bloque3 p{
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  color: #000000;
} 

.bloque3 .text{
  font-size: 21px;
  font-weight: 400;
  line-height: 24px;
  color: #999999;
} 



.bloque5 h3{
  font-size: 45px;
  font-weight: 100 !important;
  line-height: 46px;
  color: #000000;
} 

.bloque5 .mini{
  font-size: 20px;
  font-weight: 400 !important;
  line-height: 26px;
  color: #000000;
  text-align: center;
} 

.conoce{
  font-size: 22px;
  font-weight: 400 !important;
  line-height: 26px;
  color: #808080;
  text-align: center;

} 



 .bloque6{
  background-color: #EDEDED;
  }

  .bloque6 img{
    /*padding-top: 20px*/
  }

.bloque6 .titulo{
  padding-top: 120px;
  font-size: 30px;
  font-weight: 300 !important;
  line-height: 30px;
  color: #000000;
  text-align: left;
  padding-left: 40px;
} 

.bloque6 .titulo a{
  font-size: 16px;
  font-weight: 400 !important;
  line-height: 30px;
  color: #808080;
  text-align: left;
  text-decoration: none;
} 

.bloque6 .fix{
margin-top:2rem; margin-bottom:1rem;
}

@media (max-width: 576px) {
.bloque6 .titulo{
  padding-top: 30px;
}
.bloque6 .fix{
margin-top:0rem; margin-bottom:0rem;
}


}

.bloque7 h3{
  font-size: 38px;
  font-weight: 100 !important;
  line-height: 36px;
  color: #000000;
}  

.bloque7 h5{
  padding-top: 10px;
  font-size: 18px;
  font-weight: 700 !important;
  color: #000000;
  position: relative;
}  

.bloque7 h5::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0; /* o 50% si querés centrarlo */
  width: 124px;
  border-top: 1px solid #CCCCCC;
}


.bloque7 p{
  font-size: 15px;
  font-weight: 400 !important;
  line-height: 18px;
  color: #ABABAB;
}  

  .bloque8 h5{
  font-size: 20px;
  font-weight: 600 !important;
  line-height: 22px;
  color: #000000;

} 
.bloque8 a{
  font-size: 15px;
  font-weight: 400 !important;
  line-height: 18px;
  color: #808080;
} 


.bloque9{
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/fondo-serviciosgen.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 560px;
}



.bloque9 .obras{
  font-size: 92px;
  font-weight: 100 !important;
  line-height: 92px;
  color: #ffffff;
} 





.bloque9 .aclara{
  font-size: 14px;
  font-weight: 300 !important;
  line-height: 14px;
  color: #ffffff;
  border-left: 2px solid #ffffff;
  padding-left:10px;
  margin-left: 10px;
  letter-spacing: 0px !important;
} 

@media (max-width: 576px) {
  .bloque9 .aclara{
    border-left: 0px solid #ffffff;
  }
}


.bloque10{
  background-color: #000000;
}


.bloque10 h3{
  font-size: 39px;
  font-weight: 100 !important;
  line-height: 39px;
  color: #ffffff;
} 



.bloque10 img{
  width: 60%;
}

@media (max-width: 576px) {
  .bloque10 img{
    width: 100%;
  }
}

.bloque11{
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/footer.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  
  color: #ffffff;
}




.bloque11 .titulo{
  font-size: 28px;
  font-weight: 700 !important;
  line-height: 39px;
} 

.bloque11 .cop{
  font-size: 15px;
  font-weight: 400 !important;
  line-height: 20px;
} 

.bloque11 .cont, .bloque11 .cont a {
  font-size: 15px;
  font-weight: 400 !important;
  line-height: 20px;
  color: #ffffff;
  text-decoration: none;
} 

.bloque11 .tit2{
  font-size: 15px;
  font-weight: 400 !important;
  line-height: 15px;
} 

.bloque11 i{
  font-size: 30px;
  padding-bottom: 22px;
}

.bloque11 .footer-link{
  font-size: 14px;
  font-weight: 500 !important;
  line-height: 15px;
  text-decoration: none;
  color: #ffffff;
}



.bloque11 .bord{
    border-right: 1px solid rgba(255, 255, 255, 0.25);
    min-height: 100%;
}


@media (max-width: 576px) {
  .bloque11 .bord{
      border-right: 0px solid rgba(255, 255, 255, 0.25);
      min-height: 100%;
  }

}


.bloque11 .form-control {
  background: transparent;
  border: none;
  border-bottom: 1px solid #fff;
  color: #fff;
  padding: 10px 0;
  width: 100%;
  outline: none;
    border-radius: 0;
}

.bloque11 .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.bloque11 .form-control:focus {
  border-bottom: 1px solid #c40d62; /* cambia el color al enfocar */
}


.bloque11 .agencia{
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}


.w-90 {
    width: 90% !important;
}

.whatsapp {
  position:fixed;
  width:60px;
  height:60px;
  bottom:40px;
  right:80px;
  background-color:#25d366;
  color:#FFF;
  border-radius:50px;
  text-align:center;
  font-size:35px;
  z-index:1000;
 margin-bottom: -23px;
}

.whatsapp-icon {
  margin-top:13px;
}

.whatsapp:hover  {
  color:#402979;
}



#carouselLeft .carousel-control-prev,
#carouselLeft .carousel-control-next,
#carouselRight .carousel-control-prev,
#carouselRight .carousel-control-next {
  opacity: 1; /* siempre visibles */
}

/*------------------------------------------------------------------*/
/* quienes somos  */ 
/*------------------------------------------------------------------*/

.q-bloque2 .titulo{
  font-size: 23px;
  font-weight: 300;
  line-height: 25px;
  color: #1A1A1A ;
}  

.q-bloque2 p{
  font-size: 15px;
  font-weight: 400;
  line-height: 17px;
  color: #808080;
  text-align: justify;
} 


/* Quita la flecha por defecto */
.accordion{
--bs-accordion-border-radius: 0px;

}


  .accordion-button::after {
    content: '+';                  /* ícono inicial */
    font-weight: 300;
    font-size: 26px;
    color: #1f1f1f;
    background-image: none !important;
    transform: none !important;
  }

  /* Cuando el acordeón está abierto */
  .accordion-button:not(.collapsed)::after {
    content: '–';                 /* reemplaza con guión largo */
   
  }


   /* Fondo blanco siempre */
  .accordion-button {
    background-color: #fff !important;
    color: #000;
    box-shadow: none !important;
  }

  /* Cuando está abierto */
  .accordion-button:not(.collapsed) {
    background-color: #fff !important;
    color: #000;
    box-shadow: none !important;
  }

  /* Quita el borde o resplandor azul del focus */
  .accordion-button:focus {
    box-shadow: none !important;
    border-color: transparent !important;
  }

.accordion-item {
    background-color: var(--bs-accordion-bg);
    border: 0 solid #999999;
   border-bottom: 2px solid #999999;
}


.qbloque9{
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/fondo-planta.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 560px;
}

.qbloque9 .obras{
  font-size: 85px;
  font-weight: 100 !important;
  line-height: 92px;
  color: #ffffff;
} 

.qbloque9 .aclara{
  font-size: 14px;
  font-weight: 300 !important;
  line-height: 14px;
  color: #ffffff;

  padding-left:10px;
  margin-left: 10px;
  letter-spacing: 0px !important;
} 



  .qscapacidades {
    background-color: #fff;
  }

  .qscapacidades .border {
    border: 1px solid #c7c7c7 !important;
    transition: all 0.3s ease;
  }

  .qscapacidades .border:hover {
    border-color: #c7c7c7 !important; /* color de tu marca */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }

  .qscapacidades h4 {
  font-size: 23px;
  font-weight: 300 !important;
  line-height: 25px;
  color: #000000;
  padding-left:30px;
  padding-right:30px;
  }

  .qscapacidades p {
  font-size: 12px;
  font-weight: 400 !important;
  line-height: 16px;
  color: #808080;
  padding-left:30px;
    padding-right:30px;

  }


    /* Altura consistente y corte elegante */
  .galeria-doble .carousel-item img{
    /*height: 420px;           /* ajustá a gusto */*/
    /*object-fit: cover;*/
  }

  /* Que las pelotitas queden DEBAJO del carrusel */
  .galeria-doble .carousel { position: static; }
  .galeria-doble .carousel-indicators{
    position: static;
    margin-top: 14px;
    gap: 8px;
  }

  /* Estilo de pelotitas */
  .galeria-doble .carousel-indicators [data-bs-target]{
    width: 10px; height: 10px; border-radius: 50%;
    background-color: #bcbcbc; opacity: 1;
  }
  .galeria-doble .carousel-indicators .active{
    background-color: #c40d62; /* color activo */
  }


.qbloque11 h5{
  font-size: 28px;
  font-weight: 300 !important;
  line-height: 31px;
  color: #000000;
} 


.qbloque12 p{
  font-size: 26px;
  font-weight: 300 !important;
  line-height: 26px;
  color: #000000;
/*  margin-top: 30px;
  margin-left: 30px;*/
} 


.qbloque13 h2{
  font-size: 45px;
  font-weight: 100 !important;
  line-height: 42px;
  color: #000000;
} 

.qbloque13 .ano{
  font-size: 30px;
  font-weight: 100 !important;
  line-height: 30px;
  color: #999999;
}

.qbloque13 .txt{
  font-size: 17px;
  font-weight: 300 !important;
  line-height: 26px;
  color: #999999;
}

.qbloque14 h2{
 font-size: 45px;
  font-weight: 100 !important;
  line-height: 42px;
  color: #000000;
}

.qbloque14 p{
  font-size: 21px;
  font-weight: 400 !important;
  line-height: 24px;
  color: #999999;
}

.qbloque15 .accordion-button{
  font-size: 27px;
  font-weight: 300 !important;
  line-height: 42px;
  color: #999999;
}

.qbloque15 .accordion-item{
  font-size: 18px;
  font-weight: 300 !important;
  line-height: 24px;
  color: #999999;
}

  .qbloque15 h2{
   font-size: 45px;
    font-weight: 100 !important;
    line-height: 42px;
    color: #000000;
  }

  .qbloque15 p{
    font-size: 21px;
    font-weight: 400 !important;
    line-height: 24px;
    color: #999999;
  }

  .qbloque20 h2{
   font-size: 45px;
    font-weight: 100 !important;
    line-height: 42px;
    color: #000000;
  }

  .qbloque20 p{
    font-size: 21px;
    font-weight: 400 !important;
    line-height: 24px;
    color: #999999;
  }

/*------------------------------------------------------------------*/
/* imagen corporativa */
/*------------------------------------------------------------------*/

.icbloque01 .overline{
  font-size: 14px;
  font-weight: 200 !important;
  line-height: 42px;
  color: #000000;
}
.icbloque01 h2{
  font-size: 51px;
  font-weight: 100 !important;
  line-height: 51px;
  color: #000000;
}

.icbloque01 p{
  font-size: 14px;
  font-weight: 400 !important;
  line-height: 17px;
  color: #808080;
}


.icbloque01 .conoce{
  font-size: 14px;
  font-weight: 400 !important;
  line-height: 14px;
  color: #1a1a1a;
  text-align: center;
}

  /* ---------- Collage ---------- */
  .icbloque01 .img-stack{
    position: relative;
    min-height: 520px;            /* alto del lienzo */
  }
  .icbloque01 .img-card{
    position: absolute;
    display: block;
    width: 55%;
    background: #fff;
    object-fit: cover;

  }
  .icbloque01 .img-top{
    top: 12%;
    right: 0;
    aspect-ratio: 500/632;          /* proporción horizontal */
  }
  .icbloque01 .img-bottom{
    left:5% ;
    bottom: 0%; ;
    aspect-ratio: 500/632;            /* un poco más vertical */
  }

  /* ---------- Overline ---------- */
  .icbloque01 .overline{
  
  }
  .icbloque01 .overline span{
    display: inline-block;
    vertical-align: middle;
    margin-left: .6rem;
    width: 90px;
    height: 1px;
    background: #222;
    opacity: .5;
  }



  /* ---------- Responsive ---------- */
  @media (max-width: 767.98px){
    .icbloque01 .img-stack{
      min-height: auto;
      padding-top: 10px;
    }
    .icbloque01 .img-card{
      position: relative;
      width: 100%;
      border-width: 8px;
      box-shadow: 0 6px 18px rgba(0,0,0,.12);
    }
    .icbloque01 .img-top{ margin-bottom: 18px; }
  }

  .icbloque02 h1{
  font-size: 67px;
  font-weight: 300 !important;
  line-height: 67px;
  color: #000000;
}

.icbloque02 p{
  font-size: 13px;
  font-weight: 400 !important;
  line-height: 16px;
  color: #808080;
  padding-top: 20px;
}
  .icbloque02 .conoce{
  font-size: 13px;
  font-weight: 400 !important;
  line-height: 26px;
  color: #1a1a1a;
  text-align: center;

} 

.icbloque02 .ancho-fix{
  padding-right: 44px;
  padding-left: 44px;
} 

/*------------------------------------------------------------------*/
/* senaletica */
/*------------------------------------------------------------------*/

.snbloque2 .mx-auto{
    background:#eee;
}  

.snbloque2 h3{
  font-size: 32px;
  font-weight: 300 !important;
  line-height: 32px;
  color: #000000;
}  

.snbloque3 h1{
  font-size: 40px;
  font-weight: 100 !important;
  line-height: 46px;
  color: #000000;
  padding-left: 40px;
  padding-bottom: 10px;
}  


.icypfbloque01 .overline{
  font-size: 14px;
  font-weight: 200 !important;
  line-height: 42px;
  color: #000000;
}
.icypfbloque01 h2{
  font-size: 72px;
  font-weight: 300 !important;
  line-height: 51px;
  color: #000000;
}

.icypfbloque01 p{
  font-size: 14px;
  font-weight: 400 !important;
  line-height: 17px;
  color: #808080;
}

.icypfbloque01 .nros{
  font-size: 72px;
  font-weight: 100 !important;
  line-height: 17px;
  color: #000000;
  margin-bottom: 20px;
}


.icypfbloque01 .conoce{
  font-size: 14px;
  font-weight: 400 !important;
  line-height: 14px;
  color: #1a1a1a;
  text-align: center;
}

 .icypfbloque01 .overline{
  
  }
  .icypfbloque01 .overline span{
    display: inline-block;
    vertical-align: middle;
    margin-left: .6rem;
    width: 90px;
    height: 1px;
    background: #222;
    opacity: .5;
  }

.icypfbloque01 .flechagrande{
font-weight: 800 !important;
color: #1a1a1a;
 font-size: 24px;
}

.pebloque05 h2{
 font-size: 40px;
  font-weight: 100 !important;
  line-height: 42px;
  color: #000000;
  padding-left: 40px;
}

.pebloque05 p{
  font-size: 14px;
  font-weight: 400 !important;
  line-height: 17px;
  color: #808080;
} 

/*------------------------------------------------------------------*/
/* celulares */
/*------------------------------------------------------------------*/
@media (max-width: 575.98px) {
  /* estilos acá */


.carousel-indicators-vertical {
    right: 5%;
  }

.hero-slide .p-4{
  padding:0rem !important;
}
  #heroCarousel h1 {
    font-size: 50px;
  }

  .bloque6 .fixcel{
    margin-bottom: 30px;
  }

  .qbloque9 .obras {
    font-size: 56px;
    line-height: 47px;
    margin-top: 12px;
  }

  .icbloque01 .img-bottom {
    left: 0%;
  }

  .snbloque2 a{
    margin-top: 30px;
  }

  .pebloque05 h2 {
    padding-left: 0px;
  }


  .bloque2 .titlesec {
    margin-top: 20px;
  }

  .bloque2 p {
    font-size: 15px;
    font-weight: 400;
    line-height: 16px;
    color: #828282;
  }

  .icbloque01 p {
      font-size: 15px;
  }

  .icbloque02 .ancho-fix{
    padding-right: 10px;
    padding-left: 10px;
  } 

  .icbloque02 p {
    font-size: 15px;
    line-height: 20px;
  }


.qbloque15 img {width: 100% }


}