@charset "UTF-8";
html {
  font-size: 62.5%;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
  box-sizing: border-box;
}

body {
  font-size: 1.6rem;
  font-family: "Heebo", sans-serif;
  margin: 0;
}

.contenedor {
  width: 95%;
  max-width: 120rem;
  margin: 0 auto;
}

img,
picture {
  width: 100%;
  display: block;
}

.swiper {
  width: 100%;
  padding: 20px 0;
}
@media (min-width: 992px) {
  .swiper {
    padding: 50px 0;
  }
}

.swiper-slide {
  background-position: center;
  background-size: cover;
  width: 300px;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.swiper-slide img {
  display: block;
  width: 100%;
}

.swiper-slide p {
  font-size: 2rem;
  font-weight: 500;
  margin: 5px 0;
}
@media (min-width: 992px) {
  .swiper-slide p {
    font-size: 2.5rem;
  }
}

.swiper .swiper-button-prev::after {
  content: "";
  background-image: url(../img/icons/Iz.png);
  display: block;
  width: 80px;
  height: 80px;
  background-repeat: no-repeat;
  background-size: contain;
}

.swiper .swiper-button-next::after {
  content: "";
  background-image: url(../img/icons/Dr.png);
  display: block;
  width: 80px;
  height: 80px;
  background-repeat: no-repeat;
  background-size: contain;
}

.header {
  padding: 1rem 0;
  color: white;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 999;
  transition: all 0.3s ease;
}
.header.green {
  background-color: blue;
}
.header::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 100%;
  background-color: rgba(13, 51, 100, 0.55);
  z-index: -1;
  transition: all 0.3s ease;
}
@media (min-width: 992px) {
  .header::before {
    width: 100%;
  }
}
.header.scrolled {
  background-color: rgba(13, 51, 100, 0.55);
  color: black;
  padding: 0.2rem 0;
  box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.75);
}
.header.scrolled .header__centro-item {
  color: white;
  font-size: 1.5rem;
}
.header.scrolled .header__centro-item.active {
  font-weight: 900;
  transform: scale(1.1);
}
.header.scrolled .header__derecha button,
.header.scrolled .header__derecha a {
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  padding: 0.5rem 1rem;
  font-size: 1rem;
}
@media (min-width: 992px) {
  .header.scrolled .header__derecha button,
  .header.scrolled .header__derecha a {
    padding: 0.5rem 1rem;
    font-size: 1.5rem;
  }
}
.header.scrolled .burger-menu {
  transform: scale(0.8);
}
.header.scrolled .burger-menu div {
  background-color: #FFFFFF;
}
.header__contenido {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__izquierda img {
  width: 200px;
  transition: all 0.3 ease;
}
@media (min-width: 992px) {
  .header__izquierda img {
    width: 250px;
  }
}
.header__izquierda img.shrink {
  transform: scale(0.8);
}
.header__centro-nav {
  display: none;
  gap: 3rem;
}
@media (min-width: 992px) {
  .header__centro-nav {
    display: flex;
  }
}
.header__centro-item {
  text-decoration: none;
  color: #FFFFFF;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1.6rem;
  transition: all 0.3s ease;
}
.header__centro-item.active {
  transform: scale(1.1);
  border-bottom: 2px solid white;
}
.header__centro .burger-menu {
  width: 35px;
  height: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  cursor: pointer;
}
@media (min-width: 992px) {
  .header__centro .burger-menu {
    display: none;
  }
}
.header__centro .burger-menu div {
  width: 100%;
  height: 4px;
  background-color: #FFFFFF;
  transition: all 0.3s ease;
  position: relative;
}
.header__centro .burger-menu.open div:nth-child(1) {
  transform: rotate(-45deg);
  top: 10px;
}
.header__centro .burger-menu.open div:nth-child(2) {
  opacity: 0;
}
.header__centro .burger-menu.open div:nth-child(3) {
  transform: rotate(45deg);
  top: -10px;
}
.header__derecha {
  display: none;
}
@media (min-width: 992px) {
  .header__derecha {
    display: block;
  }
}
.header__derecha button,
.header__derecha a {
  border: none;
  padding: 0.5rem 1rem;
  font-size: 1.2rem;
  background-color: transparent;
  border: 2px solid #FFFFFF;
  text-transform: uppercase;
  color: #FFFFFF;
  transition: all 0.3s ease;
  text-decoration: none;
}
@media (min-width: 992px) {
  .header__derecha button,
  .header__derecha a {
    font-size: 1.6rem;
    border: 2px solid #FFFFFF;
    padding: 1rem 1.5rem;
  }
}
.header__mobile {
  background-color: white;
  position: fixed;
  top: 0;
  left: 0;
  width: 70%;
  height: 100vh;
  transform: translateX(-100%);
  transition: all 0.3s ease;
}
.header__mobile.active {
  transform: translateX(0);
  box-shadow: 4px 0px 25px -10px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 4px 0px 25px -10px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 4px 0px 25px -10px rgba(0, 0, 0, 0.75);
}
@media (min-width: 992px) {
  .header__mobile {
    display: none;
  }
}
.header__mobile-imagen {
  padding: 5px;
  background-color: rgb(13, 51, 100);
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__mobile-imagen img {
  width: 200px;
}
.header__mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 3rem;
  padding: 10px;
}
.header__mobile-item {
  text-decoration: none;
  width: 100%;
  font-size: 2rem;
  text-transform: uppercase;
  background-color: transparent;
  padding: 5px 10px;
  border-radius: 5px;
  color: black;
  font-weight: bold;
}
.header__mobile-item.active {
  background-color: rgba(13, 51, 100, 0.8);
  color: white;
}

.footer {
  padding: 3rem 0;
  background-color: #1c3660;
}
@media (min-width: 992px) {
  .footer {
    padding: 8rem 0;
  }
}
.footer__wrapper {
  display: flex;
  justify-content: center;
  align-items: stretch;
}
@media (min-width: 992px) {
  .footer__wrapper {
    align-items: stretch;
  }
}
.footer__izquierda, .footer__derecha, .footer__centro {
  padding: 0.5rem;
}
@media (min-width: 992px) {
  .footer__izquierda, .footer__derecha, .footer__centro {
    padding: 2rem 5rem;
  }
}
.footer__izquierda {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 2px solid #FFFFFF;
}
@media (min-width: 992px) {
  .footer__izquierda {
    flex: 1;
  }
}
.footer__izquierda img {
  width: 75px;
}
@media (min-width: 600px) {
  .footer__izquierda img {
    width: 125px;
  }
}
@media (min-width: 992px) {
  .footer__izquierda img {
    width: 250px;
  }
}
.footer__centro {
  border-right: 2px solid #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  flex: 2;
  color: #FFFFFF;
}
@media (min-width: 992px) {
  .footer__centro {
    flex: 1;
    align-items: start;
  }
}
.footer__centro p {
  font-size: 1rem;
  margin: 0;
  text-align: center;
}
@media (min-width: 600px) {
  .footer__centro p {
    font-size: 1.5rem;
  }
}
@media (min-width: 992px) {
  .footer__centro p {
    font-size: 2rem;
    text-align: initial;
  }
}
.footer__centro a {
  text-align: center;
  color: white;
  text-decoration: none;
}
.footer__centro div {
  display: flex;
  gap: 1rem;
  align-items: center;
  cursor: pointer;
}
.footer__centro div img {
  width: 20px;
  height: 20px;
  object-fit: cover;
}
.footer__derecha {
  flex: 1;
  color: #FFFFFF;
}
@media (min-width: 992px) {
  .footer__derecha {
    flex: 1;
  }
}
.footer__derecha-titulo {
  font-size: 1rem;
  text-align: center;
}
@media (min-width: 600px) {
  .footer__derecha-titulo {
    font-size: 1.5rem;
  }
}
@media (min-width: 992px) {
  .footer__derecha-titulo {
    font-size: 2rem;
    text-align: initial;
  }
}
.footer__derecha-icons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
@media (min-width: 992px) {
  .footer__derecha-icons {
    justify-content: flex-start;
  }
}
.footer__derecha-icons img {
  width: 20px;
}
@media (min-width: 600px) {
  .footer__derecha-icons img {
    width: 30px;
  }
}
@media (min-width: 992px) {
  .footer__derecha-icons img {
    width: 40px;
  }
}

.banner {
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center center;
}
.banner--home {
  background-image: url(../img/imagenes/Inicio/ali-moradi-LHMwKGL1PZA-unsplash.jpg);
}
.banner--pisos {
  background-image: url(../img/imagenes/Pisos/pisos-banner.jpg);
}
.banner--cocinas {
  background-image: url(../img/imagenes/Cocinas/Sei.jpg);
  background-position: center center;
}
.banner--banos {
  background-image: url(../img/imagenes/Banos/test.jpg);
  background-position: center center;
}
.banner--griferias {
  background-image: url(../img/imagenes/Griferias/Nove.jpg);
  background-position: center center;
}
.banner--puertas {
  background-image: url(../img/imagenes/Puertas/Banners_web_4.png);
  background-position: center center;
}
.banner--contacto {
  background-image: url(../img/imagenes/Contacto.jpg);
  background-position: center center;
}
.banner--proyectos {
  background-image: url(../img/proyectos/Proyectos.jpg);
  background-position: center center;
}
.banner--proyectos .banner__titulo {
  line-height: 1;
  text-align: center;
}
.banner__contenido {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.banner__titulo {
  font-size: 5rem;
  color: white;
}
@media (min-width: 600px) {
  .banner__titulo {
    font-size: 8rem;
  }
}
@media (min-width: 992px) {
  .banner__titulo {
    font-size: 15rem;
  }
}
@media (min-width: 1200px) {
  .banner__titulo {
    font-size: 20rem;
  }
}
.banner__formulario {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
}
.banner__formulario--left {
  grid-column: 1/3;
  grid-row: 1/3;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 992px) {
  .banner__formulario--left {
    grid-column: 1/2;
    grid-row: 1/3;
  }
}
.banner__formulario--title {
  font-size: 5rem;
  text-transform: uppercase;
  margin: 0;
}
@media (min-width: 600px) {
  .banner__formulario--title {
    font-size: 7rem;
  }
}
.banner__formulario--desc {
  font-size: 2.5rem;
  margin: 0;
}
@media (min-width: 600px) {
  .banner__formulario--desc {
    font-size: 3.5rem;
  }
}
.banner__formulario--form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.banner__formulario--form input[type=text],
.banner__formulario--form input[type=email] {
  width: 100%;
  padding: 20px 15px;
  background-color: rgba(13, 51, 100, 0.4);
  color: white;
  border: none;
  outline: none;
  font-size: 16px;
  border: 3px solid #1c3660;
}
.banner__formulario--form input[type=text]::placeholder,
.banner__formulario--form input[type=email]::placeholder {
  color: white;
}
@media (min-width: 600px) {
  .banner__formulario--form input[type=text],
  .banner__formulario--form input[type=email] {
    font-size: 20px;
  }
}
.banner__formulario--form input[type=submit] {
  width: 75%;
  background-color: #1c3660;
  padding: 20px 15px;
  border: none;
  color: white;
  font-size: 16px;
  text-transform: uppercase;
}
@media (min-width: 600px) {
  .banner__formulario--form input[type=submit] {
    font-size: 20px;
  }
}

.nosotros {
  padding: 8rem 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 992px) {
  .nosotros {
    padding: 15rem 0;
  }
}
@media (min-width: 992px) {
  .nosotros {
    flex-direction: row;
  }
}
.nosotros__left {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1rem;
  width: 100%;
}
.nosotros__left img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}
@media (min-width: 600px) {
  .nosotros__left img {
    height: 275px;
  }
}
@media (min-width: 992px) {
  .nosotros__left img {
    width: 300px;
    height: 250px;
  }
}
.nosotros__right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.nosotros__right h2 {
  margin: 0;
  font-size: 5rem;
  color: #1c3660;
  text-transform: uppercase;
  line-height: 1;
  font-weight: 900;
}
@media (min-width: 600px) {
  .nosotros__right h2 {
    font-size: 7rem;
  }
}
.nosotros__right p {
  margin: 0;
  color: #1c3660;
  line-height: 1.2;
  font-size: 1.5rem;
  text-align: justify;
}
@media (min-width: 600px) {
  .nosotros__right p {
    font-size: 2.5rem;
  }
}

.espacio {
  background-color: #1c3660;
}
.espacio .contenedor {
  padding: 3.5rem 0;
}
@media (min-width: 992px) {
  .espacio .contenedor {
    padding: 4rem 0;
  }
}
.espacio__title {
  font-size: 3rem;
  margin: 0;
  text-align: center;
  color: #FFFFFF;
  font-weight: 300;
  line-height: 1.1;
}
@media (min-width: 600px) {
  .espacio__title {
    font-size: 3.5rem;
  }
}
@media (min-width: 992px) {
  .espacio__title {
    font-size: 7rem;
  }
}

.seccion {
  background-color: #E9e9e9;
  padding: 8rem 0;
}
@media (min-width: 992px) {
  .seccion {
    padding: 15rem 0;
  }
}
.seccion.reverse {
  background-color: #FFFFFF !important;
}
.seccion__contenido {
  width: 100%;
  display: flex;
  gap: 2rem;
  flex-direction: column;
}
@media (min-width: 992px) {
  .seccion__contenido {
    flex-direction: row;
  }
}
.seccion__contenido--izquierda {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  flex: 1;
  gap: 1rem;
}
@media (min-width: 992px) {
  .seccion__contenido--izquierda {
    align-items: start;
  }
}
.seccion__contenido--izquierda h2 {
  color: #1c3660;
  font-size: 5rem;
  text-transform: uppercase;
  font-weight: 900;
  margin: 0;
}
@media (min-width: 600px) {
  .seccion__contenido--izquierda h2 {
    font-size: 7rem;
  }
}
.seccion__contenido--izquierda button {
  color: #FFFFFF;
  font-size: 2.5rem;
  padding: 10px 40px;
  background-color: #1c3660;
  border: none;
  transition: all 0.3 ease;
  border: 2px solid #1c3660;
  cursor: pointer;
}
@media (min-width: 600px) {
  .seccion__contenido--izquierda button {
    font-size: 3.5rem;
  }
}
.seccion__contenido--izquierda button:hover {
  background-color: white;
  color: #1c3660;
}
.seccion__contenido--derecha {
  flex: 2;
}
.seccion__contenido--derecha img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
@media (min-width: 600px) {
  .seccion__contenido--derecha img {
    height: 450px;
  }
}
@media (min-width: 992px) {
  .seccion__contenido--derecha img {
    height: 550px;
  }
}
@media (min-width: 992px) {
  .seccion__contenido.reverse {
    flex-direction: row-reverse;
  }
}
.seccion__contenido.reverse .seccion__contenido--izquierda {
  align-items: center;
}
@media (min-width: 992px) {
  .seccion__contenido.reverse .seccion__contenido--izquierda {
    align-items: end;
  }
}

.contacto {
  display: flex;
  flex-direction: column;
  padding: 8rem 0;
}
@media (min-width: 992px) {
  .contacto {
    padding: 15rem 0;
  }
}
.contacto__title {
  font-size: 4rem;
}
@media (min-width: 992px) {
  .contacto__title {
    font-size: 5rem;
  }
}
.contacto__contenedor {
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .contacto__contenedor {
    flex-direction: row;
  }
}
.contacto__izquierda {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-right: 90px;
}
.contacto__izquierda-ubicacion {
  display: flex;
  justify-content: space-between;
  width: 375px;
  margin-bottom: 20px;
}
@media (max-width: 460px) {
  .contacto__izquierda-ubicacion {
    width: 260px;
  }
}
.contacto__izquierda-ubicacion img {
  width: 100px;
}
@media (max-width: 460px) {
  .contacto__izquierda-ubicacion img {
    width: 80px;
  }
}
.contacto__izquierda-ubicacion a {
  font-size: 20px;
  color: #1c3660;
  text-align: center;
  text-decoration: none;
}
.contacto__izquierda-mapa img {
  width: 475px;
  height: auto !important;
}
@media (max-width: 460px) {
  .contacto__izquierda-mapa img {
    width: 400px;
    height: auto !important;
  }
}
.contacto__derecha {
  flex: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 0;
  border-top: 2px solid black;
  padding-top: 2rem;
}
@media (min-width: 992px) {
  .contacto__derecha {
    border-left: 2px solid black;
    border-top: none;
    padding-left: 5rem;
    padding-top: 0;
  }
}
.contacto__derecha-formulario {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
  row-gap: 1rem;
  column-gap: 0.5rem;
}
@media (min-width: 992px) {
  .contacto__derecha-formulario {
    column-gap: 1rem;
    row-gap: 2rem;
  }
}
.contacto__derecha-formulario input:nth-of-type(1) {
  grid-column: 1/2;
}
.contacto__derecha-formulario input:nth-of-type(2) {
  grid-column: 2/3;
}
.contacto__derecha-formulario input:nth-of-type(3) {
  grid-column: 1/2;
}
.contacto__derecha-formulario input:nth-of-type(4) {
  grid-column: 2/3;
}
.contacto__derecha-formulario textarea {
  grid-column: 1/3;
}
.contacto__derecha-formulario input,
.contacto__derecha-formulario textarea {
  padding: 0.5rem 1rem;
  border: 5px solid #1c3660;
  color: black;
  outline: none;
  font-size: 1.2rem;
}
@media (min-width: 600px) {
  .contacto__derecha-formulario input,
  .contacto__derecha-formulario textarea {
    font-size: 1.6rem;
  }
}
@media (min-width: 992px) {
  .contacto__derecha-formulario input,
  .contacto__derecha-formulario textarea {
    padding: 1rem 1.5rem;
  }
}
.contacto__derecha-formulario textarea {
  resize: none;
  font-family: "Heebo", sans-serif;
}

.seccion-contacto {
  display: flex;
  flex-direction: row;
  align-items: flex-start; /* Alinea los elementos al inicio verticalmente */
  justify-content: space-between; /* Distribuye los elementos en los extremos */
  justify-content: center; /* Centrar horizontalmente */
  align-items: center; /* Centrar verticalmente */
  min-height: 100vh;
  padding: 8rem 0;
}
@media (max-width: 960px) {
  .seccion-contacto {
    flex-direction: column;
  }
}
.seccion-contacto .contacto__derecha {
  padding: 0;
  border: none;
}
.seccion-contacto .contacto__derecha-formulario button {
  margin: 10px auto;
  padding: 15px 150px;
  background-color: #1c3660;
  text-decoration: none;
  color: #FFFFFF;
  border: none;
  grid-column: 1/3;
  box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.75);
  font-size: 1.6rem;
}
@media (min-width: 992px) {
  .seccion-contacto .contacto__derecha-formulario button {
    margin: 15px auto;
    font-size: 2.5rem;
  }
}

