/*         font-family: 'Montserrat', sans-serif; */

*{
    margin: 0;
    padding: 0;
}
main{
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 6rem; /* Altura equivalente a la barra fija */
}

/* ----------------------------------------------------- CONFIG. PARALLAX ----------------------------------------------------- */

*, 
*::before,
*::after
{
  box-sizing: border-box;
}
main 
{
  height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  perspective: 2px;
}

.section 
{
  transform-style: preserve-3d;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.no-parallax 
{
  z-index: 999;
}
.parallax::after 
{
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translateZ(-1px) scale(1.65);
  background-size: 100%;
  z-index: -1;
}

/* ----------------------------------------------------- CONFIG. PARALLAX ----------------------------------------------------- */



/* ----------------------------- NAVBAR ----------------------------- */


*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    background-color: var(--bg-color);
    color: var(--text-color);
}
.lead { font-size: 1.5rem; font-weight: 300; }

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}


/*--====== Sidebar ======--*/
.logo_sidebar{
  background-color: #FEFEFE;
  width: 100%;
  height: 5rem;

  padding: 2rem;
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999999;

  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.36);
}
.logo_sidebar img{
  height: 4rem;
}
#sidebar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  max-width: 350px;
  width: 80%;
  height: 100vh;
  padding: 2rem;
  background-color: #ccb46ceb;
  box-shadow: 0 10px 20px -4px #000;
  overflow-x: hidden;
  overflow-y: auto;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);

  transition: opacity 0.3s ease, visibility 0.2s ease, transform 0.3s ease;
  font-weight: 600;
}

#sidebar.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

#sidebar a{
  width: 90%;
}
#sidebar img{
  width: 85%;
  margin-left: 3.5rem;
}



.sidebar_content {
  margin-top: 1rem;
    padding: 1.5rem 0;
    pointer-events: none;
    /* so that the Sidebar does not get closed while clicking on sidebar_content */
}

.sidebar_content a {
    pointer-events: all;
    /* so that all the <a> inside sidebar_content are clickable */
}

.sidebar_body {
    border-top: 1px dashed var(--text-color);
    border-bottom: 1px dashed var(--text-color);
}

.side_navlinks ul {
    display: grid;
    gap: 3rem;
}

.side_navlinks li a {
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
  font-size: 1.3em;
}

.side_navlinks a:hover {
    opacity: 1;
    color: #646464;
}

/*---- Sidebar-Toggler ----*/

.sidebar_toggler {
    position: fixed;
    padding: 1.5rem;
    top: 0vh;
    left: 0vw;
    width: 5rem;
    height: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    overflow: hidden;
    background-color: #00000000;
    z-index: 9999999999;
}

.sidebar_toggler span {
    background-color:#ccb46ceb;
    width: 100%;
    height: 2.4px;
    transition: all 0.3s ease;
    pointer-events: none;
    /* so that it doesn't overlap the sidebar_toggler */
}






