@font-face {
    font-family: 'Florence Sans';
    src: url('resources/fonts/Florencesans-SC-Bold.ttf.woff') format('woff');
    font-weight: 700;
    font-style: bold;
}

@font-face {
    font-family: 'Rotally';
    src: url('resources/fonts/Rotally.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Lovelace';
    src: url('resources/fonts/Lovelace-Extralight-Italic-trial.ttf') format('truetype');
    font-weight: 200;
    font-style: italic;
}

/* Para navegadores WebKit (Chrome, Safari) */
/*::-webkit-scrollbar {
    display: none;
  }
  
  html {
    scrollbar-width: none;
  }
  
  body {
    -ms-overflow-style: none;
  }
  */

#contempora{
    position: absolute;
    z-index: 3;
    opacity: 0;
    text-shadow: none;
    transform: translateY(40px); /* Comienza desplazado hacia abajo */
    transition: 
        opacity 1s ease-out 0.3s,
        transform 1s ease-out 0.3s,
        text-shadow 1s ease-out 0.3s;
}
#contempora.animate{
    opacity: 1;
    transform: translateY(0); /* En su posición final */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}
.fila {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
}
.contenido-about {
    position: absolute;
    z-index: 3;
    opacity: 0;
    text-shadow: none;
    transform: translateY(40px); /* Comienza desplazado hacia abajo */
    transition: 
        opacity 1s ease-out 0.3s,  /* Retraso de 0.5s en la opacidad */
        transform 1s ease-out 0.3s; /* Retraso de 0.5s en el movimiento */
}
.contenido-about.animate {
    opacity: 1;
    transform: translateY(0); /* En su posición final */
    /* text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); */
}
.contenido_service{
    position: absolute;
    z-index: 7;
    opacity: 0;
    text-shadow: none;
    transform: translateY(40px); /* Comienza desplazado hacia abajo */
    transition: 
        opacity 1s ease-in-out 0.1s,  /* Retraso de 0.5s en la opacidad */
        transform 1s ease-in-out 0.1s; /* Retraso de 0.5s en el movimiento */
}
.contenido_service.animate {
    opacity: 1;
    transform: translateY(0); /* En su posición final */
}
.texto_segunda_gigante{
    position: absolute;
    z-index: 3;
    opacity: 0;
    text-shadow: none;
    transform: translateY(-300px) translateX(-100px); /* Comienza desplazado hacia abajo */
    transition: 
        opacity 1s ease-out 0.3s,  /* Retraso de 0.5s en la opacidad */
        transform 1s ease-out 0.15s; /* Retraso de 0.5s en el movimiento */
}
.texto_segunda_gigante.animate{
    opacity: 1;
    transform: translateY(-300px) translateX(0px); /* En su posición final */
}
header{
    opacity: 0;
    transform: translateY(-20px); /* Desplazado hacia abajo */
    animation: fadeInDown 1s ease-out .3s forwards; /* Animación que comienza 1 segundo después */
}
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px); /* Desplazado hacia abajo */
    }
    100% {
        opacity: 1;
        transform: translateY(0); /* En su posición final */
    }
}
.imagen_fondo {
    position: fixed;
    z-index: 1;
    height:100vh;
    width:100%;
    object-fit: cover;
    transform: scale(1.1);
    animation: alejar 1s ease-out .15s forwards; /* Agregado 'forwards' para mantener el estado final */
}