.banner_telefono {
  color: white;
  font-size: 55px;
  position: absolute;
  margin-top: 370px;
  text-decoration: none;
}
@media (max-width: 460px) {
  .banner_telefono {
    margin-top: 300px;
    font-size: 35px;
  }
}

.subBanner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
}
.subBanner__img-container {
  position: relative;
  width: 100%;
  height: 220px;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 420px) {
  .subBanner__img-container {
    height: 150px;
  }
}
.subBanner__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px; /* Ajusta el tamaño del logotipo */
  height: auto;
}

/* Ocultar todas las secciones */
.contaner-RM, .container-VITELLI, .container-STANZA {
  display: none;
}

.info {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 175px;
  background-color: rgb(28, 54, 96);
}
.info__texto {
  color: white;
  text-align: justify;
  font-size: 35px;
}
@media (max-width: 960px) {
  .info__texto {
    font-size: 15.5px;
  }
}
@media (max-width: 420px) {
  .info__texto {
    font-size: 10px;
  }
}

.piso {
  display: flex;
  justify-content: flex-start; /* Alinear a la izquierda */
  align-items: center;
  background-color: white;
  height: 150px;
}
.piso__madera {
  color: rgb(28, 54, 96);
  margin-left: 50px;
  font-size: 40px;
}
@media (max-width: 420px) {
  .piso__madera {
    font-size: 30px;
  }
}