/* ----------------------------- SECCION HOME ----------------------------- */


   

      .slider {
        position: relative;
    }
    
    .slider__btn { 
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      color: white;
      border: none;
      padding: 15px;
      cursor: pointer;
      z-index: 10;
      font-size: 2.5em; /* Tamaño mayor para las flechas */
      border-radius: 50%;
      transition: all 0.3s ease-in-out;
      background-color: #20ba5b00;
  }
  
  .slider__btn:hover {
    font-size: 3em; 
  }
  
  .slider__btn--next {
      right: 10px;
      border-radius: 0 25px 25px 0; /* Bordes redondeados a la derecha */
  }
  
  .slider__btn svg {
      fill: white; /* Para asegurarnos de que el ícono sea blanco */
  }
  


      @import url(https://fonts.googleapis.com/css?family=Roboto:400,500);
      @import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css);
      *, *:before, *:after {
        box-sizing: border-box;
      }
      
      html, body {
        height: 100%;
      }
      
      body {
        color: #444;
        font-family: 'Roboto', sans-serif;
        font-size: 1rem;
        line-height: 1.5;
      }
      
      .slider {
        overflow: hidden; /* Oculta las diapositivas fuera de la vista */
        position: relative;
        height: 100vh;
      }
      .slider__nav-container {
        text-align: center;
        position: absolute;
        bottom: 10px; /* Ajusta la posición según tu diseño */
        left: 0;
        right: 0;
    }
    
    .slider__nav {
        display: none; /* Ocultamos los radios */
    }
    
    .slider__nav-label {
        cursor: pointer;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.5);
        margin: 0 5px;
        transition: background-color 0.3s ease;
    }
    
    .slider__nav:checked + .slider__nav-label {
        background-color: rgba(255, 255, 255, 1); /* Cambiar al seleccionar */
    }
    
      .slider__inner {
        display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%; /* Ancho ajustado según las diapositivas */
    }
    
    
    .slider__contents {
      flex: 0 0 100%; /* Cada slide ocupa el 100% del ancho del contenedor */
      box-sizing: border-box;
      position: relative;
    }
    
    .slider__image {
        width: 100%;
        height: auto;
        filter: drop-shadow(5px 5px 5px #222);
        margin-top: 2rem;
        position: relative;
    }
    
      

          /* Enlace para la imagen del logo */
    .slider__icon-link {
      position: absolute;
      top: 30%; /* Mueve el enlace 20px más arriba */
      left: 50%;
      transform: translateX(-50%); /* Centra el enlace horizontalmente */
      z-index: 10; /* Asegura que el enlace esté por encima de la imagen */
    }
    #slider__icon-link {
      display: none;
    }

    /* Imagen del logo */
    .slider__icon {
      width: 100px; /* Ajusta el tamaño de la imagen */
      height: auto;
    }
        
      .slider__caption {
        font-family: 'Montserrat', sans-serif;
        font-weight: 500;
        font-size: 1.2em;
        text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
        text-transform: uppercase;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: .1rem 1rem;
        color: #333;
      }
      .slider__contents a {
        position: absolute;
        z-index: 99999;
        background-color: rgba(255, 255, 255, 0.7); /* Un fondo translúcido para mayor visibilidad */
        border-radius: .4rem;
        padding: 10px 20px;
        text-align: center;
        left: 50%;
        transform: translateX(-50%);
        display: inline-block;
      }
      #Logo_Slide{
        background-color: rgba(255, 255, 255, 0); /* Un fondo translúcido para mayor visibilidad */
        width: 40%;
      }
      #Logo_Slide img{
        width: 100%;
      }
      .slider__txt {
        color: #999;
        margin-bottom: 3rem;
        max-width: 300px;
      }

      /* Imagen que se superpone al slider */
      .overlay-image {
        position: absolute; /* Asegura que se posiciona sobre el slider */
        top: 50%; /* Centrado verticalmente */
        left: 50%; /* Centrado horizontalmente */
        transform: translate(-50%, -50%) translateY(-100px); /* Ajuste para mover 30px hacia arriba */
        z-index: 100; /* Asegúrate de que esté por encima del slider */
    }
    
    .overlay-image img {
        width: 200px; /* Ajusta el tamaño según sea necesario */
        height: auto;
        border-radius: 50%; /* Bordes redondeados */
    }
    
      
      @-webkit-keyframes check {
        50% {
          outline-color: #333;
          box-shadow: 0 0 0 12px #333, 0 0 0 36px rgba(51, 51, 51, 0.2);
        }
        100% {
          outline-color: #333;
          box-shadow: 0 0 0 0 #333, 0 0 0 0 rgba(51, 51, 51, 0);
        }
      }
      
      @keyframes check {
        50% {
          outline-color: #333;
          box-shadow: 0 0 0 12px #333, 0 0 0 36px rgba(51, 51, 51, 0.2);
        }
        100% {
          outline-color: #333;
          box-shadow: 0 0 0 0 #333, 0 0 0 0 rgba(51, 51, 51, 0);
        }
      }

      .slider__info-link{
        bottom:30%;
      }

      .slider__indicators {
        display: flex;
        justify-content: center;
        gap: 10px;
        position: absolute;
        bottom: 10px;
        left: 0;
        right: 0;
        z-index: 10;
    }
    
    .slider__indicator {
        width: 12px;
        height: 12px;
        background-color: rgba(255, 255, 255, 0.5);
        border-radius: 50%;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }
    
    .slider__indicator.active {
        background-color: rgba(255, 255, 255, 1);
        transform: scale(1.2);
    }
    
      