@keyframes alejar {
    0% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1); /* Vuelve a su tamaño original */
    }
}
.sombra{
    opacity: 1;
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100vh;
    background: rgb(0,0,0);
    background: -moz-linear-gradient(180deg, rgba(0,0,0,0.7077031496192228) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.7077031496192228) 100%);
    background: -webkit-linear-gradient(180deg, rgba(0,0,0,0.7077031496192228) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.7077031496192228) 100%);
    background: linear-gradient(180deg, rgba(0,0,0,0.7077031496192228) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.7077031496192228) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1); 
    animation: aclarar 1s ease-out .15s forwards; /* Agregado 'forwards' para mantener el estado final */
}
@keyframes aclarar {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0.6;
    }
}
body{
    margin: 0;
    padding: 0;
    overflow-x: hidden !important;
    font-family: 'Cormorant Garamond', serif;
    user-select: none;
}
body h2{
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
}
/* body p {
    font-family: "Encode Sans Semi Expanded", serif;
    font-weight: 300;
    font-style: normal;
} */
.primera_pagina{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background-color: white;
    position: relative;
}
.segunda_pagina{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 60vh;
    overflow: hidden;
    background-color: #FFFDEE;
    color: black;
    z-index: 2;
    position: relative;
}
.tercera_pagina, .quinta_pagina, .quinta_pagina2{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background-color: white;
    gap: 70px;
    z-index: 2;
    position: relative;
}
.quinta_pagina, .quinta_pagina2 {
    display: flex;
    gap: 100px;
    padding: 0 130px;
    width: auto;
    flex-direction: row;
    justify-content: left;
    background-color: #FBF8F2;
}
.sexta_pagina{
    display: grid;
    height: 100vh;
    position: relative;
    background-color: #0000001f;
    z-index: 1;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    backdrop-filter: blur(3px);
    gap: 100px;
}
.contenido-about {
    display:flex;
/*
    display: grid;
    grid-template-columns: 2fr 3fr;*/
    /* background-color: beige; */
    width: 60%;
    height: 50% ;
    gap:6%;
    justify-content: center;
    align-items: center; /* Centra verticalmente el contenido en las celdas */
    justify-items: center; /* Centra horizontalmente el contenido en las celdas */
}
.contenedor-imagen{
    height: 100%;
    width:100% !important;
    /* background-color:red; */
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;
}
.imagen-tercera{
    object-fit:contain;
    width:auto;
    height:100%;
}
.cuarta-pagina{
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    min-height: 100vh;
    background-color: white;
    z-index: 2;
    position: relative;
    overflow: hidden;
}
.imagenes-cuarta{
    overflow: hidden;
    display: flex;
    flex-direction: row;
    gap: 40px;
    justify-content: center;
    align-items: center;
}
.contenedor-cuarta{
    display: flex;
    flex-direction: column;
    /* background-color: orange; */
    justify-content: center;
    text-align: center;
    margin: 0;
    padding: 0;
    width: 71vh;
    font-size: 20px;
}
.texto-tercera, .texto-quinta{
    display: flex !important;
    flex-direction: column;
    max-width: 375px;
    font-size: 17px;
    justify-content: left;
    text-align: left;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-style: normal;
}
.texto-quinta{
    max-width: 580px;
}
.centro_pagina{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1px;
    position:absolute;
}
.centro_pagina p{
    display: flex;
    text-align: center;
    margin: 0;
}
.texto_presentacion{
    display: flex;
    text-align: center;
    margin: 0;
    max-width: 45%;
    font-size: 19px;
}
@media(max-width:1080px){
    .texto_presentacion{
        max-width: 70%;
    }
    .imagenes-cuarta{
        flex-direction: column;
        width: 90%;
    }
    .header_falso{
      display: flex;
      position: fixed;
      top: 0;
      background-color: #FBF8F2;
      width: 100%;
      left: 0;
      height: 60px;
      border-bottom: 1px solid rgba(0,0,0,0.1);
      z-index: 10;
    }
}
.menu_button{
    display: none;
    position: fixed;
    right: 0;
    margin: 20px 20px 0px 0px;
    cursor: pointer;
    z-index:10;
}

.indice {
    display: flex;
    flex-direction: column;
    font-size: 20px;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0; 
}

li {
    margin: 0;
    padding: 0;
    cursor: pointer;
}

.oscurece, .oscurece-cart {
position: fixed;
z-index: 100;
width: 100%;
height: 100%;
top: 0;
left: 0;
background-color: rgba(0, 0, 0, 0.8);
cursor: pointer;
opacity: 0;
visibility: hidden;
transition: opacity 0.75s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 0s 0.5s; /* Usando cubic-bezier */
}

.oscurece-on {
opacity: 1;
visibility: visible;
transition: opacity 0.75s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 0s 0s;
}