.contenedorPiso {
  position: relative;
}
.contenedorPiso__img {
  height: 730px;
}
@media (max-width: 420px) {
  .contenedorPiso__img {
    height: 300px;
  }
}
.contenedorPiso p {
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 0;
  padding: 15px;
  color: white;
  font-size: 35px;
}

.espaciador {
  background-color: white;
  height: 40px;
}

.espaciador2 {
  background-color: #E9E8E8;
  height: 40px;
}

.deck {
  display: flex;
  justify-content: flex-start; /* Alinear a la izquierda */
  align-items: center;
  background-color: #E9E8E8;
  height: 110px;
}
.deck__madera {
  color: rgb(28, 54, 96);
  margin-left: 50px;
  font-size: 40px;
}
@media (max-width: 420px) {
  .deck__madera {
    font-size: 30px;
  }
}

.contenedorMadera {
  position: relative;
}
.contenedorMadera__img {
  height: 730px;
}
@media (max-width: 420px) {
  .contenedorMadera__img {
    height: 300px;
  }
}
.contenedorMadera p {
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 0;
  padding: 15px;
  color: white;
  font-size: 35px;
}

.piso2 {
  display: flex;
  justify-content: flex-start; /* Alinear a la izquierda */
  align-items: center;
  background-color: #E9E8E8;
  height: 110px;
}
.piso2__roble {
  color: rgb(28, 54, 96);
  margin-left: 50px;
  font-size: 40px;
}
@media (max-width: 420px) {
  .piso2__roble {
    font-size: 30px;
  }
}