/* ----------------------------- SECCION NOSOTROS ----------------------------- */
      .seccion_nosotros{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-color: #fffafa;
        font-family: 'Montserrat', sans-serif;
      }
      .seccion_nosotros h2{
        font-size: 2.8rem;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
        font-weight: 400;
        letter-spacing: .4rem;
      }
      .seccion_nosotros h3{
        color: #CCB46C;
        text-align: center;
        font-size: 1.8rem;
        width: 80%;
        margin-bottom: 2rem;
        font-weight: normal;
      }

      .seccion_nosotros button{
        margin-bottom: 3rem;
        width: 15rem;
        height: 2.5rem;
        background-color: rgb(17, 16, 105);
        border-radius: .5rem;
        box-shadow: 1px solid black;
        margin: solid #CCB46C;
        color: white;
        font-family: 'Montserrat', sans-serif;

        font-size: 1.5rem;

        margin-bottom: 3rem;

        border: #00000000;
      }


      /* Nosotros desplegable */
      .nosotros_info{
        display: none;
        font-family: 'Montserrat', sans-serif;
        font-size: 1.2em;
      }
      .seccion_nosotros1{
        display: flex;
        justify-content:space-around;
        align-items: center;
        margin-top: 2rem;
      }
      .seccion_nosotros1 p{
        width: 30%;
        height: 15rem;
        text-align: justify;
        font-size: 1.1em;
        font-weight: lighter;
        color:#969696;
      }
      .seccion_nosotros2{
        display: flex;
      }

      .seccion_nosotros2 > div > h3{
        margin-bottom: 2rem;
        font-size: 2.4rem;
        font-weight: 400;
        letter-spacing: .4rem;
      }
      .seccion_nosotros2 > div{
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%;
        padding: 2rem;
      }
      .seccion_nosotros2 > div > p{
        text-align: justify;
        font-size: 1.1em;
        font-weight: 100;
        color:#969696;
      }

      .seccion_nosotros3{
        display: flex;
        flex-direction: column;
        align-items: center;
      }
      .seccion_nosotros3 h3{
        font-size: 2.4rem;
        font-weight: 400;
        letter-spacing: .4rem;
      }
      .seccion_nosotros3_1{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
        margin-bottom: 0rem;
      }
      .seccion_nosotros3_1 > div{
        display: flex;
        justify-content: space-around;
      }
      .inside_div{
        width: 30%;
        height: 22rem;
      }
      .inside_div > h4{
        margin-top: 1rem;
        margin-bottom: 1rem;
        font-size: 1.2em;
        font-weight: 400;
        letter-spacing: .1rem;
      }
      .inside_div > p{
        text-align: justify;
        font-size: 1.1em;
        font-weight: 100;
        color:#969696;
        height: 10rem;
      }
      /* ----------------------------- SECCION QUE HACEMOS ----------------------------- */

      .seccion_que_hacemos{
        display: flex;
        justify-content: center;
        flex-direction: column;
        background-color: #CCB46C;
        font-family: 'Montserrat', sans-serif;

      }
      .seccion_que_hacemos h2{
        color: #FEFEFE;
        font-size: 3rem;
        margin-top: 1rem;
        margin-bottom: 3rem;
        font-weight: 400;
      }
      .qh_secciones{
        display: flex;
        width: 100%;
        justify-content: space-around;
        margin-bottom: 4rem;
      }
      .cont_qh{
        height: 25rem;
      }
      .qh_seccion{
        width: 30%;
        color: #FEFEFE;
      }
      .cont_qh_titulos{
        height: 10rem;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .qh_seccion h4{
        font-size: 1.4rem;
        font-weight: bold;
      }
      .qh_seccion h5{
        text-align: justify;
        font-size: 1.1em;
        margin-bottom: 2rem;
        font-weight: 100;

        height: 7rem;
      }
      .qh_seccion h6{
        font-size: 1.1em;
        font-weight: bold;

      }

      .contenedor_numeros{
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 100%;
        background-color: #FEFEFE;
        width: 4rem;
        height: 4rem;
        margin-bottom: 2rem;

        font-size: 2rem;
        color: #CCB46C;
      }
      .qh_secciones div{
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .linea_corta_blanca{
        width: 100%;
        height: 2px;
        background-color: #FEFEFE;
      }

      .seccion_que_hacemos button{
        width: 15rem;
        height: 2.5rem;

        background-color: #FEFEFE;
        border-radius: .5rem;
        box-shadow: 1px solid black;
        margin: solid white;
        
        color: #CCB46C;
        font-size: 1.2rem;

        margin-bottom: 3rem;

        border: #00000000;

      }

      /* ----------------------------- SECCION NOVEDADES ----------------------------- */

      .seccion_novedades{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-family: 'Montserrat', sans-serif;
      }
      .seccion_novedades h2{
        font-size: 2.8rem;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
        font-weight: 400;
        letter-spacing: .4rem;
      }
      /* Estilo general del contenedor de noticias */
        .seccion_novedades_cuerpo {
          display: flex;
          flex-direction: column; /* Disposición vertical */
          gap: 2rem; /* Espaciado entre las noticias */
          margin-bottom: 2rem;
        }
        /* Cada noticia */
        .noticia_contenedor {
          display: flex; /* Diseño de texto e imagen en columnas */
          flex-direction: row; /* Mantén el diseño original para texto e imagen */
          width: 100%; /* Ocupa toda la fila */
          box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.4);
          position: relative;
        }
              /* Texto de la noticia */
        .noticias_texto {
          display: flex;
          flex-direction: column;
          justify-content: center;
          width: 50%; /* Mantiene la mitad del ancho */
          background-color: #d9d6eb;
          padding: 1rem 3rem;
        }
      .noticias_texto h3{
        font-size: 4em;
        font-weight: 400;
        letter-spacing: .4rem;
        line-height: 4.5rem;
        margin-bottom: 1rem;
      }
      .seccion_novedades a{
        width: 100%;
      }
      .noticias_texto p{
        margin-top: 1rem;
        margin-bottom: 1rem;
        font-size: 1.2em;
        margin-bottom: 2rem;
      }
      .noticias_texto button{
        color: #FEFEFE;
        font-size: 1.2em;
        padding: .2rem;
    
        background-color: rgb(28, 28, 95);
        width: 40%;
        height: 2.5rem;

        border-radius: .5rem;

        cursor: pointer;
        border: #00000000;

      }
      /* Imagen de la noticia */
        .noticias_imagen {
          width: 50%; /* Mantiene la mitad del ancho */
        }
              /* Gradiente */
        .gradiente {
          position: absolute;
          right: 0;
          width: 50%; /* Cubre la mitad derecha */
          height: 100%;
          background-color: #000000;
          z-index: 1;
          background: linear-gradient(to right, #d9d6eb, #d9d6eb18, #d9d6eb1f, rgba(255, 192, 203, 0));
        }
      .seccion_novedades_masnovedades{
        color: #FEFEFE;
        font-size: 1.2em;
        font-family: 'Montserrat', sans-serif;

        padding: .2rem;
    
        background-color: #CCB46C;
        width: 100%;
        height: 4rem;
        letter-spacing: .5rem;

        cursor: pointer;

        margin-bottom: 1rem;

        border: #00000000;
      }

      .seccion_novedades_lista{
        margin-top: 4rem;
      }

      .form-check-input-noticia{
        position: absolute;
        margin-top: .3rem;
        width: 40px;
        height: auto;

      }

      
      /* ------------------ Boton volver al inicio --------------------- */
      .boton_home{
        position:absolute;
        top: 6rem;
        left: 1rem;
        font-family: 'Montserrat', sans-serif;
        transition: ease-out 1s;

      }
      .boton_home:hover{
        color: #CCB46C;
        transition: ease-out .25s;
      }

      .boton_home_lista{
        position:absolute;
        top: 7rem;
        left: 1rem;
        font-family: 'Montserrat', sans-serif;
        transition: ease-out 1s;

      }
      .boton_home_lista:hover{
        color: #CCB46C;
        transition: ease-out .25s;
      }


      /* ----------------------------- SECCION DESARROLLOS ----------------------------- */

      .seccion_desarrollos{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-family: 'Montserrat', sans-serif;
      }

      .seccion_desarrollos h2{
        font-size: 2.8rem;
        margin-bottom: 1.5rem;
        font-weight: 400;
        letter-spacing: .4rem;
      }

      .seccion_desarrollos_img{
        display: flex;
        width: 100%;
        position: relative;
        /*margin-bottom: 3rem;  sacar al terminar la barra desplegable*/
      }
      .gradiente2{
        position: absolute;
        left: 0;
        width: 50%;
        height: 100%;
        background-color: #000000;
        z-index: 1;
        background: linear-gradient(to left, #EFE8D4, #efe8d415,#efe8d400,#efe8d400, rgba(255, 192, 203, 0));

      }
      .img_preventa{
        width: 50%;
      }

      .img_titulo {
        max-width: 80%; /* Cambia este valor al tamaño deseado */
        height: auto; /* Mantiene la proporción de la imagen */
      } 
      .seccion_desarrollos_preventa{
        display: flex;
        width: 50%;
        background-color: #EFE8D4;
        flex-direction: column;
        align-items: center;
        justify-content: space-evenly;
      }
      .seccion_desarrollos_preventa h6{
        font-size: 1.5em;
        font-weight: lighter;

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



      .img1{
        width: 90%;
        margin-bottom: 2rem;
      }
      .img2{
        width: 12%;
        margin-bottom: 1rem;
      }

      .seccion_desarrollos_preventa h3{
        font-size: 3.7em;
        font-weight: 100;
        text-align: center;

        margin-bottom: 4rem;
        margin-top: 2rem;
      }

      #duplex{
        margin-bottom: 6rem;
        margin-top: 2rem;
      }

      .seccion_desarrollos_preventa h4{
        font-size: 1.2em;
        font-weight: 100;
        margin-bottom: 2rem;
      }

      .seccion_desarrollos_preventa h5{
        font-size: 1.2em;
        text-align: center;
        font-weight: 100;
        margin-bottom: 3rem;
      }

      .botones_desarrollo{
        display: flex;
        width: 90%;
        gap: .5rem;
      }

      .seccion_desarrollos_preventa button{
        color: #FEFEFE;
        font-size: 1.2rem;
        padding: .2rem;
    
        background-color: rgb(28, 28, 95);
        width: 100%;
        height: 2.5rem;

        border-radius: .5rem;

        cursor: pointer;
        border: #00000000;

      }

      #boton_informacion_a{
        width: 90%;
      }

      #btn_informacion{
        width: 100%;
        margin-top: .5rem;
      }

      .seccion_desarrollos_preventa a{

        width: 60%;
        height: 2.5rem;

        border-radius: .5rem;

        cursor: pointer;
      }

      #boton_avance_obra{
        width: 100%;
      }

      #btn_mas_info{
        width: 100%;
      }

      #galeria_iamgenes{
        display: none;
      }

      #galeria_iamgenes2{
        display: none;
      }

      #galeria_iamgenes3{
        display: none;
      }

      /* Bajar (atar con alambre) */
      .bajar_boton_info{
        margin-bottom: 3rem;
      }





      .contenedor_barra_desplegable {
        width: 100%;
        background-color: #CCB46C; /* Color del fondo de la barra */
        border-radius: 0px;
        overflow: hidden;
        margin-bottom: 2rem;
        display: flex; /* Usa flexbox */
        flex-direction: column; /* Alinea elementos en columna */

        justify-content: space-between;
        position: relative;

        z-index: 1;
        box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.4);
    }

      .contenedor_barra_desplegable h3{
        font-size: 1.5em;

        color: white;
        font-weight: 400;
        letter-spacing: .4rem;
        font-family: 'Montserrat', sans-serif;

        margin-left: 2rem;

        z-index: 3;
      }
      .contenedor_barra_desplegable span{
        font-size: 1.5em;

        color: white;
        font-weight: 400;
        letter-spacing: .4rem;
        font-family: 'Montserrat', sans-serif;

        margin-left: 2rem;

        z-index: 3;
      }
      #porcentaje{
        margin-right: 2rem;
      }
    
    .texto_progreso {
        display: flex; /* Usa flexbox para alinear texto y porcentaje */
        justify-content: space-between; /* Espacia los elementos */
        align-items: center; /* Centra verticalmente */
        padding: 5px; /* Espaciado interno */
    }
    
    .barra_llenable {
        height: 20px; /* Ajusta la altura de la barra */
        background-color: rgb(28, 28, 95); /* Color de la barra */
        transition: width 1s; /* Transición suave */
        width: 0; /* Inicialmente 0% */

        height: 3rem;
        position: absolute;
        transition: 1s;
        z-index: 2;
    }
    .barra_llenable img{
      height: 3rem;
    }
    
    
      /* efecto bara VER ESTO*/ 

      [data-animation="llenar5"]{
        width: 1vw;
        transition: .8s ease-in .1s;

        --width: 24vw
      }
      [data-animation="llenar25"]{
        width: 1vw;
        transition: .8s ease-in .1s;

        --width: 1vw
      }
      [data-animation="llenar75"]{
        width: 1vw;
        transition: .8s ease-in .1s;

        --width: 1vw
      }

      .unset{
        width: var(--width);
      }