.menu-content{
display: flex;
flex-direction: column;
gap: 90px;
position: fixed;
z-index: 100;
width: 450px;
height: 100%;
box-sizing: border-box;
padding: 31px 20px 0;
top: 0;
right: 0;
background-color: white;
border-left: 1px solid #000;
z-index: 101;
transform: translateX(450px);
transition: transform 0.75s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.menu_open{
transform: translateX(0px) !important;
}
@media(max-width:1080px){
.menu{
    width: 100% !important;
}
.menu_open{
    transform: translateX(0%) !important;
}
}
.menu-options{
display: flex;
flex-direction: column;
gap: 7px;
}
@media(max-width:1080px){
.menu-content{
    display: flex;
    position: fixed;
    z-index: 100;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    background-color: white;
    border-left: none;
    z-index: 101;
    transform: translateX(100%);
    transition: transform 0.75s cubic-bezier(0.25, 0.8, 0.25, 1);
}
}
.fila-menu{
display: flex;
flex-direction: row;
height: auto;
justify-content: space-between;
cursor: pointer;
}
.fila-top{
display: flex;
flex-direction: row;
width: 100%;
height: auto;
justify-content: space-between;
}
.menu-content p, .menu-content a{
font-size: 17px;
font-weight: 400;
text-decoration: none;
display: inline-flex;
color:var(--color-acento);
margin: 0;
}
@media(max-width:1080px){
.menu-content p, .menu-content a {
    font-size: 18px;
}
}
.menu-content a::after {
content: "\2190"; /* Flecha apuntando hacia la palabra */
opacity: 0;
margin-left: 5px; /* Ajusta el espacio entre la palabra y la flecha */
transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
transform: translateX(5px); /* Posiciona la flecha más lejos al inicio */
}

.menu-content a:hover::after {
opacity: 1;
transform: translateX(0); /* Mueve la flecha hacia el texto */
}
.subtotal-bloque{
transform: translateY(100%);
transition: transform 0.75s cubic-bezier(0.25, 0.8, 0.25, 1)
}
.subtotal-bloque-on{
transform: translateY(0%);
}
.mensaje_nuevo {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%) scale(0.8);
width: 400px;
height: 200px;
background-color: #ffffff;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
z-index: 100;
opacity: 0;
transition: all 0.4s ease-in-out;
}

.mensaje_nuevo.show {
transform: translate(-50%, -50%) scale(1);
opacity: 1;
}

.mensaje_nuevo p {
font-size: 18px;
color: #333;
margin-bottom: 20px;
text-align: center;
}

.mensaje_nuevo button, .boton_contactar {
    padding: 8px 14px;
    font-size: 19px;
    border-radius: 10px;
    color: #FBF8F2 !important;
    background-color: #829380 !important;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-flex;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    width: max-content;
}
.boton-2{
    background-color: #af4c0f !important;
}

.mensaje_nuevo button:hover, .boton_contactar:hover {
background-color: #829380;
}
.boton_presupuesto{
font-size: 19px;
cursor: pointer;
transition: background-color 0.3s ease;
display: inline-flex;
justify-content: center;
font-family: 'Cormorant Garamond', serif;
padding: 16px 0;
background-color: transparent;
border: 1px solid #2F3E2F;
color: #2F3E2F;
font-weight: 500;
width: 100%;
}


.menu_button {
cursor: pointer;
filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.menu_button .line {
fill: white; /* Color de las líneas */
transition: 0.3s ease-in-out; /* Efectos suaves al interactuar */
}

/* Cambiar color al pasar el mouse */
/*.menu_button:hover .line {
fill: #555;
}*/

/* Animación para un efecto de apertura (opcional) */
.menu_button.active .line:nth-child(1) {
transform: translateY(8px) rotate(45deg);
transform-origin: center;
}

.menu_button.active .line:nth-child(2) {
opacity: 0;
}

.menu_button.active .line:nth-child(3) {
transform: translateY(-8px) rotate(-45deg);
transform-origin: center;
}
.menu-services{
display: inline-flex;
height: auto;
justify-content: center;
transition: max-height .3s ease-in, opacity .15s ease-in;
overflow: hidden;
max-height: 0px;
opacity:0;
}
.menu-services-open{
max-height: 50px;
opacity:1;
}
.wsp_button:hover{
width: 100% !important;
}
.contenedor-imagen-proyecto{
width: 25%;
overflow: hidden;
display: flex;
justify-content: center;
align-items: center;
height: 500px;
position: relative;
box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
transition: box-shadow 0.3s ease, transform 0.3s ease;
cursor: pointer;
flex: 1 1 calc(25% - 16px);
box-sizing: border-box;
}
.contenedor-cuarta-pagina{
display: flex;
width: 80%;
justify-content: center;
gap: 18px;
flex-wrap: wrap;
}
@media (max-width: 1368px) {
.contenedor-imagen-proyecto {
flex: 1 1 calc(50% - 16px); /* En pantallas más pequeñas, ocupan la mitad del ancho */
}
}

@media (max-width: 968px) {
.contenedor-cuarta-pagina{
    gap: 25px;
}
.contenedor-imagen-proyecto {
    height: 350px;
    flex: 1 1 100%; /* En pantallas muy pequeñas, ocupan todo el ancho */
}
}
.contenedor-imagen-proyecto:hover{
box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
transform: translateY(-3px);
}
.imagen-proyecto:hover{
filter: brightness(1);
}
.imagen-proyecto{
height: 100%;
object-fit: cover;
object-position: center;
width: 100%;
/* filter: brightness(0.7); */
transition: filter .15s ease-in-out;
}
.imagen-proyecto:hover + .texto-proyecto {
opacity: 0;
transition: opacity 0.3s ease;
}
header a:hover {
transform: scale(1.0);
}
#contact_options, #service_options{
opacity: 0;
pointer-events: none;
display: flex;
position: absolute;
flex-direction: column;
gap: 12px;
transform: translateY(-2px);
padding-top: 2px;
transition: padding-top .2s ease-in-out, opacity .2s ease-in-out;
max-width: 200px;
}