.contenedorRoble2 {
  position: relative;
}
.contenedorRoble2__img {
  height: 730px;
}
@media (max-width: 420px) {
  .contenedorRoble2__img {
    height: 300px;
  }
}
.contenedorRoble2 p {
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 0;
  padding: 15px;
  color: white;
  font-size: 35px;
}

.escaleras {
  display: flex;
  justify-content: flex-start; /* Alinear a la izquierda */
  align-items: center;
  background-color: #E9E8E8;
  height: 110px;
}
.escaleras__gradas {
  color: rgb(28, 54, 96);
  margin-left: 50px;
  font-size: 40px;
}
@media (max-width: 420px) {
  .escaleras__gradas {
    font-size: 30px;
  }
}

.wrapper4 {
  position: relative;
}
.wrapper4__img {
  width: 100%;
  height: 730px;
}
@media (max-width: 420px) {
  .wrapper4__img {
    height: 380px;
  }
}
.wrapper4 p {
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 0;
  padding: 15px;
  color: white;
  font-size: 35px;
}

.pisoRoble {
  display: flex;
  justify-content: flex-start; /* Alinear a la izquierda */
  align-items: center;
  background-color: #E9E8E8;
  height: 160px;
}
.pisoRoble__roble {
  color: rgb(28, 54, 96);
  margin-left: 50px;
  font-size: 40px;
}
@media (max-width: 420px) {
  .pisoRoble__roble {
    font-size: 30px;
  }
}