/* ----------------------------- SECCION FOTOS ----------------------------- */


            .galeria_iamgenes{
              position: inherit;
            }
            .galeria{
              display: flex;
              flex-wrap: wrap;
              padding: 10px 10px;
              justify-content: center;
              padding-bottom: 3rem;
          }
          .columna{
              flex: 30%;
              max-width: 33%;
              padding: 0 px;
          }
          .columna img{
              margin-top: 1rem;
              vertical-align: middle;
              width: 98%;
              transition: all .3s ease;
          }
          .columna img:hover{
              cursor: pointer;
          }
          .overlay{
              position: absolute;

              width: 100%;
              height: 90%;
              background-color: rgba(0, 0, 0, .5);
              z-index: 99999999;
              display: flex;
              justify-content: center;
              align-items: center;
              transition: all .7s ease;
              visibility: hidden;
              opacity: 0;
          }
          .overlay .slideshow{
              width: 80%;
              height: 80%;
              background-color: #fffafa;
              color: #000000;
              position: sticky;
              display: flex;
              justify-content: center;
          }
          .overlay{
            height: 100vh;
          }
          .slideshow img{
              height: 100%;
              width: 100%;
              object-fit: contain;
          }
          .btn_cerrar{
              position: absolute;
              top: -15px;
              right: -15px;
              font-size: 35px;
              background-color: rgba(0, 0, 0, .7);
              color: #ffffff;
              width: 30px;
              height: 30px;
              border-radius: 50%;
              display: flex;
              align-items: center;
              justify-content: center;
              padding: 5px;
              transition: all .2s ease;
          }
          .btn_cerrar:hover{
              transform: scale(1.2);
              cursor: pointer;
          }
          .botones{
              width: 90px;
              height: 90px;
              border-radius: 50%;
              color: #000000;
              display: flex;
              justify-content: center;
              align-items: center;
              font-size: 70px;
              position: absolute;
              top: 50%;
              transform: translateY(-50%);
              cursor: pointer;
              color: #CCB46C;
          }
          .botones:hover > .material-symbols-outlined{
              transform: scale(1.5);
              transition: all .2s ease;
          }
          .atras{
              left: -80px;
              background-color: #ffffffc9;
              height: 10%;
              width: 4%;
              border-radius: 1rem;
              padding-left: .5rem;
          }
          .adelante{
              right: -80px;
              background-color: #ffffffc9;
              height: 10%;
              width: 4%;
              border-radius: 1rem;
          }
          .mdi{
              pointer-events: none;
              transition: all .2s ease;
          
          }
