@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: baseline;
  scroll-behavior: smooth;
}

img, picture, video, iframe, figure {
  max-width: 100%;
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

a {
  display: block;
}

p a {
  display: inline;
}

li {
  list-style-type: none;
}

html {
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6, p, span, a, strong, blockquote, i, b, u, em {
  font-size: 1em;
  font-weight: inherit;
  font-style: inherit;
  text-decoration: none;
  color: inherit;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

form, input, textarea, select, button, label {
  font-family: inherit;
  font-size: inherit;
  -ms-hyphens: auto;
      hyphens: auto;
  background-color: transparent;
  display: block;
  color: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

table, tr, td {
  border-collapse: collapse;
  border-spacing: 0;
}

svg {
  width: 100%;
  display: block;
  fill: currentColor;
}

body {
  font-size: 100%;
  min-height: 100vh;
  -ms-hyphens: auto;
      hyphens: auto;
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  word-break: keep-all;
}

* {
  word-break: keep-all;
  word-wrap: normal; /* o overflow-wrap: normal; */
  word-break: normal;
  -ms-hyphens: none;
      hyphens: none;
}

p {
  font-size: 1rem;
  line-height: 1.6;
  word-break: normal;
  overflow-wrap: normal;
  -ms-hyphens: none;
      hyphens: none;
  font-family: "monserrat", "Roboto", sans-serif;
  font-family: Montserrat, sans-serif;
}

.header {
  width: 100%;
  color: rgb(255, 255, 255);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  -webkit-transition: 0.7s;
  transition: 0.7s;
}
@media screen and (max-width: 1200px) {
  .header {
    background-color: rgba(23, 22, 22, 0.9058823529);
    padding: 1em;
  }
}
.header a:hover {
  cursor: pointer;
  color: #D8C495;
}
.header img {
  width: 10vw;
}
.header .logo-encabezado {
  display: none;
}
@media screen and (max-width: 1200px) {
  .header .logo-encabezado {
    display: inline-block;
  }
  .header .logo-encabezado img {
    width: 20vw;
  }
}
.header .button {
  display: none;
  cursor: pointer;
}
@media screen and (max-width: 1200px) {
  .header .button {
    display: block;
  }
}
.header .svg {
  width: 2em;
  height: 2em;
  fill: beige;
}
.header .nav {
  width: 100%;
  margin: auto;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}
.header .nav.activo-grande {
  background-color: rgba(23, 22, 22, 0.9529411765);
  width: 100%;
  height: 100vh;
  min-height: 150px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.header .nav .ul-menu-celular {
  display: none;
}
@media screen and (max-width: 1200px) {
  .header .nav {
    width: 100%;
    opacity: 0;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    height: 0;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header .nav.activo {
    position: relative;
    opacity: 1;
    height: 60vh;
    min-height: 200px;
  }
  .header .nav .ul-menu-celular {
    display: block;
  }
}
.header ul {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1.2em 1fr 1.2em 1fr 1.2em 1fr 1.2em 1fr 1.2em 1fr;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.2em;
  place-content: center;
  padding: 30px;
}
@media screen and (max-width: 480px) {
  .header ul {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 0em;
  }
}
@media screen and (max-width: 1200px) {
  .header ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
            flex-flow: column wrap;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.header ul li {
  letter-spacing: 0.1em;
  display: -ms-grid;
  display: grid;
  margin: 0.3em;
  font-size: 1.3em;
  place-content: center;
}
@media screen and (max-width: 1200px) {
  .header ul li {
    margin: 1em 0;
  }
}
.header ul li img {
  -o-object-fit: cover;
     object-fit: cover;
}
.header ul li a:hover {
  color: #D8C495;
}
.header ul li .subr {
  text-decoration: none;
  background-image: -webkit-gradient(linear, left top, left bottom, from(currentColor), to(currentColor));
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  -webkit-transition: background-size 0.5s;
  transition: background-size 0.5s;
}
.header ul li .subr:hover, .header ul li .subr:focus {
  background-size: 100% 2px;
}
.header ul li .button-nav {
  display: inline;
}
.header ul #li-button-nav {
  -ms-grid-column: 5;
  -ms-grid-column-span: 2;
  grid-column: 5/7;
}
@media screen and (max-width: 1200px) {
  .header ul #li-button-nav {
    display: none;
  }
}
.header ul #li-button-nav .button-nav {
  cursor: pointer;
}
.header ul li:first-child {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
}
@media screen and (max-width: 1200px) {
  .header ul li:first-child {
    display: none;
  }
}

.header-abajo {
  background-color: rgba(28, 28, 33, 0.8196078431);
}
@media screen and (max-width: 1200px) {
  .header-abajo {
    opacity: 1;
  }
}
.header-abajo:hover {
  opacity: 1;
}

.ul-menu-grande {
  display: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ul-menu-grande.activo-grande {
  display: inline;
  width: 100%;
  height: 100vh;
  min-height: 150px;
}
.ul-menu-grande .logo-grande-nav {
  width: 100%;
  height: 70vh;
  position: absolute;
  display: -ms-grid;
  display: grid;
  place-content: center;
  padding-bottom: 2em;
}
.ul-menu-grande .logo-grande-nav img {
  width: 38vw;
}
.ul-menu-grande ul {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1.2em 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2em;
  place-content: start;
}
@media screen and (max-width: 480px) {
  .ul-menu-grande ul {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 0em;
  }
}
.ul-menu-grande ul li {
  letter-spacing: 0.1em;
  display: -ms-grid;
  display: grid;
  margin: 1em 4em;
  font-size: 1.3em;
}
.ul-menu-grande ul li .button-nav {
  display: inline;
}
.ul-menu-grande ul li:nth-child(even) {
  -ms-grid-column-align: start;
      justify-self: start; /* Alinea a la izquierda */
  text-align: left;
}
.ul-menu-grande ul li:nth-child(odd) {
  -ms-grid-column-align: end;
      justify-self: end; /* Alinea a la derecha */
  text-align: right;
}
.ul-menu-grande ul #li-button-nav {
  -ms-grid-column: 5;
  -ms-grid-column-span: 2;
  grid-column: 5/7;
}
@media screen and (max-width: 1200px) {
  .ul-menu-grande ul #li-button-nav {
    display: none;
  }
}
.ul-menu-grande ul #li-button-nav li:hover a {
  color: #D8C495;
}
.ul-menu-grande ul #li-button-nav .button-nav {
  cursor: pointer;
}
.ul-menu-grande ul li:first-child {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
}
@media screen and (max-width: 1200px) {
  .ul-menu-grande ul li:first-child {
    display: none;
  }
}
.ul-menu-grande ul a:hover {
  color: #D8C495;
}
.ul-menu-grande ul a {
  z-index: 9999;
}

footer {
  width: 100%;
  background-color: rgb(53, 53, 51);
  color: rgb(188, 195, 202);
}
footer .columnas-pie {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4em 2em 0em;
}
footer .columnas-pie .columna {
  position: inherit;
  height: 66vh;
  min-height: 300px;
  width: 25%;
  border-bottom: solid 3px rgb(126, 115, 115);
  padding: 2em 1em;
}
@media screen and (max-width: 1000px) {
  footer .columnas-pie .columna {
    width: 50%;
    height: 100%;
  }
}
@media screen and (max-width: 600px) {
  footer .columnas-pie .columna {
    width: 100%;
    height: 100%;
  }
}
footer .columnas-pie .columna img {
  padding-bottom: 1em;
  margin: auto;
  width: 80%;
}
footer .columnas-pie .columna h6 {
  font-size: 2em;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-bottom: 1em;
}
footer .columnas-pie .columna input {
  background-color: aliceblue;
  border-radius: 0.5px;
  height: 2em;
  margin: 0.5em 0;
  color: black;
  margin-bottom: 1.5em;
  padding: 0 0.5em;
}
footer .columnas-pie .columna label {
  font-size: 1.2em;
}
footer .columnas-pie .uno .caja-img {
  display: -ms-grid;
  display: grid;
  place-content: center;
  height: 80%;
  margin: 1em;
}
footer .columnas-pie .dos li {
  padding: 1em 0;
  font-size: 1.1em;
  color: rgb(188, 195, 202);
  line-height: 2em;
}
footer .columnas-pie .tres li {
  padding: 1em 0;
  font-size: 1.2em;
  letter-spacing: 0.1em;
  color: rgb(126, 115, 115);
}
footer .columnas-pie .tres li a:hover {
  color: orange;
}
footer .pie {
  background-color: rgb(30, 35, 50);
  width: 100%;
  height: 5vh;
  padding: 2rem;
}

.index .slider {
  z-index: 1;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .index .slider {
    height: 70vh;
  }
}
.index .slider .slides {
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.index .slider .slides input {
  display: none;
}
.index .slider .slides .slide {
  width: 100%;
  -webkit-transition: 2s;
  transition: 2s;
}
.index .slider .slides .slide video {
  width: 100%;
  height: 100vh;
}
@media screen and (max-width: 1000px) {
  .index .slider .first {
    display: none;
  }
}
.index .slider .second {
  display: none;
}
@media screen and (max-width: 1000px) {
  .index .slider .second {
    display: inline-block;
    width: 100%;
    height: 80vh;
    background-image: url(../img/fondos/foto_nocturna_pyroback.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: 50% 30%;
    color: aliceblue;
    position: relative;
  }
}
.index .info {
  width: 100%;
}
.index .info .info-titulo {
  background-image: url(../img/fondos/FONDO_lINEAS_.png);
  min-height: 50vh;
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0 1fr 0 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
@media screen and (max-width: 480px) {
  .index .info .info-titulo {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 0em;
  }
}
.index .info .info-titulo .info-titulo-img {
  display: -ms-grid;
  display: grid;
  place-content: end;
}
.index .info .info-titulo .info-titulo-img img {
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .index .info .info-titulo .info-titulo-img img {
    width: 30em;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.index .info .info-titulo .info-titulo-textos {
  background-color: rgb(255, 255, 255);
  height: 100%;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
  place-content: center;
  padding: 50px;
}
.index .info .info-titulo .info-titulo-textos .info-titulo-textos-uno {
  width: 100%;
}
.index .info .info-titulo .info-titulo-textos .info-titulo-textos-uno h2 {
  font-size: 3rem;
  line-height: 1.5em;
  text-align: left;
  color: #0b2236;
  font-weight: bold;
}
.index .info .info-titulo .info-titulo-textos .info-titulo-textos-linea {
  width: 100%;
  text-align: center;
  padding: 1em;
}
.index .info .info-titulo .info-titulo-textos .info-titulo-textos-dos p {
  line-height: 2em;
  width: 100%;
  font-size: 1.2rem;
  text-align: left;
  font-family: Montserrat, sans-serif;
}
@media screen and (max-width: 1000px) {
  .index .info .info-titulo {
    display: block;
  }
  .index .info .info-titulo .info-titulo-img {
    display: -ms-grid;
    display: grid;
    position: relative;
    margin: -100px auto;
    margin-top: -100px;
    z-index: -1;
  }
  .index .info .info-titulo .info-titulo-img img {
    position: relative;
  }
  .index .info .info-titulo .info-titulo-textos {
    padding: 2em;
    -ms-grid-column: 2;
    -ms-grid-column-span: 2;
    grid-column: 2/4;
  }
  .index .info .info-titulo .info-titulo-textos .empty-space {
    display: none;
  }
  .index .info .info-titulo .info-titulo-textos .info-titulo-textos-uno {
    width: 100%;
    font-size: 0.7em;
  }
  .index .info .info-titulo .info-titulo-textos .info-titulo-textos-linea {
    width: 100%;
    padding: 1em 0;
    display: none;
  }
  .index .info .info-titulo .info-titulo-textos .info-titulo-textos-dos {
    line-height: 2em;
    padding: 1em 0;
    width: 100%;
  }
}
.index .info .info-partes {
  width: 100%;
  background-color: rgb(254, 254, 255);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #edeeed;
}
.index .info .info-partes div {
  display: -ms-grid;
  display: grid;
  width: 33.3333333333%;
  text-align: center;
  padding-top: 40px;
}
@media screen and (max-width: 1000px) {
  .index .info .info-partes div {
    width: 100%;
  }
  .index .info .info-partes div h5 {
    text-align: center;
    font-size: 5em;
    padding: 0em;
    letter-spacing: 0.2em;
  }
  .index .info .info-partes div p {
    letter-spacing: 0.1em;
    font-size: 2em;
    padding: 0em 2rem;
  }
  .index .info .info-partes div .separacion {
    letter-spacing: 0em;
    padding: 0;
    margin: 0;
  }
}
.index .info .info-partes div h5 {
  text-align: center;
  font-size: 1.5em;
  padding: 0.2em;
  letter-spacing: 0.1em;
  color: #D8C495;
  font-weight: bolder;
}
.index .info .info-partes div p {
  letter-spacing: 0.1em;
  font-size: 1.2em;
  padding: 0.5em 3em;
}
.index .info .info-partes div .separacion {
  text-align: center;
  letter-spacing: 0em;
}
.index .info .info-partes .info-partes-uno {
  color: #333;
  border-right: solid #bdaf6c 2px;
}
@media screen and (max-width: 1000px) {
  .index .info .info-partes .info-partes-uno {
    border-right: none;
    border-bottom: solid #bdaf6c 2px;
  }
}
.index .info .info-partes .info-partes-dos {
  color: #333;
  border-right: solid #bdaf6c 2px;
}
@media screen and (max-width: 1000px) {
  .index .info .info-partes .info-partes-dos {
    border-right: none;
    border-bottom: solid #bdaf6c 2px;
  }
}
.index .info .info-partes .info-partes-tres {
  color: #333;
}
.index .info-areas {
  width: 100%;
  color: aliceblue;
}
.index .info-areas .areas {
  height: 60vh;
  background-color: cadetblue;
  margin: 0.5em 0;
  display: -ms-grid;
  display: grid;
  place-content: center;
  text-align: justify;
}
.index .info-areas .areas h3 {
  text-align: center;
  font-size: 2em;
  padding: 0.5em;
  letter-spacing: 0.2em;
  text-shadow: 0.05em 0.05em #333;
  line-height: 1em;
}
.index .info-areas .areas p {
  font-size: 1.2em;
  text-shadow: 0.1em 0.1em #333;
  padding: 0.5em;
}
.index .info-areas .areas button {
  display: -ms-grid;
  display: grid;
  place-content: center;
  border: solid 2px white;
  background: none;
  width: 10vw;
  min-width: 200px;
  margin: 1em auto;
  padding: 1em 2em;
  text-shadow: 0.1em 0.1em #333;
}
.index .info-areas .areas button:hover {
  cursor: pointer;
  background-color: rgba(194, 181, 181, 0.408);
  -webkit-transition: 0.7s;
  transition: 0.7s;
}
.index .info-areas .a-uno {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(75, 74, 74, 0.168627451)), to(rgba(98, 97, 97, 0.6784313725))), url(../img/fondos/Lago_Tarde-2.jpg);
  background: linear-gradient(rgba(75, 74, 74, 0.168627451), rgba(98, 97, 97, 0.6784313725)), url(../img/fondos/Lago_Tarde-2.jpg);
  background-position: 50% 70%;
  background-repeat: no-repeat;
  background-size: cover;
}
.index .info-areas .a-dos {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(75, 74, 74, 0.168627451)), to(rgba(98, 97, 97, 0.6784313725))), url(../img/fondos/2025-09-Interior-Owners-lounge-2.jpg);
  background: linear-gradient(rgba(75, 74, 74, 0.168627451), rgba(98, 97, 97, 0.6784313725)), url(../img/fondos/2025-09-Interior-Owners-lounge-2.jpg);
  background-position: 50% 90%;
  background-repeat: no-repeat;
  background-size: cover;
}
.index .info-areas .a-tres {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(75, 74, 74, 0.168627451)), to(rgba(98, 97, 97, 0.6784313725))), url(../img/fondos/2025-09-Exterior-Spa-1-1.jpg);
  background: linear-gradient(rgba(75, 74, 74, 0.168627451), rgba(98, 97, 97, 0.6784313725)), url(../img/fondos/2025-09-Exterior-Spa-1-1.jpg);
  background-position: 50% 75%;
  background-repeat: no-repeat;
  background-size: cover;
}