.contenedorRoble {
  position: relative;
}
.contenedorRoble__img {
  display: block;
  height: 730px;
}
@media (max-width: 960px) {
  .contenedorRoble__img {
    height: 450px;
  }
}
@media (max-width: 420px) {
  .contenedorRoble__img {
    height: 350px;
  }
}
.contenedorRoble ul {
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 20px;
  padding: 15px;
  color: #fff;
  font-size: 25px;
}
@media (max-width: 420px) {
  .contenedorRoble ul {
    font-size: 13px;
  }
}

.contenedorRoble2 {
  position: relative;
}
.contenedorRoble2__img {
  display: block;
  height: 730px;
}
@media (max-width: 960px) {
  .contenedorRoble2__img {
    height: 450px;
  }
}
@media (max-width: 420px) {
  .contenedorRoble2__img {
    height: 350px;
  }
}
.contenedorRoble2 ul {
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 20px;
  padding: 15px;
  color: #fff;
  font-size: 25px;
}
@media (max-width: 420px) {
  .contenedorRoble2 ul {
    font-size: 13px;
  }
}

.vinil {
  display: flex;
  justify-content: flex-start; /* Alinear a la izquierda */
  align-items: center;
  background-color: #E9E8E8;
  height: 160px;
}
.vinil__spc {
  color: rgb(28, 54, 96);
  margin-left: 50px;
  font-size: 40px;
}
@media (max-width: 420px) {
  .vinil__spc {
    font-size: 20px;
    margin-left: 30px;
  }
}