/* ----------------------------- SECCION FORMULARIOS ----------------------------- */

      .seccion_formulario{
        background: linear-gradient(to right, rgb(9, 8, 56), rgb(17, 16, 105)), url();
      }

      .seccion_formulario h2{
        color: #ffffff;
        font-size: 2.8rem;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
        font-weight: 400;
        letter-spacing: .4rem;
        font-family: 'Montserrat', sans-serif;
      }

      .seccion_formulario form{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
      }
      .input_group{
        width: 100%;
        display: flex;
        justify-content: space-around;

        margin-bottom: 2rem;
      }

      .form_datos{
        display: flex;
        flex-direction: column;
        width: 35%;
      }

      .form_datos input{
        border-radius: .5rem;
        height: 2.5rem;
        margin-bottom: 1rem;
        border: 2px solid black;

        padding-left: 1rem;

      }

      .form_mensaje{
        display: flex;
        flex-direction: column;
        width: 40%;
      }

      .form_mensaje textarea{
        height: 6.5rem;
        margin-bottom: 1rem;
        border-radius: .5rem;
        border: 2px solid black;

        padding-left: 1rem;
        padding-top: 1rem;
      }

      .form_mensaje input{
        height: 2rem;
        border-radius: .5rem;
        border: 1px solid black;
      }


/* ----------------------------- SECCION FOOTER ----------------------------- */

.seccion_footer{
  display: flex;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  padding: 2rem 3rem 2rem;
}
.footer_logo{
  width: 70%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer_logo img{
  height: 4rem;

}
#logos_chicos{
  height: 3.1rem;
  margin-left: 4rem;
}
.footer_links{
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align:right;


}
.linea_vertical_footer{
  height: 1rem;
  width: 1.5px;
  background-color: black;
}

.footer_links a{
  margin-right: 1rem;
  margin-left: 1rem;
}

.footer_links a h4{
  font-weight:normal;
  font-size: 1.1rem;
  line-height: 1.8rem;
}