#contact:hover + #contact_options, #service:hover + #service_options{
opacity: 1;
padding-top: 14px;
pointer-events: auto;
}
#contact_options:hover, #service_options:hover{
opacity: 1;
padding-top: 14px;
pointer-events: auto;
}
.full_version{
width: 100% !important;
height: 100% !important;
}
.full_version_text{
transform: scaleX(0) !important;
opacity: 0 !important;
}
.full_version_img{
width: 105% !important;
height: 105% !important;
}
@media(max-width:1080px){
    .tercera_pagina{
        gap: 40px;
    }
    .texto-tercera{
        font-size: 16px !important;
        /* text-transform: uppercase !important; */
    }
    .quienes-somos{
        font-size: 59px !important;
    }
    .contenido-about {
        display: flex;
        flex-direction: column;
        width: 70%;
        height: auto;
        gap:40px;
        justify-content: center;
        align-items: center; /* Centra verticalmente el contenido en las celdas */
        justify-items: center; /* Centra horizontalmente el contenido en las celdas */
    }
    .contenedor-imagen{
        height: 30vh;
        width:100% !important;
        display:flex;
        justify-content:center;
        align-items:center;
        overflow:visible;
    }
    .contenedor-cuarta{
        width: 100%;
    }
    .contempora-title{
        font-size: 56px !important;
        max-width: 85%;
    }
    .quienes-somos{
        font-size: 69px !important;
    }
    .cuarta-pagina{
        grid-template-columns: none !important;
        grid-template-rows: 1fr 1fr !important;
    }
    .circulo-siguiente{
        width: 80px !important;
        height: 80px !important;
        right: -30px !important;
        top: calc(50% - 40px) !important;
    }
    .flecha1{
        top: 30% !important;
        left: 26% !important;
        transform: rotate(90deg) !important;
    }
    .cuarta-mini-text{
        font-size: 12px !important; 
    }
    #texto_grande_1, #texto_grande_2 {
        font-size: 61px !important;
        top: -43px !important;
    }
    #numero_grande_1, #numero_grande_2{
        font-size: 75px !important;
    }
    .sexta_section{
        align-items: center !important;
    }
    .sexta_pagina{
        gap: 0px !important;
    }
}
.texto-3::first-letter{
font-size: 44px !important;
padding-right: 5px;
margin: 0;
}
/*.sexta_section:hover{
background-color: #F4F3EB !important;
}*/
.menu_boton{
transition: transform .2s ease-in-out, text-shadow .2s ease-in-out, color .3s ease-in-out;
font-family: "Raleway", serif;
text-transform: uppercase;
font-weight: 200;
font-size: 17px;
font-weight: 400;
text-decoration: none;
display: inline-flex;
color: white;
margin: 0;
cursor: pointer;
}
.black_version{
color: black !important;
}

.recuadro_sexta{
    width: 70%;
    position: relative;
    display: flex;
    justify-content: center;
    background-color: #fcfaf7;
    height: 85vh;
    align-items: center;
    border: 1px solid #E8E6D8;
    max-width: 560px;
}

.informacion_del_proyecto{
    transition: padding .3s ease-in-out;
}

.informacion_del_proyecto img{
    transition: max-height .2s ease-in-out;
    max-height: 0px;
}