.contenedorvinil__img {
  height: 730px;
}
@media (max-width: 420px) {
  .contenedorvinil__img {
    height: 300px;
  }
}

.contenedorvinil2 {
  position: relative;
}
.contenedorvinil2__img {
  height: 730px;
}
@media (max-width: 420px) {
  .contenedorvinil2__img {
    height: 300px;
  }
}
.contenedorvinil2 h3 {
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 10px;
  color: #fff;
  font-size: 30px;
}
@media (max-width: 420px) {
  .contenedorvinil2 h3 {
    font-size: 15px;
  }
}

.carousel-item img {
  height: 700px;
}
@media (max-width: 420px) {
  .carousel-item img {
    height: 40vh !important;
  }
}

.carousel-caption {
  position: absolute;
}

.carousel-caption h3 {
  color: #fff; /* Color del texto */
  margin-left: -150px;
  text-align: left;
  font-size: 35px;
}
@media (max-width: 960px) {
  .carousel-caption h3 {
    font-size: 25px;
    margin-left: -90px;
  }
}
@media (max-width: 420px) {
  .carousel-caption h3 {
    font-size: 13px;
    margin-left: 0px;
  }
}

.description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 210px;
  background-color: rgb(28, 54, 96);
  padding: 80px;
}
.description__img {
  display: flex;
  align-items: flex-start; /* Alinear a la izquierda */
  width: 190px;
  height: 130px;
  margin-bottom: 10px;
}
.description__info {
  flex-grow: 1;
  text-align: justify;
  color: white;
  font-size: 25px;
}
@media (max-width: 960px) {
  .description__info {
    font-size: 15.5px;
  }
}
@media (max-width: 420px) {
  .description__info {
    font-size: 12px;
  }
}