.linea_y_logo{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.linea_laga{
  height: 1.5px;
  background-color: #777777;
  width: 80%;
  margin-bottom: 1rem;
}
.linea_y_logo img{
  width: 15rem;
  margin-bottom: 1rem;
}
/* No display desktop */

.no_display_desk{
  display: none;
}

/* Boton Wpp */

        /* Inicio - Boton wpp */
        .btn_wsp{
          position:fixed;
          width:60px;
          height:60px;
          line-height: 63px;
          bottom:25px;
          right:25px;
          background:#25d366;
          color:#FFF;
          border-radius:50px;
          text-align:center;
          font-size:35px;
          box-shadow: 0px 1px 10px rgba(0,0,0,0.3);
          z-index:100;
          transition: all 300ms ease;
          transform: translateY(00px);

          display: flex;
          justify-content: center;
          align-items: center;
      }
  
      .btn_wsp-on {
          transform: translateY(0px);
      }
  
      .btn_wsp:hover{
          background: #20ba5a;
      }

      .icono{
        height: 4rem;
      }


      /* Fin - Boton wpp */

  /* ----------------------------- AVANCES DE OBRA ----------------------------- */

  .titulo_AvanceDeObra{
    margin-top: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;

    font-family: 'Montserrat', sans-serif;
    font-size: 2em;
    letter-spacing: .4rem;
    padding: .5rem;
  }
  /* donde se ve la foto */ 
.galeria{
  display: flex;
  flex-wrap: wrap;
  padding: 10px 10px;
  justify-content: center;

  flex: 30%;
  max-width: 100%;
  padding: 0 px;
}

.galeria img{
  margin-top: 1rem;
  vertical-align: middle;
  width: 32%;
  margin: .2rem;
  transition: all .3s ease;
}
.galeria img:hover{
  cursor: pointer;
  box-shadow: 0 0 10px #000000;
  transform: scale(1.01);
}
.overlay{
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .5);
  z-index: 100000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all .7s ease;
  visibility: hidden;
  opacity: 0;

  margin-top: 2rem;
}
.overlay .slideshow{
  width: 80%;
  height: 85%;
  background-color: rgba(255, 255, 255, 0.9);
  color: #000000;
  position: relative;
  display: flex;
  justify-content: center;
}
.slideshow img{
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.btn_cerrar{
  position: absolute;
  top: -15px;
  right: -15px;
  font-size: 35px;
  background-color: rgba(0, 0, 0, .7);
  color: #ffffff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  transition: all .2s ease;
}
.btn_cerrar:hover{
  transform: scale(1.2);
  cursor: pointer;
}
.botones{
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 70px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: rgb(53, 53, 53);
}
.botones:hover > .material-symbols-outlined{
  transform: scale(1.5);
  transition: all .2s ease;
}
.atras{
  left: -80px;
}
.adelante{
  right: -80px;
}
.mdi{
  pointer-events: none;
  transition: all .2s ease;

}

/* galeria de fotos - Pagina principal */

.no_display_en_desk{
  display: none;
}
  /* ----------------------------- SECCION NOTICIA ----------------------------- */

  .seccion_noticia{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    margin-top: 5rem;
  }
  .seccion_noticia h2{
    font-size: 2rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: .4rem;
  }
  .seccion_noticia_cuerpo{
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
  }
  .noticia_imagen{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 60dvh;
    background-color: #d9d6eb;
  }
  .noticia_texto{
    display: flex;
    justify-content: center;
    background-color: #d9d6eb;
    padding: 1rem 3rem;
    text-justify: distribute ;
  }
  .noticia_texto{
    font-size: 1.2em;
    font-weight: bold;
  }
  .desarrollo_noticia{
    display: flex;
    justify-content: center;
    padding: 1rem 3rem;
    text-justify: distribute ;
  }
  .desarrollo_noticia{
    font-size: 1.2em;
    font-weight: 200;
  }

  .seccion_noticia a{
    width: 100%;
  }

/* ----------------------------- SECCION GALERIA FOTOS ----------------------------- */
        .lightbox {
    display: none; /* Ocultar por defecto */
    position: fixed;
    z-index: 9999999999999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Fondo oscuro semitransparente */
    justify-content: center;
    align-items: center;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.5);
    pointer-events: auto; /* Asegura que la imagen reciba eventos de clic */
}

.lightbox .close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}
.lightbox {
    transition: opacity 0.3s ease;
}

.lightbox-img {
    transition: transform 0.3s ease;
}

.lightbox.open {
    opacity: 1;
    pointer-events: auto;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: white;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: ease-in-out .5s;
    user-select: none;
}

.left {
    left: 10px;
}

.right {
    right: 10px;
}

.arrow:hover {
  color: #CCB46C;
  transition: ease-in-out .25s;

}




































































/* -------------------------------- 1920x1080 ----------------------*/

@media screen and (max-width: 1400px) {

  section[id]{
    scroll-margin-top: 10vh;
  }

  .parallax::after{
  transform: translateZ(-1px) scale(1.62);
  }

  #inicio::after{
  background-position: 0px -250px;
  }

  .logo_sidebar{
    height: 3rem;
  }
  .logo_sidebar img{
    height: 3rem;
  }
  .sidebar_toggler {
    width: 4rem;
    height: 4rem; 
    padding: 1rem;
  }

  .seccion_nosotros div > h4{
    width: 30%;
    text-align: justify;
    font-size: 1.2em;
    font-weight: 100;
    color: #646464;
  }

  /* ----------------------------- SECCION SLIDER ----------------------------- */
  .slider__caption{
    font-size: 1.2em;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    padding: .1rem 1rem;
  }
  .slider__contents a {
    padding: 10px 10px;
    bottom: 30%;
  }

  /* ----------------------------- SECCION FOOTER ----------------------------- */

  .footer_links a h4{
    font-size: .9em;
  }

  /* Boton Wpp */

  .icono{
    height: 4rem;
  }

  /* ----------------------------- SECCION NOTICIA ----------------------------- */

  .seccion_noticia{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    margin-top: 4rem;
  }
  .seccion_noticia h2{
    font-size: 2rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: .4rem;
  }
  .seccion_noticia_cuerpo{
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
  }
  .noticia_imagen{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 60dvh;
    background-color: #d9d6eb;
  }
  .noticia_texto{
    display: flex;
    justify-content: center;
    background-color: #d9d6eb;
    padding: 1rem 3rem;
    text-justify: distribute ;
  }
  .noticias_texto h3{
    font-size: 3.5em;
    line-height: 3rem;
  }
  .desarrollo_noticia{
    display: flex;
    justify-content: center;
    padding: 1rem 3rem;
    text-justify: distribute ;

  }
}









