.img_open_now{
    max-height: 200px !important;
}
a{
    text-decoration: none;
}

.foto_perfil{
    max-width: 300px;
    width: 100%;
    max-height: 450px;
    height: 100%;
}

.video{
    background: black;
    height: 80%;
    aspect-ratio: 14/9;
    overflow: hidden;
}
@media(max-width:1080px){
    .video{
        max-width: 89%;
        aspect-ratio: auto;
    }
    .video video{
        height: 100%;
    }
}
.video video{
    width: 100%;
    height: 100%;
}

.up{
    position: fixed;
    z-index: 11;
    background: #2C3C2C;
    border: 1px solid #809180;
    cursor: pointer;
    border-radius: 1000px;
    width: 40px;
    height: 40px;
    right: 23px;
    bottom: 116px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease-in-out;
    opacity: 0;
    pointer-events: none;
}
.up-show{
    opacity: 1 !important;
    pointer-events: all !important;
}
.titulo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: normal;
  color: black;
  transition: color .2s ease-in-out;
  letter-spacing: normal;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
}
.texto {
  font-family: 'Cormorant Garamond', serif;
  color: black;
  font-size: 18px;
  text-align: left;
}

.penultima_pagina form div {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 13px;
  box-sizing: border-box;
  word-wrap: break-word;
}
.penultima_pagina form {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 12px;
  box-sizing: border-box;
}
.contenedorPlaceholder {
  position: relative;
  word-break: break-word;
  box-sizing: border-box !important;
}
textarea, input, button {
  -webkit-appearance: none;
  word-wrap: break-word;
  display: block;
  padding: 12px 14px;
  box-sizing: border-box;
  border-radius: 0;
  border: 1px solid #d5d5d5;
  width: 100%;
  outline: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: black;
  line-height: normal;
  resize: none;
  transition: border-color .1s ease-in-out;
  position: relative;
  background-color: #eee;
}
label {
  position: absolute;
  bottom: calc(100% - 8px);
  left: 10px;
  padding: 0 5px;
  line-height: normal;
  color: white;
  opacity: 0;
  font-size: 11px;
  background: #fff0;
  pointer-events: none;
  transform: translateY(3px);
  transition: all .3s ease-in-out;
}
.penultima_pagina button {
  background-color: #829380;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color .1s ease-in-out;
}

.columna-form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 600px;
    margin-bottom: 40px;
}

@media(max-width:1080px){
    .columna-form{
        max-width: 85vw !important;
    }
}

/* Estilo base */
.deslizador-input {
  -webkit-appearance: none; /* quita el estilo por defecto en Chrome/Safari */
  appearance: none;
  width: 100%;
  height: 8px;
  background: transparent; /* color de la barra */
  border: none;
  outline: none;
  cursor: pointer;
  margin: 0;
  padding: 0;
  transition: background 0.3s;
}

/* Thumb (bolita) en Chrome, Safari, Edge */
.deslizador-input::-webkit-slider-thumb {
  width: 18px;
  height: 18px;
  background: #829382;
  border: 1px solid #2F3E2F;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s, background 0.3s;
}

/* Thumb en Firefox */
.deslizador-input::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: #829382;
  border: 1px solid #2F3E2F;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s, background 0.3s;
}

/* Track en Firefox */
.deslizador-input::-moz-range-track {
  background: #FBF8F2;
  border: 1px solid #2F3E2F;
  height: 8px;
  border-radius: 5px;
}
.deslizador-input::-webkit-slider-runnable-track {
  background: #FBF8F2;
  border: 1px solid #2F3E2F;
  height: 8px;
  border-radius: 5px;
}

.boton_contactanos_whats:hover{
    background-color: #2F3E2F !important;
    color: #FBF8F2 !important;
}
.boton_contactanos_whats:hover svg{
    fill: #FBF8F2 !important;
}
.circulo_res{
    width: 8px;
    height: 8px;
    background: black;
    border-radius: 100px;
    opacity: .1;
}
.circulo_select{
    opacity: .3;
}
#contenedor_resenas {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    transform: translateX(0);
    opacity: 1;
    max-width: 80vw !important;
    transition: transform 0.3s ease, opacity 0.15s ease;
}
.ocultar_resena{
    opacity: 0 !important;
}
@media(max-width:1080px){
    #contenedor_resenas{
        display: flex !important;
        flex-direction: column;
    }
}