.telero {
  display: flex;
  justify-content: flex-start; /* Alinear a la izquierda */
  align-items: center;
  background-color: white;
  height: 110px;
}
.telero__info {
  color: rgb(28, 54, 96);
  margin-left: 50px;
  font-size: 40px;
}
@media (max-width: 420px) {
  .telero__info {
    font-size: 30px;
  }
}

.contenedorTelero__img {
  height: 700px;
}
@media (max-width: 420px) {
  .contenedorTelero__img {
    height: 300px;
  }
}

.espaciador_cocina {
  background-color: white;
  height: 40px;
}

.antis {
  display: flex;
  justify-content: flex-start; /* Alinear a la izquierda */
  align-items: center;
  background-color: rgb(241, 241, 241);
  height: 110px;
}
.antis__Antis {
  color: rgb(28, 54, 96);
  margin-left: 50px;
  font-size: 40px;
}
@media (max-width: 420px) {
  .antis__Antis {
    font-size: 30px;
  }
}

.contenedorAntis__img {
  height: 700px;
}
@media (max-width: 420px) {
  .contenedorAntis__img {
    height: 300px;
  }
}

.espaciador_cocina2 {
  background-color: rgb(241, 241, 241);
  height: 40px;
}

.lain {
  display: flex;
  justify-content: flex-start; /* Alinear a la izquierda */
  align-items: center;
  height: 110px;
  background-color: white;
}
.lain__Lain {
  color: rgb(28, 54, 96);
  margin-left: 50px;
  font-size: 40px;
}
@media (max-width: 420px) {
  .lain__Lain {
    font-size: 30px;
  }
}

.contenedorLain__img {
  height: 700px;
}
@media (max-width: 420px) {
  .contenedorLain__img {
    height: 300px;
  }
}

.sei {
  display: flex;
  justify-content: flex-start; /* Alinear a la izquierda */
  align-items: center;
  background-color: rgb(241, 241, 241);
  height: 110px;
}
.sei__Sei {
  color: rgb(28, 54, 96);
  margin-left: 50px;
  font-size: 40px;
}
@media (max-width: 420px) {
  .sei__Sei {
    font-size: 30px;
  }
}

.contenedorSei__img {
  height: 700px;
}
@media (max-width: 420px) {
  .contenedorSei__img {
    height: 300px;
  }
}

.filo {
  display: flex;
  justify-content: flex-start; /* Alinear a la izquierda */
  align-items: center;
  height: 110px;
  background-color: white;
}
.filo__Filo {
  color: rgb(28, 54, 96);
  margin-left: 50px;
  font-size: 40px;
}
@media (max-width: 420px) {
  .filo__Filo {
    font-size: 30px;
  }
}

.contenedorFilo__img {
  height: 650px;
}
@media (max-width: 420px) {
  .contenedorFilo__img {
    height: 300px;
  }
}

.free {
  display: flex;
  justify-content: flex-start; /* Alinear a la izquierda */
  align-items: center;
  height: 110px;
  background-color: rgb(241, 241, 241);
}
.free__steel {
  color: rgb(28, 54, 96);
  margin-left: 50px;
  font-size: 40px;
}
@media (max-width: 420px) {
  .free__steel {
    font-size: 30px;
  }
}

.contenedorFree__img {
  height: 650px;
}
@media (max-width: 420px) {
  .contenedorFree__img {
    height: 300px;
  }
}

.banos {
  display: flex;
}
.banos__item {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-color: #E9e9e9;
}
.banos__item.active {
  background-color: rgba(13, 51, 100, 0.7);
}
.banos__item--image {
  padding: 50px 0;
  position: relative;
}
.banos__item--image img {
  width: 45px;
}
@media (min-width: 600px) {
  .banos__item--image img {
    width: 150px;
  }
}
@media (min-width: 992px) {
  .banos__item--image img {
    width: 225px;
  }
}
.banos__item--image p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #FFFFFF;
  margin: 0;
  font-size: 3rem;
  text-shadow: 2px 2px 2px #000000;
}
@media (min-width: 600px) {
  .banos__item--image p {
    font-size: 7rem;
  }
}