@media screen and (max-width: 1000px) {

/* ----------------------------------------------------- CONFIG. PARALLAX ----------------------------------------------------- */

.parallax::after 
{
  transform: translateZ(-1px) scale(1.7);
}
.sidebar_toggler{
  padding: 1.8rem;
}

/* ----------------------------- NAVBAR ----------------------------- */

.sidebar_toggler {
  width: 4rem;
  height: 4rem;
  padding: 1em;
}
#sidebar {
  max-width: 300px;
  width: 70%;
  font-size: .9rem;
  height: 100%;
}
.sidebar_content {
  margin-top: 0rem;
    padding: 2rem 0;
}
.sidebar_foot{
  margin-top: 0rem;
  padding: 0;
}
.logo_sidebar{
  width: 100%;
  height: 4rem;
}
.logo_sidebar img{
  height: 2.5rem;
}
/* ----------------------------- SECCION HOME ----------------------------- */

.seccion_home{
  height: 90vh;
  position: relative;
}
#inicio::after{
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url(../imagenes/img_home/11.\ EXTERIOR\ 4\ copia\ vertical2\ copia.jpg);
  background-size:cover;
  background-position: 10px -80px;
}
.seccion_home img{
  width: 80%;
  position: absolute;
  top: 3rem;
}

#preventa_img_home{
top: 20.5rem;
width: 50%;
height: auto;
}

/* ----------------------------- SECCION SLIDER ----------------------------- */


.slider {
  height: 100dvh;
}
#Logo_Slide {
  background-color: rgba(255, 255, 255, 0);
  width: 80%;
}
.slider__caption {
  font-size: .8em;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  padding: .1rem 1rem;
}
.slider__contents a {
  padding: 10px 10px;
  bottom: 30%;
}
.slider__icon-link{
  top: 25%;
}
.slider__nav {
  width: 12px;
  height: 12px;
  margin: 2rem 12px;
  border-radius: 50%;
  z-index: 10;
  outline: 6px solid #ccc;
  outline-offset: -6px;
  box-shadow: 0 0 0 0 #333, 0 0 0 0 rgba(51, 51, 51, 0);
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.slider__btn { 
  top: 50%;
  font-size: 1.5em; /* Tamaño mayor para las flechas */

  background-color: #20ba5b00;
}
/* ----------------------------- SECCION NOSOTROS ----------------------------- */

.seccion_nosotros div{
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
}

.seccion_nosotros h2{
  font-size: 2em;
}
.seccion_nosotros h3{
  font-size: 1.2rem;
  font-weight: 500;
}
.seccion_nosotros div > h4{
  width: 80%;
  font-size: .9em;
  margin-bottom: 1.5rem;
}

/* Nosotros desplegable */

.nosotros_info{
  font-size: 1em;
}
.seccion_nosotros1{
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 0rem;
}
.seccion_nosotros1 p{
  width: 90%;
  height: auto;
}
.seccion_nosotros2{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.seccion_nosotros2 > div{
  width: 90%;
  justify-content: center;
  padding: 0;
  margin-top: 2rem;
}
.seccion_nosotros3{
  margin-bottom: 2rem;
}
.seccion_nosotros3 h3{
  margin-top: 2rem;
}
.seccion_nosotros3_1 > div{
  flex-direction: column;
  align-items: center;
}
.inside_div{
  width: 90%;
  height: auto;
}
.inside_div > h4{
  margin-top: 2rem;
}
.inside_div > p{
  height: auto;
  line-height: 1.3rem;
}
/* ----------------------------- SECCION QUE HACEMOS ----------------------------- */

.seccion_que_hacemos h2{
  font-size: 2rem;
}
.cont_qh{
  height: auto;
}
.cont_qh_titulos{
  height: auto;
}
.qh_secciones{
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}
.qh_seccion{
  width: 80%;
  margin-bottom: 4rem;
}
.qh_seccion h4{
  margin-bottom: 2rem;
  margin-top: 2rem;
  font-size: 1rem;
}
.qh_seccion h5{
  font-size: .9em;
  margin-bottom: 1rem;
}
#h4_bajar{
  margin-bottom: 2rem;
}
.qh_seccion h6{
  margin-bottom: 2rem;

}
.cont_qh{
  height: 80%;
}
.contenedor_numeros{
  width: 3rem;
  height: 3rem;
}

/* ----------------------------- SECCION NOVEDADES ----------------------------- */

.seccion_novedades{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
}

.seccion_novedades h2 {
  font-size: 2em;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
  letter-spacing: .4rem;
}
.seccion_novedades_cuerpo{
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.4);
  position: relative;
}
.noticias_texto {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: #d9d6eb;
  padding: 1rem 2rem;
}
.noticias_texto h3 {
  font-size: 2em;
  line-height: 2rem;
}
.noticias_texto p {
  font-size: 1em;
}
.seccion_novedades a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.noticias_imagen {
  width: 100%;
}

.gradiente{
  display: none;
}

.seccion_novedades_masnovedades {
  font-size: 1em;
}

/* ----------------------------- SECCION DESARROLLOS ----------------------------- */

.seccion_desarrollos h2{
  font-size: 2em;
  margin-bottom: 0;
}
.img1{
  margin-top: 2rem;
  width: 80%;
}
.img2{
  width: 20%;
  margin-top: 1rem;
}
.seccion_desarrollos_img{
  flex-direction: column;
  align-items: center;
  background-color: #EFE8D4;
  margin-bottom: 0;
  margin-top: 1rem;
}
.img_preventa{
  width: 100%;
}