.casa .fondo {
  width: 100%;
  height: 100vh;
  background-image: url(../imagenes/descarga/6981054547_9de0d20a4e_o.jpg);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: 50% 30%;
  color: aliceblue;
  position: relative;
}
.casa .info {
  background-image: url(../img/fondos/TEXTURA\ TOFU.jpg);
  width: 100%;
  padding: 2em 0 0em 0;
}
.casa .info .info-titulo {
  min-height: 50vh;
  width: 100%;
  padding: 2em;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0 1fr 0 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
@media screen and (max-width: 480px) {
  .casa .info .info-titulo {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 0em;
  }
}
.casa .info .info-titulo .info-titulo-img {
  display: -ms-grid;
  display: grid;
  place-content: center;
  height: 100%;
}
.casa .info .info-titulo .info-titulo-img img {
  width: 20vw;
}
@media screen and (max-width: 1000px) {
  .casa .info .info-titulo .info-titulo-img img {
    width: 30em;
  }
}
.casa .info .info-titulo .info-titulo-textos {
  height: 100%;
  -ms-grid-column: 2;
  -ms-grid-column-span: 2;
  grid-column: 2/4;
  text-align: center;
}
.casa .info .info-titulo .info-titulo-textos .empty-space {
  height: 25%;
  width: 100%;
}
.casa .info .info-titulo .info-titulo-textos .info-titulo-textos-uno {
  width: 100%;
  height: 20%;
}
.casa .info .info-titulo .info-titulo-textos .info-titulo-textos-uno h2 {
  font-size: 3rem;
  letter-spacing: 0.1em;
  line-height: 1em;
  text-align: center;
  color: #112134;
}
.casa .info .info-titulo .info-titulo-textos .info-titulo-textos-linea {
  width: 100%;
  height: 20%;
}
.casa .info .info-titulo .info-titulo-textos .info-titulo-textos-dos {
  line-height: 2em;
  height: 25%;
  width: 100%;
  font-size: 1.2em;
  text-align: left;
}
@media screen and (max-width: 1000px) {
  .casa .info .info-titulo {
    display: block;
  }
  .casa .info .info-titulo .info-titulo-img {
    padding: 1em 0;
  }
  .casa .info .info-titulo .info-titulo-textos {
    padding: 1em 0;
    -ms-grid-column: 2;
    -ms-grid-column-span: 2;
    grid-column: 2/4;
  }
  .casa .info .info-titulo .info-titulo-textos .empty-space {
    display: none;
  }
  .casa .info .info-titulo .info-titulo-textos .info-titulo-textos-uno {
    width: 100%;
    padding: 1em 0;
  }
  .casa .info .info-titulo .info-titulo-textos .info-titulo-textos-linea {
    width: 100%;
    padding: 1em 0;
  }
  .casa .info .info-titulo .info-titulo-textos .info-titulo-textos-dos {
    line-height: 2em;
    padding: 1em 0;
    width: 100%;
  }
}
.casa .contenedor-carrousel {
  width: 96%;
  margin: auto;
  margin-top: 40px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 65% 35%;
  grid-template-columns: 65% 35%;
}
@media screen and (max-width: 1000px) {
  .casa .contenedor-carrousel {
    width: 100%;
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }
}
@media screen and (max-width: 1000px) {
  .casa .contenedor-carrousel .columna-carrousel {
    width: 100%;
    height: 40vh;
  }
}
.casa .info-carrousel {
  width: 100%;
  height: 100%;
  display: -ms-grid;
  display: grid;
  place-content: center;
  padding: 2em;
}
.casa .info-carrousel .epigrafes {
  width: 100%;
  padding: 2em;
  margin: auto;
  font-family: Georgia, "Times New Roman", Times, serif;
}
@media screen and (max-width: 1000px) {
  .casa .info-carrousel .epigrafes {
    width: 100%;
    height: 40vh;
  }
}
.casa .info-carrousel .epigrafes h4 {
  font-size: 2em;
  color: #D8C495;
  padding-bottom: 1rem;
}
.casa .info-carrousel .epigrafes h5 {
  font-size: 1.2em;
  letter-spacing: 0.1em;
}
.casa .info-carrousel .epigrafes p {
  font-size: 1em;
  line-height: 2em;
  font-weight: bold;
}
.casa .info-carrousel .epigrafes .epigrafe {
  display: none;
}
.casa .info-carrousel .epigrafes .activo {
  display: block;
}
.casa .carrousel {
  width: 100%;
  max-width: 120em;
  overflow: hidden;
  position: relative;
}
.casa .carrousel .pre-btn,
.casa .carrousel .nxt-btn {
  border: none;
  width: 5%;
  height: 100%;
  padding: 1em;
  position: absolute;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(#fff));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
  cursor: pointer;
  z-index: 1;
}
.casa .carrousel .pre-btn {
  left: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.casa .carrousel .nxt-btn {
  right: 0;
}
.casa .carrousel .pre-btn img,
.casa .carrousel .nxt-btn img {
  opacity: 0.7;
}
.casa .carrousel .pre-btn:hover img,
.casa .carrousel .nxt-btn:hover img {
  opacity: 1;
}
.casa .carrousel-grande {
  width: 500%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.5em 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}
.casa .carrousel-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 0.2em;
}
.casa .carrousel-img img {
  -o-object-fit: cover;
     object-fit: cover;
}
.casa .puntos {
  width: 100%;
  padding: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.casa .puntos .punto {
  width: 1em;
  height: 1em;
  margin: 0.5em;
  border-radius: 50%;
  border: solid 0.5px rgba(51, 51, 51, 0.504);
}
.casa .puntos .punto:hover {
  cursor: pointer;
}
.casa .puntos .activo {
  background-color: rgba(219, 193, 92, 0.7215686275);
  z-index: 5000;
}

.como-llegar .info {
  background-image: url(../img/fondos/fondo_azul_formapng.png);
  width: 100%;
  padding: 1em 0 0em 0;
}
.como-llegar .info .info-titulo {
  height: auto;
  width: 100%;
  padding: 2em;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0 1fr 0 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
@media screen and (max-width: 480px) {
  .como-llegar .info .info-titulo {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 0em;
  }
}
.como-llegar .info .info-titulo .info-titulo-img {
  display: -ms-grid;
  display: grid;
  place-content: center;
  height: 100%;
}
.como-llegar .info .info-titulo .info-titulo-img img {
  width: 20vw;
}
@media screen and (max-width: 1000px) {
  .como-llegar .info .info-titulo .info-titulo-img img {
    width: 30em;
  }
}
.como-llegar .info .info-titulo .info-titulo-textos {
  -ms-grid-column: 2;
  -ms-grid-column-span: 2;
  grid-column: 2/4;
  place-content: center;
}
.como-llegar .info .info-titulo .info-titulo-textos .info-titulo-textos-uno {
  width: 100%;
}
.como-llegar .info .info-titulo .info-titulo-textos .info-titulo-textos-uno h2 {
  font-size: 2em;
  letter-spacing: 0.1em;
  line-height: 1em;
  text-align: left;
  margin-bottom: 2rem;
  color: #bdaf6c;
}
.como-llegar .info .info-titulo .info-titulo-textos .info-titulo-textos-dos {
  line-height: 2em;
  width: 100%;
  font-size: 1.2em;
  text-align: left;
  letter-spacing: 0.1em;
  line-height: 2em;
  color: #edeeed;
}
@media screen and (max-width: 1000px) {
  .como-llegar .info .info-titulo {
    display: block;
  }
  .como-llegar .info .info-titulo .info-titulo-img {
    padding: 1em 0;
  }
  .como-llegar .info .info-titulo .info-titulo-textos {
    padding: 1em 0;
    -ms-grid-column: 2;
    -ms-grid-column-span: 2;
    grid-column: 2/4;
  }
  .como-llegar .info .info-titulo .info-titulo-textos .empty-space {
    display: none;
  }
  .como-llegar .info .info-titulo .info-titulo-textos .info-titulo-textos-uno {
    width: 100%;
    padding: 1em 0;
  }
  .como-llegar .info .info-titulo .info-titulo-textos .info-titulo-textos-linea {
    width: 100%;
    padding: 1em 0;
  }
  .como-llegar .info .info-titulo .info-titulo-textos .info-titulo-textos-dos {
    line-height: 2em;
    padding: 1em 0;
    width: 100%;
  }
}
.como-llegar .info .mapa-camino {
  margin: 90px 0 90px 0;
  width: 100%;
  height: 50vh;
  background-color: rgba(63, 27, 27, 0.808);
}
@media screen and (max-width: 1000px) {
  .como-llegar .info .mapa-camino {
    margin: 10px 0 10px 0;
  }
}
.como-llegar .info .mapa-camino .img-mapa-camino {
  width: 100%;
  height: 100%;
  margin: auto;
}
.como-llegar .info .mapa-camino .img-mapa-camino iframe {
  width: 100%;
  height: 100%;
}
.como-llegar .info .mapa-camino .img-mapa-camino img {
  border-radius: 10px;
  margin: auto;
}
.como-llegar .vehiculos {
  width: 50%;
  margin-bottom: 2em;
  padding: 1em;
  display: inline-block;
}
@media screen and (max-width: 1000px) {
  .como-llegar .vehiculos {
    width: 100%;
    display: block;
    padding: 0;
    margin-bottom: 0em;
  }
}
.como-llegar .vehiculo {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.como-llegar .vehiculo-text {
  width: 100%;
  padding: 1.5em;
  text-align: justify;
}
.como-llegar .vehiculo-text h3 {
  font-size: 2em;
  letter-spacing: 0.1em;
  line-height: 1em;
  padding: 0.5em 0em;
}
.como-llegar .vehiculo-text p {
  font-size: 1.1em;
  letter-spacing: 0.1em;
  line-height: 1.5em;
}
.como-llegar .ruta {
  min-height: 40vh;
  width: 40%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: repeat(1, 1fr);
  gap: 0;
  place-content: center;
  padding: 3em;
  display: inline-block;
}
@media screen and (max-width: 480px) {
  .como-llegar .ruta {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 0em;
  }
}
@media screen and (max-width: 1000px) {
  .como-llegar .ruta {
    width: 100%;
    margin: auto;
    padding: 0;
    padding-bottom: 2em;
  }
}
.como-llegar .ruta .ruta-mapa {
  width: 100%;
  background-color: #333;
}
.como-llegar .ruta .ruta-mapa iframe {
  width: 100%;
}

.info-fraccionada {
  /* Animaciones */
}
.info-fraccionada h2 {
  margin: 1em;
  font-size: 4em;
  color: #0b2236;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .info-fraccionada h2 {
    font-size: 2em;
  }
}
.info-fraccionada .galeria {
  width: 100%;
  padding: 2rem;
  background: #f8f8f8;
  /* Modal */
}
.info-fraccionada .galeria .contenedor-cajas {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1.5rem 1fr 1.5rem 1fr 1.5rem 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 1000px) {
  .info-fraccionada .galeria .contenedor-cajas {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .info-fraccionada .galeria .contenedor-cajas {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.info-fraccionada .galeria .contenedor-cajas .caja {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.info-fraccionada .galeria .contenedor-cajas .caja:hover {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}
.info-fraccionada .galeria .contenedor-cajas .caja img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.info-fraccionada .galeria .contenedor-cajas .caja .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: white;
  font-size: 1.5rem;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.info-fraccionada .galeria .contenedor-cajas .caja:hover .overlay {
  opacity: 1;
}
.info-fraccionada .galeria .modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1000;
  -webkit-animation: fadeIn 0.4s ease forwards;
          animation: fadeIn 0.4s ease forwards;
}
.info-fraccionada .galeria .modal.activo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.info-fraccionada .galeria .modal .modal-contenido {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  -webkit-animation: slideDown 0.4s ease;
          animation: slideDown 0.4s ease;
  position: relative;
}
.info-fraccionada .galeria .modal .modal-contenido p {
  font-size: 1.1rem;
  color: #333;
}
.info-fraccionada .galeria .modal .modal-contenido .cerrar {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes slideDown {
  from {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideDown {
  from {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

.separador-cabecera {
  width: 100%;
  height: 20vh;
  background-color: #333;
  display: -ms-grid;
  display: grid;
  place-content: start;
  margin: auto;
}
.separador-cabecera h3 {
  padding: 1em 5rem;
  color: #edeeed;
  font-size: clamp(1.5rem, 3vw, 3rem);
}
@media screen and (max-width: 900px) {
  .separador-cabecera {
    height: 10vh;
  }
  .separador-cabecera h3 {
    padding: 1em 5rem;
    color: #edeeed;
    font-size: clamp(1.5rem, 3vw, 3rem);
    padding: 1rem;
  }
}

.separador-imagen {
  width: 100%;
  height: 70vh;
  background-image: url(../img/fondos/interior_depto_950.jpg);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: 100% 20%;
  color: aliceblue;
  position: relative;
}
.separador-imagen .capa {
  width: 100%;
  height: 75vh;
  position: absolute;
  top: 0;
  left: 0;
  padding: 2em;
}
.separador-imagen .capa .separador-boton-central {
  width: 100%;
  height: 100%;
  display: -ms-grid;
  display: grid;
  place-content: center;
}
.separador-imagen .capa .separador-boton-central button {
  color: #25252a;
  background-color: #dedede;
  font-size: 1.5rem;
  border-color: #25252a;
  border: 2px;
  border-radius: 1rem;
  padding: 1em 2em;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.separador-imagen .capa .separador-boton-central button:hover {
  cursor: pointer;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.contenedor-info-partes h3 {
  text-align: center;
  font-size: 3em;
  margin: 20px 0 50px 0;
}
@media screen and (max-width: 600px) {
  .contenedor-info-partes h3 {
    margin: 20px 0 5px 0;
  }
}
.contenedor-info-partes .info-partes {
  width: 100%;
  background-color: rgb(254, 254, 255);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #edeeed;
}
.contenedor-info-partes .info-partes div {
  display: -ms-grid;
  display: grid;
  height: auto;
  width: 33.3333333333%;
  text-align: center;
  place-content: center;
}
@media screen and (max-width: 1000px) {
  .contenedor-info-partes .info-partes div {
    width: 100%;
    max-height: 300px;
  }
  .contenedor-info-partes .info-partes div h5 {
    text-align: center;
    font-size: 5em;
    padding: 0.2em;
    letter-spacing: 0.2em;
  }
  .contenedor-info-partes .info-partes div p {
    letter-spacing: 0.1em;
    font-size: 2em;
    padding: 0.5em 3em;
  }
  .contenedor-info-partes .info-partes div .separacion {
    letter-spacing: 0em;
  }
}
.contenedor-info-partes .info-partes div h5 {
  text-align: center;
  font-size: 1.5em;
  padding: 0.2em;
  letter-spacing: 0.1em;
  color: #D8C495;
  font-weight: bolder;
}
.contenedor-info-partes .info-partes div p {
  letter-spacing: 0.1em;
  font-size: 1.2em;
  padding: 0.5em 3em;
  text-align: center;
}
.contenedor-info-partes .info-partes div .separacion {
  text-align: center;
  letter-spacing: 0em;
}
.contenedor-info-partes .info-partes .info-partes-uno {
  color: #333;
  border-right: solid #bdaf6c 2px;
}
@media screen and (max-width: 1000px) {
  .contenedor-info-partes .info-partes .info-partes-uno {
    border-right: none;
    border-bottom: solid #bdaf6c 2px;
    text-align: center;
  }
}
.contenedor-info-partes .info-partes .info-partes-dos {
  color: #333;
  border-right: solid #bdaf6c 2px;
}
@media screen and (max-width: 1000px) {
  .contenedor-info-partes .info-partes .info-partes-dos {
    border-right: none;
    border-bottom: solid #bdaf6c 2px;
    text-align: center;
  }
}
.contenedor-info-partes .info-partes .info-partes-tres {
  color: #333;
}

.seccion-simple {
  width: 100%;
  padding: 4rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: url(../img/fondos/TEXTURA\ TOFU.jpg);
}
.seccion-simple .contenedor-simple {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2fr;
  grid-template-columns: 1fr 2fr;
  border-radius: 12px;
  overflow: hidden;
  max-width: 400px;
  min-width: 300px;
  width: 100%;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.seccion-simple .contenedor-simple:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}
.seccion-simple .contenedor-simple .columna {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.seccion-simple .contenedor-simple .imagen-col {
  width: 60%;
  margin: auto;
  margin-top: 20px;
}
.seccion-simple .contenedor-simple .imagen-col img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.seccion-simple .contenedor-simple .texto-col {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.seccion-simple .contenedor-simple .texto-col .texto h2 {
  font-size: 2rem;
  color: #0b2236;
  margin-bottom: 1rem;
}
.seccion-simple .contenedor-simple .texto-col .texto p {
  font-size: 1.1rem;
  font-weight: bold;
  color: #112134;
  line-height: 1.6;
}
.seccion-simple .contenedor-simple .texto-col .boton {
  margin-top: 0.5rem;
}
.seccion-simple .contenedor-simple .texto-col .boton button {
  min-width: 200px;
  padding: 0.8rem 3rem;
  border: none;
  border-radius: 8px;
  background-color: #0b2236;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.seccion-simple .contenedor-simple .texto-col .boton button:hover {
  background-color: #133a5c;
}
@media screen and (max-width: 900px) {
  .seccion-simple .contenedor-simple {
    -ms-grid-columns: 1fr 2fr;
    grid-template-columns: 1fr 2fr;
  }
  .seccion-simple .contenedor-simple .imagen-col {
    width: 90%;
    margin: auto;
  }
  .seccion-simple .contenedor-simple .imagen-col img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .seccion-simple .texto-col {
    padding: 1.5rem;
    text-align: left;
  }
  .seccion-simple .texto-col .boton {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.info-fraccionada-primera {
  background-color: #ffffff;
  /* Animaciones */
}
.info-fraccionada-primera h2 {
  padding: 2rem;
  margin: 1em;
  font-size: 4em;
  color: #0b2236;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .info-fraccionada-primera h2 {
    font-size: 2em;
  }
}
.info-fraccionada-primera .galeria {
  width: 100%;
  padding: 2rem;
  background: #f8f8f8;
  /* Modal */
}
.info-fraccionada-primera .galeria .contenedor-cajas {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1.5rem 1fr 1.5rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 1000px) {
  .info-fraccionada-primera .galeria .contenedor-cajas {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .info-fraccionada-primera .galeria .contenedor-cajas {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.info-fraccionada-primera .galeria .contenedor-cajas .caja {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.info-fraccionada-primera .galeria .contenedor-cajas .caja:hover {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}
.info-fraccionada-primera .galeria .contenedor-cajas .caja img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.info-fraccionada-primera .galeria .contenedor-cajas .caja .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.53);
  display: -ms-grid;
  display: grid;
  place-content: center;
  color: white;
  font-size: 1.5rem;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  padding: 0 2rem 2rem 2rem;
}
.info-fraccionada-primera .galeria .contenedor-cajas .caja .overlay h3 {
  width: 96%;
  margin: auto;
  color: #ffffff;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}
.info-fraccionada-primera .galeria .contenedor-cajas .caja .overlay button {
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-top: 2rem;
  min-width: 200px;
  padding: 0.8rem 3rem;
  border: solid 1px #f8f8f8;
  border-radius: 8px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: bolder;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.info-fraccionada-primera .galeria .contenedor-cajas .caja .overlay button:hover {
  background-color: rgba(243, 246, 249, 0.5215686275);
}
.info-fraccionada-primera .galeria .contenedor-cajas .caja:hover .overlay {
  opacity: 1;
}
.info-fraccionada-primera .galeria .modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1000;
  -webkit-animation: fadeIn 0.4s ease forwards;
          animation: fadeIn 0.4s ease forwards;
}
.info-fraccionada-primera .galeria .modal.activo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.info-fraccionada-primera .galeria .modal .modal-contenido {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  -webkit-animation: slideDown 0.4s ease;
          animation: slideDown 0.4s ease;
  position: relative;
}
.info-fraccionada-primera .galeria .modal .modal-contenido p {
  font-size: 1.1rem;
  color: #333;
}
.info-fraccionada-primera .galeria .modal .modal-contenido .cerrar {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideDown {
  from {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

.nosotros {
  background-color: #dcdcdc;
}
.nosotros .fondo {
  width: 100%;
  height: 80vh;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 241, 241, 0.168627451)), to(rgba(255, 255, 255, 0.1215686275))), url(../img/fondos/Lago_día_fondo.jpg);
  background: linear-gradient(rgba(255, 241, 241, 0.168627451), rgba(255, 255, 255, 0.1215686275)), url(../img/fondos/Lago_día_fondo.jpg);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  color: aliceblue;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-size: cover;
  background-position: 100% 180%;
}
.nosotros .fondo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, rgba(255, 255, 255, 0)), to(#112134));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 70%, #112134 100%);
}
.nosotros .sobre-nosotros {
  width: 100%;
  background-color: rgb(53, 53, 51);
  color: rgb(19, 19, 19);
  background-image: url(../img/fondos/FONDO_Blanco_Final_Fabian_ProduccionWeb_MB_Resort.jpg);
}
.nosotros .sobre-nosotros .contenedor-nosotros {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4em 2em 0em;
  border-bottom: solid 3px rgb(126, 115, 115);
}
.nosotros .sobre-nosotros .contenedor-nosotros .columa-nosotros {
  position: inherit;
  width: 50%;
  padding: 2em 1em;
}
.nosotros .sobre-nosotros .contenedor-nosotros .columa-nosotros img {
  padding-bottom: 1em;
  margin: auto;
  width: 60%;
}
.nosotros .sobre-nosotros .contenedor-nosotros .columa-nosotros .uno p {
  line-height: 2rem;
  text-align: justify;
}
.nosotros .sobre-nosotros .contenedor-nosotros .columa-nosotros .uno .caja-img {
  display: -ms-grid;
  display: grid;
  place-content: center;
  height: 80%;
}

.galeria {
  background-color: #112134;
}
.galeria .fondo {
  width: 100%;
  height: 90vh;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(17, 33, 52, 0.4705882353)), to(rgba(17, 33, 52, 0.7607843137))), url(../img/fondos/foto_nocturna_pyroback.jpg);
  background: linear-gradient(rgba(17, 33, 52, 0.4705882353), rgba(17, 33, 52, 0.7607843137)), url(../img/fondos/foto_nocturna_pyroback.jpg);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: 50% 30%;
  color: aliceblue;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-size: cover;
  background-position: 50% 50%;
  display: -ms-grid;
  display: grid;
  place-content: center;
}
.galeria .fondo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, rgba(255, 255, 255, 0)), to(#112134));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 70%, #112134 100%);
}
.galeria .fondo h3 {
  color: #edeeed;
  font-size: 2rem;
  max-width: 700px;
  text-align: center;
}
.galeria .amenidades {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  -ms-grid-rows: auto 1rem auto 1rem auto 1rem auto 1rem auto 1rem auto 1rem auto 1rem auto 1rem auto;
  grid-template-rows: repeat(9, auto);
  gap: 1rem;
  padding: 2rem;
  width: 90vw;
  margin: 0 auto;
}
.galeria .amenidades > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.galeria .amenidades > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.galeria .amenidades > *:nth-child(3) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.galeria .amenidades > *:nth-child(4) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}
.galeria .amenidades > *:nth-child(5) {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
}
.galeria .amenidades > *:nth-child(6) {
  -ms-grid-row: 5;
  -ms-grid-column: 3;
}
.galeria .amenidades > *:nth-child(7) {
  -ms-grid-row: 7;
  -ms-grid-column: 1;
}
.galeria .amenidades > *:nth-child(8) {
  -ms-grid-row: 7;
  -ms-grid-column: 3;
}
.galeria .amenidades > *:nth-child(9) {
  -ms-grid-row: 9;
  -ms-grid-column: 1;
}
.galeria .amenidades > *:nth-child(10) {
  -ms-grid-row: 9;
  -ms-grid-column: 3;
}
.galeria .amenidades > *:nth-child(11) {
  -ms-grid-row: 11;
  -ms-grid-column: 1;
}
.galeria .amenidades > *:nth-child(12) {
  -ms-grid-row: 11;
  -ms-grid-column: 3;
}
.galeria .amenidades > *:nth-child(13) {
  -ms-grid-row: 13;
  -ms-grid-column: 1;
}
.galeria .amenidades > *:nth-child(14) {
  -ms-grid-row: 13;
  -ms-grid-column: 3;
}
.galeria .amenidades > *:nth-child(15) {
  -ms-grid-row: 15;
  -ms-grid-column: 1;
}
.galeria .amenidades > *:nth-child(16) {
  -ms-grid-row: 15;
  -ms-grid-column: 3;
}
.galeria .amenidades > *:nth-child(17) {
  -ms-grid-row: 17;
  -ms-grid-column: 1;
}
.galeria .amenidades > *:nth-child(18) {
  -ms-grid-row: 17;
  -ms-grid-column: 3;
}
.galeria .amenidades .caja {
  border-radius: 8px;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  height: auto;
  margin: 1rem 2rem;
}
.galeria .amenidades .caja:hover {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}
.galeria .amenidades .caja img {
  width: 100%;
  height: auto;
  display: block;
}
.galeria .amenidades .caja h4 {
  font-size: 2em;
  color: #edeeed;
  text-align: right;
  font-weight: bold;
  padding: 0.8rem;
}
.galeria .amenidades .caja p {
  margin: 0;
  padding: 0.8rem;
  font-size: 1rem;
  color: #bdaf6c;
  text-align: center;
  text-align: right;
  letter-spacing: 5px;
}
@media (max-width: 768px) {
  .galeria .amenidades .caja {
    width: 100%;
    padding: 0;
    margin: 0;
  }
}
@media (max-width: 768px) {
  .galeria .amenidades {
    padding: 0;
    margin: auto;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    width: 100%;
  }
  .galeria .amenidades > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
}

.section-duo-uno {
  background-image: url(../img/fondos/fondo_azul_formapng.png);
  display: -ms-grid;
  display: grid;
  content: center;
}
.section-duo-uno h2 {
  margin: auto;
  padding: 2rem;
  margin: 2rem 3em;
  font-size: 4em;
  color: #D8C495;
  text-align: center;
  border-bottom: #D8C495 solid 2px;
}
@media screen and (max-width: 1000px) {
  .section-duo-uno h2 {
    font-size: 2em;
    margin: 2rem 1rem;
  }
}
.section-duo-uno .info-section-duo {
  width: 100%;
  padding: 3rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.section-duo-uno .info-section-duo .info-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2rem 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 1rem;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.section-duo-uno .info-section-duo .info-container .info-image img {
  border-radius: 1rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.section-duo-uno .info-section-duo .info-container .info-text {
  padding: 2rem;
}
.section-duo-uno .info-section-duo .info-container .info-text h3 {
  color: #D8C495;
  text-align: right;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.section-duo-uno .info-section-duo .info-container .info-text p {
  font-size: 1rem;
  color: #edeeed;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  text-align: right;
}
.section-duo-uno .info-section-duo .info-container .info-text button {
  margin: 1.5rem auto;
  background: #918a68;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  cursor: pointer;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
  margin-right: 0;
}
.section-duo-uno .info-section-duo .info-container .info-text button:hover {
  background: #a39c3f;
}
@media (max-width: 768px) {
  .section-duo-uno .info-section-duo .info-container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    text-align: center;
  }
  .section-duo-uno .info-section-duo .info-container .info-image {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .section-duo-uno .info-section-duo .info-container .info-text {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding: 1.5rem;
  }
}

.section-duo-dos {
  background-image: url(../img/fondos/fondo_azul_formapng.png);
  display: -ms-grid;
  display: grid;
  content: center;
}
.section-duo-dos h2 {
  margin: auto;
  padding: 2rem;
  margin: 2rem 3em;
  font-size: 4em;
  color: #D8C495;
  text-align: center;
  border-bottom: #D8C495 solid 2px;
}
@media screen and (max-width: 1000px) {
  .section-duo-dos h2 {
    font-size: 2em;
    margin: 2rem 1rem;
  }
}
.section-duo-dos .info-section-duo {
  width: 100%;
  padding: 3rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.section-duo-dos .info-section-duo .info-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2rem 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 1rem;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.section-duo-dos .info-section-duo .info-container .info-image img {
  border-radius: 1rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.section-duo-dos .info-section-duo .info-container .info-text {
  padding: 2rem;
}
.section-duo-dos .info-section-duo .info-container .info-text h3 {
  color: #D8C495;
  text-align: left;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.section-duo-dos .info-section-duo .info-container .info-text p {
  font-size: 1rem;
  color: #edeeed;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  text-align: left;
}
.section-duo-dos .info-section-duo .info-container .info-text button {
  margin: 1.5rem auto;
  background: rgba(145, 138, 104, 0.5725490196);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  cursor: pointer;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.section-duo-dos .info-section-duo .info-container .info-text button:hover {
  background: rgba(163, 156, 63, 0.6235294118);
}
@media (max-width: 768px) {
  .section-duo-dos .info-section-duo .info-container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    text-align: center;
  }
  .section-duo-dos .info-section-duo .info-container .info-image {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .section-duo-dos .info-section-duo .info-container .info-text {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding: 1.5rem;
  }
}

.section-duo-tres {
  display: -ms-grid;
  display: grid;
  content: center;
}
.section-duo-tres h2 {
  font-size: 1.8rem;
  color: #0b2236;
  margin-bottom: 2rem;
}
.section-duo-tres .info-section-duo {
  width: 80%;
  margin: auto;
  padding: 3rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.section-duo-tres .info-section-duo .info-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2rem 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 1rem;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.section-duo-tres .info-section-duo .info-container .info-image img {
  border-radius: 1rem;
  width: 60%;
  margin: auto;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.section-duo-tres .info-section-duo .info-container .info-text {
  padding: 2rem;
}
.section-duo-tres .info-section-duo .info-container .info-text h3 {
  color: #D8C495;
  text-align: left;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.section-duo-tres .info-section-duo .info-container .info-text p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.section-duo-tres .info-section-duo .info-container .info-text button {
  margin: 1.5rem 0;
  background: rgba(145, 138, 104, 0.5725490196);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  cursor: pointer;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.section-duo-tres .info-section-duo .info-container .info-text button:hover {
  background: rgba(163, 156, 63, 0.6235294118);
}
@media (max-width: 768px) {
  .section-duo-tres .info-section-duo .info-container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    text-align: left;
  }
  .section-duo-tres .info-section-duo .info-container .info-image {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .section-duo-tres .info-section-duo .info-container .info-text {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding: 1.5rem;
  }
}

.section-duo-cuatro {
  display: -ms-grid;
  display: grid;
  content: center;
}
.section-duo-cuatro h2 {
  font-size: 1.8rem;
  color: #0b2236;
  margin-bottom: 2rem;
  text-align: right;
}
.section-duo-cuatro .info-section-duo {
  width: 80%;
  margin: auto;
  padding: 3rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.section-duo-cuatro .info-section-duo .info-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2rem 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 1rem;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.section-duo-cuatro .info-section-duo .info-container .info-image img {
  border-radius: 1rem;
  width: 60%;
  margin: auto;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.section-duo-cuatro .info-section-duo .info-container .info-text {
  padding: 2rem;
}
.section-duo-cuatro .info-section-duo .info-container .info-text h3 {
  color: #D8C495;
  text-align: right;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.section-duo-cuatro .info-section-duo .info-container .info-text p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  text-align: right;
}
.section-duo-cuatro .info-section-duo .info-container .info-text p a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  place-content: end;
}
.section-duo-cuatro .info-section-duo .info-container .info-text button {
  margin: 1.5rem 0;
  background: rgba(145, 138, 104, 0.5725490196);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  cursor: pointer;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
  text-align: right;
}
.section-duo-cuatro .info-section-duo .info-container .info-text button:hover {
  background: rgba(163, 156, 63, 0.6235294118);
}
@media (max-width: 768px) {
  .section-duo-cuatro .info-section-duo .info-container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    text-align: right;
  }
  .section-duo-cuatro .info-section-duo .info-container .info-image {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .section-duo-cuatro .info-section-duo .info-container .info-text {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding: 1.5rem;
  }
}

.section-duo-cinco {
  display: -ms-grid;
  display: grid;
  content: center;
}
.section-duo-cinco h2 {
  font-size: 1.8rem;
  color: #0b2236;
  margin-bottom: 2rem;
}
.section-duo-cinco .info-section-duo {
  width: 80%;
  margin: auto;
  padding: 3rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.section-duo-cinco .info-section-duo .info-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2rem 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 1rem;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.section-duo-cinco .info-section-duo .info-container .info-image img {
  border-radius: 1rem;
  width: 60%;
  margin: auto;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.section-duo-cinco .info-section-duo .info-container .info-text {
  padding: 2rem;
}
.section-duo-cinco .info-section-duo .info-container .info-text h3 {
  color: #D8C495;
  text-align: left;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.section-duo-cinco .info-section-duo .info-container .info-text p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.section-duo-cinco .info-section-duo .info-container .info-text button {
  margin: 1.5rem 0;
  background: rgba(145, 138, 104, 0.5725490196);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  cursor: pointer;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.section-duo-cinco .info-section-duo .info-container .info-text button:hover {
  background: rgba(163, 156, 63, 0.6235294118);
}
@media (max-width: 768px) {
  .section-duo-cinco .info-section-duo .info-container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    text-align: left;
  }
  .section-duo-cinco .info-section-duo .info-container .info-image {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .section-duo-cinco .info-section-duo .info-container .info-text {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding: 1.5rem;
  }
}

footer {
  width: 100%;
  background-color: rgb(53, 53, 51);
  color: rgb(188, 195, 202);
  background-image: url(../img/fondos/fondo_azul_formapng.png);
}
footer .columnas-pie {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0em 2em 0em;
  border-bottom: solid 3px rgb(126, 115, 115);
}
footer .columnas-pie .columna {
  position: inherit;
  min-height: 300px;
  width: 30%;
  padding: 2em 1em;
  border: none;
}
@media screen and (max-width: 1000px) {
  footer .columnas-pie .columna {
    width: 50%;
    height: 100%;
  }
}
@media screen and (max-width: 600px) {
  footer .columnas-pie .columna {
    width: 100%;
    height: 100%;
  }
}
footer .columnas-pie .columna img {
  padding-bottom: 1em;
  margin: auto;
  width: 80%;
}
footer .columnas-pie .columna h6 {
  font-size: 2em;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-bottom: 1em;
}
footer .columnas-pie .columna input {
  background-color: aliceblue;
  border-radius: 0.5px;
  height: 2em;
  margin: 0.5em 0;
  color: black;
  margin-bottom: 1.5em;
  padding: 0 0.5em;
}
footer .columnas-pie .columna label {
  font-size: 1.2em;
}
footer .columnas-pie .columna button {
  border: solid 2px orange;
  background: none;
  padding: 0.5em 1em;
  text-align: center;
  color: orange;
  font-size: 1em;
}
footer .columnas-pie .columna button:hover {
  cursor: pointer;
}
@media screen and (max-width: 600px) {
  footer .columnas-pie .uno {
    border-bottom: solid 3px rgb(126, 115, 115);
  }
}
@media screen and (max-width: 600px) {
  footer .columnas-pie .uno {
    border-top: solid 3px rgb(126, 115, 115);
  }
}
footer .columnas-pie .uno .caja-img {
  display: -ms-grid;
  display: grid;
  place-content: center;
  height: 80%;
  margin: 1em;
}
footer .columnas-pie .dos {
  display: -ms-grid;
  display: grid;
  place-content: center;
  margin-right: 40px;
}
footer .columnas-pie .dos li {
  padding: 1rem 0;
  font-size: 1.1em;
  color: rgb(188, 195, 202);
  line-height: 1rem;
}
footer .columnas-pie .tres {
  display: -ms-grid;
  display: grid;
  place-content: center;
  margin-left: 40px;
}
footer .columnas-pie .tres li {
  padding: 1rem 0;
  font-size: 1.2em;
  letter-spacing: 0.1em;
  color: rgb(126, 115, 115);
  text-align: right;
}
footer .columnas-pie .tres li a:hover {
  color: #D8C495;
}
footer .pie {
  background-color: rgb(53, 53, 51);
  width: 100%;
  height: 4vh;
  padding: 2rem;
}

.subr:hover {
  cursor: pointer !important;
  color: #D8C495 !important;
}

#fondo-nosotros {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.168627451)), to(rgba(98, 97, 97, 0.6784313725))), url(../img/fondos/Lago_Aerea-2.jpg);
  background: linear-gradient(rgba(255, 255, 255, 0.168627451), rgba(98, 97, 97, 0.6784313725)), url(../img/fondos/Lago_Aerea-2.jpg);
  background-position: 50% 70%;
  background-repeat: no-repeat;
  background-size: cover;
}
/* Estilos para el botón de WhatsApp */
.whatsapp-floating {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-main-btn {
    background-color: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.whatsapp-main-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

.whatsapp-main-btn i {
    color: white;
    font-size: 28px;
}

.whatsapp-options {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    padding: 10px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.whatsapp-options.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.whatsapp-option {
    display: block;
    padding: 12px 15px;
    margin: 5px 0;
    background: #f8f9fa;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid #e9ecef;
    text-align: center;
}

.whatsapp-option:hover {
    background: #25D366;
    color: white;
    transform: translateX(-5px);
}

.whatsapp-close {
    text-align: center;
    padding: 8px;
    margin-top: 5px;
    cursor: pointer;
    color: #666;
    font-size: 12px;
    border-top: 1px solid #eee;
}