.info-banos {
  padding: 5rem 0;
  background-color: #1c3660;
  justify-content: center;
  align-items: center;
}
.info-banos__title {
  font-size: 7rem;
  margin: 0;
  margin-left: 100px;
  text-align: left !important;
  color: #FFFFFF;
  font-weight: 900 !important;
  line-height: 1.1;
}
@media (max-width: 960px) {
  .info-banos__title {
    font-size: 5rem;
  }
}
@media (max-width: 420px) {
  .info-banos__title {
    margin: 0;
    font-size: 3rem;
  }
}
.info-banos__desc {
  font-size: 2.5rem;
  letter-spacing: 2px;
  color: #FFFFFF;
  text-align: justify;
  margin-left: 100px;
}
@media (max-width: 960px) {
  .info-banos__desc {
    font-size: 15.5px;
  }
}
@media (max-width: 420px) {
  .info-banos__desc {
    margin: 0;
    font-size: 12px;
  }
}

.contenedorBano__img {
  height: 730px;
}
@media (max-width: 420px) {
  .contenedorBano__img {
    height: 300px;
  }
}

.container-fontana {
  display: none; /* Oculta la sección por defecto */
}

.descriptionpaini {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 190px;
  background-color: rgb(28, 54, 96);
  padding: 80px;
}
.descriptionpaini__img {
  display: flex;
  align-items: flex-start; /* Alinear a la izquierda */
  width: 190px;
  height: 110px;
  margin-bottom: 10px;
}
.descriptionpaini__info {
  flex-grow: 1;
  text-align: justify;
  color: white;
  font-size: 23px;
}
@media (max-width: 960px) {
  .descriptionpaini__info {
    font-size: 15.5px;
  }
}
@media (max-width: 420px) {
  .descriptionpaini__info {
    font-size: 12px;
  }
}

.nove {
  display: flex;
  justify-content: flex-start; /* Alinear a la izquierda */
  align-items: center;
  background-color: white;
  height: 110px;
}
.nove__info {
  color: rgb(28, 54, 96);
  margin-left: 50px;
  font-size: 40px;
}
@media (max-width: 420px) {
  .nove__info {
    font-size: 30px;
  }
}

.contenedorNove__img {
  height: 650px;
}
@media (max-width: 420px) {
  .contenedorNove__img {
    height: 300px;
  }
}

.arena {
  display: flex;
  justify-content: flex-start; /* Alinear a la izquierda */
  align-items: center;
  background-color: white;
  height: 110px;
}
.arena__info {
  color: rgb(28, 54, 96);
  margin-left: 50px;
  font-size: 40px;
}
@media (max-width: 420px) {
  .arena__info {
    font-size: 30px;
  }
}

.contenedorArena__img {
  height: 650px;
}
@media (max-width: 420px) {
  .contenedorArena__img {
    height: 300px;
  }
}

.ovo {
  display: flex;
  justify-content: flex-start; /* Alinear a la izquierda */
  align-items: center;
  background-color: white;
  height: 110px;
}
.ovo__info {
  color: rgb(28, 54, 96);
  margin-left: 50px;
  font-size: 40px;
}
@media (max-width: 420px) {
  .ovo__info {
    font-size: 30px;
  }
}

.contenedorOvo__img {
  height: 650px;
}
@media (max-width: 420px) {
  .contenedorOvo__img {
    height: 300px;
  }
}

.dax {
  display: flex;
  justify-content: flex-start; /* Alinear a la izquierda */
  align-items: center;
  background-color: white;
  height: 110px;
}
.dax__info {
  color: rgb(28, 54, 96);
  margin-left: 50px;
  font-size: 40px;
}
@media (max-width: 420px) {
  .dax__info {
    font-size: 30px;
  }
}

.contenedorDax__img {
  height: 650px;
}
@media (max-width: 420px) {
  .contenedorDax__img {
    height: 300px;
  }
}

.cox {
  display: flex;
  justify-content: flex-start; /* Alinear a la izquierda */
  align-items: center;
  background-color: white;
  height: 110px;
}
.cox__info {
  color: rgb(28, 54, 96);
  margin-left: 50px;
  font-size: 40px;
}
@media (max-width: 420px) {
  .cox__info {
    font-size: 30px;
  }
}

.wrapper5-grifo {
  width: 100%;
  height: 650px;
}

.wrapper5__img-grifo {
  width: 100%;
  height: 575px;
}
@media (max-width: 420px) {
  .wrapper5__img-grifo {
    height: 300px;
  }
}

.contenedorPuertas {
  position: relative;
}
.contenedorPuertas__img {
  height: 730px;
}
@media (max-width: 420px) {
  .contenedorPuertas__img {
    height: 350px;
  }
}

.puerta {
  background-color: white;
  height: 110px;
}

/*# sourceMappingURL=styles.css.map */