.seccion_desarrollos_preventa{
  width: 100%;
  padding: 2rem 0rem;
}
.botones_desarrollo{
  margin-bottom: 0rem;
}
.seccion_desarrollos_preventa h5{
  margin-bottom: 2rem;
}
.botones_desarrollo{
  width: 90%;
}

#boton_informacion_a{
  width: 90%;
}
.bajar_boton_info1{
  margin-bottom: 3rem;
}

#duplex{
  margin-bottom: 2rem;
  margin-top: 2rem;

  font-size: 3em;
  font-weight: 100;
  text-align: center;
}
#imagen_duplex{
  margin-bottom: 2rem;
}

#vlem{
  margin-bottom: 2rem;
  margin-top: 2rem;

  font-size: 2.5em;
  font-weight: 100;
  text-align: center;
}
#img_vlem{
  margin-bottom: 2rem;
}

.columna{
  flex: 100%;
  max-width: 100%;
}
.columna img{
  width: 100%;
}

#ocultar_galeria_charpenterie{
  height: auto;
}
#ocultar_galeria_2{
  height: auto;
}
#ocultar_galeria_3{
  height: auto;
}

/* Toda la boludez de la barra esa que se llena */
.contenedor_barra_desplegable{
  height: 2rem;
  margin-bottom: 1rem;
}

.contenedor_barra_desplegable h3{
  font-size: .7em;
  font-weight: bold;
}

.barra_llenable{
  height: 2rem;
}

.barra_llenable img{
  height: 2rem;
}

      /* Bajar los ultimos dos desarrollos ya que le sacamos las barras rellenables que poseen un margin botton */

      .bajar_por_no_tener_la_barra_rellenable{
        margin-bottom: 1rem;
      }

.gradiente2 {
  display: none;
}

.img_titulo {
  max-width: 80%;
  height: auto;
  margin-bottom: 1rem;
}

.seccion_desarrollos_preventa h6 {
  font-size: 1em;
  margin-bottom: 1rem;
}

.seccion_desarrollos_preventa button {
  font-size: .9rem;
  padding: .2rem .5rem;
}

.contenedor_barra_desplegable span {
  font-size: .8em;
  color: white;
  font-weight: 400;
  letter-spacing: .4rem;
  font-family: 'Montserrat', sans-serif;
  margin-left: .5rem;
  z-index: 3;
}
#porcentaje {
  margin-right: .5rem;
}
/* ----------------------------- SECCION CONTACTO ----------------------------- */

.seccion_formulario{
  margin-top: 2rem;
}

.seccion_formulario h2{
  font-size: 2em;
}

.input_group{
  flex-direction: column;
  align-items: center;
}

.form_datos{
  width: 80%;
}

.form_mensaje{
  width: 80%;
}

/* ----------------------------- SECCION FOOTER ----------------------------- */

.seccion_footer{
  flex-direction: column;
}
.footer_logo{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap:wrap;
}
.footer_logo img{
  width: 15rem;
}
#logos_chicos{
  width: 8rem;
  margin: 0;
  margin-left: .5rem;
}
.footer_links{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;

  margin-left: 0rem;
  margin-top: 2rem;
}
.footer_links a h4{
  font-size: .7rem;
  line-height: 1rem;
  font-weight: bolder;
}
.linea_y_logo img{
  width: 10rem;
  margin-bottom: 1rem;
}
.linea_laga{
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.no_display_en_mobile{
  display: none;
}
.display_en_mobile{
  display: block;
}

/* Boton Wpp */

        /* Inicio - Boton wpp */
        .btn_wsp{
          position:fixed;
          width:50px;
          height:50px;
          line-height: 63px;
          bottom:15px;
          right:15px;
          background:#25d366;
          color:#FFF;
          border-radius:50px;
          text-align:center;
          font-size:35px;
          box-shadow: 0px 1px 10px rgba(0,0,0,0.3);
          z-index:100;
          transition: all 300ms ease;
          transform: translateY(00px);
      }

/* ----------------------------- SECCION GALERIA FOTOS ----------------------------- */

.galeria {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 0px 0px;
  justify-content: center;
  flex: 30%;
  max-width: 100%;
  padding: 0 px;
}
.galeria img {
  margin-top: 1rem;
  vertical-align: middle;
  width: 95%;
  margin: .2rem;
  transition: all .3s ease;
}
.titulo_AvanceDeObra {
  margin-top: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5em;
  letter-spacing: .4rem;
  padding: .5rem;
}
.arrow:hover {
  color: #ffffff;
  transition: ease-in-out .25s;
}
.arrow {
  position: absolute;

  padding: 0px;
}
.right {
  right: 5px;
}
.left {
  left: 5px;
}

/* ----------------------------- SECCION NOVEDADES ----------------------------- */

.seccion_novedades {
  margin-top: 6rem;
}
/* ----------------------------- SECCION NOTICIA ----------------------------- */
.seccion_noticia{
  margin-top: 5rem;
}
.seccion_noticia h2{
  text-align: center;
}
.noticia_imagen{
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: auto;
  background-color: #d9d6eb;
}
.boton_home{
  top: 5rem;
  left: .5rem;
  font-size: .8em;
}
.noticia_texto {
  padding: 1rem 1rem;
  font-size: 1em;
}
.desarrollo_noticia {
  padding: 1rem 1rem;
}
.noticia_contenedor {
  display: flex;
  flex-direction: column;
  width: 100%;
  box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.4);
  position: relative;
}
}
