:root {
  --red: #fd064c;
  --dark-red: #76012e;
}

html {
  font-family: "Lato", sans-serif;
}

body {
  background-color: #ebeef0;
}

section {
  overflow-x: clip;
}

.container {
  max-width: 124rem;
}

.float_links {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 15;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  overflow: hidden;
  row-gap: 0.5rem;
}
.float_links a,
.float_links button {
  display: flex;
  align-items: center;
  max-width: 4.3rem;
  background-color: var(--dark-red);
  border-radius: 3rem 0 0 3rem;
  padding: 0.7rem 1.1rem;
  transition: all 200ms ease;
}
@media screen and (min-width: 769px) {
  .float_links a,
  .float_links button {
    max-width: 6rem;
    padding: 1rem 2rem;
  }
  .float_links a:hover,
  .float_links button:hover {
    max-width: 20rem;
  }
}
.float_links a span,
.float_links button span {
  color: white;
  margin-left: 2rem;
  font-size: 1.8rem;
  font-weight: 300;
  font-family: "Bebas Neue", sans-serif;
}
.float_links .insta::before {
  content: url("../images/ico-insta.svg");
}
.float_links .face::before {
  content: url("../images/ico-facebook.svg");
}
.float_links .whats::before {
  content: url("../images/ico-whats.svg");
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
  background-color: rgba(255, 255, 255, 0.5);
  width: 100%;
  transition: all 400ms ease;
  padding: 2rem 0;
}
.header.scrolled {
  background-color: rgba(255, 255, 255, 0.9);
}
.header:not(.opened).scroll-down {
  transform: translateY(-100%);
}
.header.opened {
  background-color: rgba(0, 0, 0, 0.4);
}
.header.opened .header_logo svg path {
  fill: white;
}
.header.opened .menu_button span,
.header.opened .menu_button span:nth-child(2)::after,
.header.opened .menu_button span:nth-child(2)::before {
  background-color: white;
}
.header_logo svg {
  width: 16rem;
  height: 3.9rem;
}
@media screen and (max-width: 768px) {
  .header_logo svg {
    width: 8rem;
    height: auto;
  }
}
.header_logo svg path {
  fill: var(--red);
}
.header .container > * {
  flex: 1 1 33.3%;
}
.header .menu_button {
  height: 2rem;
  margin: 0 0 0 auto;
}
.header .menu_button span,
.header .menu_button span:nth-child(2)::after,
.header .menu_button span:nth-child(2)::before {
  transition: all 400ms ease;
  background-color: var(--dark-red);
}

.cotizar {
  position: fixed;
  bottom: 3vh;
  right: 3vw;
  z-index: 5;
  background-color: var(--red);
  color: white;
  border-radius: 3rem;
  padding: 1rem 4rem;
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  font-weight: 300;
  font-family: "Bebas Neue", sans-serif;
}
@media screen and (max-width: 768px) {
  .cotizar {
    bottom: 15vh;
    right: 50%;
    position: absolute;
    transform: translateX(50%);
  }
}

.menu {
  position: fixed;
  top: 8.2rem;
  height: calc(100vh - 8.2rem);
  left: 0;
  z-index: 4;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  text-align: center;
  display: none;
  color: white;
}
@media screen and (max-width: 768px) {
  .menu {
    top: 6.7rem;
    height: calc(100vh - 6.7rem);
  }
}
.menu_title {
  font-size: 5.6rem;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.2em;
  display: block;
  padding: 4rem 0;
}
@media screen and (max-width: 768px) {
  .menu_title {
    font-size: 3.6rem;
  }
}
.menu_title::after {
  content: "";
  width: 20rem;
  height: 2px;
  background-color: white;
  margin: 4rem auto 2rem;
}
.menu_list a {
  text-transform: uppercase;
  font-weight: 300;
  font-size: 2rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .menu_list a {
    font-size: 1.6rem;
  }
}
.menu_list a:hover {
  text-decoration: underline;
}

.hero_banner {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (max-width: 860px) {
  .hero_banner {
    -o-object-position: top;
       object-position: top;
    height: calc(100vh - 10rem);
  }
}

.conceito {
  position: relative;
  overflow-x: clip;
  padding: 19vw 0;
}
@media screen and (max-width: 768px) {
  .conceito {
    padding: 25vw 0 4rem;
  }
}
.conceito_background {
  width: calc(100% + 4rem);
  height: auto;
  position: absolute;
  left: -2rem;
  top: -15vw;
}
@media screen and (max-width: 768px) {
  .conceito_background {
    top: -22vw;
    -o-object-fit: cover;
       object-fit: cover;
    height: calc(100% + 22vw);
    -o-object-position: top;
       object-position: top;
  }
}
.conceito_hojas {
  position: absolute;
  right: -36%;
  width: 65%;
  top: 0;
}
@media screen and (max-width: 768px) {
  .conceito_hojas {
    width: 115%;
  }
}
.conceito .container {
  position: relative;
  z-index: 2;
}
.conceito_video {
  width: 55%;
  border-radius: 3rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .conceito_video {
    width: 100%;
  }
}
.conceito_content {
  color: white;
  flex: 1 1 auto;
}
.conceito_content svg {
  width: 28rem;
  height: auto;
  display: block;
}
.conceito_content svg path {
  fill: white;
}
.conceito_content .conceito_linea {
  width: 40rem;
}
@media screen and (max-width: 768px) {
  .conceito_content .conceito_linea {
    max-width: 100%;
  }
}
.conceito_content .conceito_linea rect {
  fill: white;
}
.conceito_content_text {
  max-width: 44.5rem;
  text-align: center;
}

.bairro {
  padding: 10vw 0 0;
  color: var(--red);
}
.bairro_title {
  font-size: 8rem;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.05em;
  margin: 0;
}
.bairro_texto {
  text-align: center;
  max-width: 52rem;
}
.bairro_separator {
  width: 3px;
  height: 10rem;
  background-color: var(--red);
  border-radius: 50%;
}
.bairro_slider {
  margin-top: 7rem;
}
.bairro_slider_holder {
  position: relative;
}
.bairro_slider_item {
  display: none;
  position: relative;
}
.bairro_slider_item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), transparent);
  z-index: 1;
  border-radius: 3rem 0 0 3rem;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .bairro_slider_item::before {
    width: 70%;
  }
}
.bairro_slider_item:first-child {
  display: block;
}
.bairro_slider_item_foto {
  width: 100%;
  border-radius: 3rem;
  height: auto;
}
.bairro_slider .slick-arrow {
  background: url("../images/flecha_galerias.svg") no-repeat center/contain;
  width: 3.8rem;
  height: 6.5rem;
  z-index: 2;
  left: 2rem;
}
@media screen and (max-width: 768px) {
  .bairro_slider .slick-arrow {
    width: 1.8rem;
    height: 2.5rem;
  }
}
.bairro_slider .slick-next {
  left: unset;
  right: 2rem;
}
.bairro_slider_content {
  position: absolute;
  left: 9rem;
  top: 0;
  z-index: 3;
  color: white;
  max-width: 34rem;
  padding: 9rem 0 0;
}
@media screen and (max-width: 768px) {
  .bairro_slider_content {
    left: 5rem;
    padding-top: 3rem;
    max-width: 16rem;
  }
}
.bairro_slider_content_title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 6rem;
  margin-bottom: 0.5rem;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .bairro_slider_content_title {
    font-size: 3rem;
  }
}
.bairro_slider_content p {
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .bairro_slider_content p {
    font-size: 1rem;
  }
}

.modelos {
  padding: 17rem 5rem 0;
}
@media screen and (max-width: 768px) {
  .modelos {
    padding: 2rem 0 0;
  }
}
.modelos_options {
  justify-content: center;
  display: flex;
  margin-top: 1.5rem;
  width: 60%;
}
@media screen and (max-width: 768px) {
  .modelos_options {
    width: 100%;
  }
}
.modelos_options_holder {
  background-color: white;
  padding: 0.5rem;
  border-radius: 3rem;
  display: flex;
}
.modelos_options_button {
  color: var(--red);
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  border-radius: 3rem;
  padding: 0.3rem 3rem;
  background-color: transparent;
  transition: all 200ms ease;
}
@media screen and (max-width: 768px) {
  .modelos_options_button {
    padding: 0.3rem 1.5rem;
  }
}
.modelos_options_button.act {
  background-color: var(--dark-red);
  color: white;
}
.modelos_item_row {
  gap: 10rem;
}
@media screen and (max-width: 768px) {
  .modelos_item_row {
    gap: 4rem;
    flex-direction: column-reverse;
  }
}
.modelos_item_foto {
  width: 60%;
}
@media screen and (max-width: 768px) {
  .modelos_item_foto {
    width: 100%;
  }
}
.modelos_item_foto img {
  width: 100%;
  display: block;
  height: auto;
  border-radius: 3rem;
}
.modelos_item_content {
  color: var(--red);
}
.modelos_item_content_title {
  font-size: 6.3rem;
  font-weight: 300;
  font-family: "Bebas Neue", sans-serif;
  margin-bottom: 0.1em;
}
@media screen and (max-width: 768px) {
  .modelos_item_content_title {
    font-size: 4rem;
  }
}
.modelos_item_content_title span {
  font-size: 9rem;
}
@media screen and (max-width: 768px) {
  .modelos_item_content_title span {
    font-size: 7rem;
  }
}
.modelos_item_content ul {
  margin: 2rem 0 0;
}
@media screen and (max-width: 768px) {
  .modelos_item_content ul li {
    font-size: 1.4rem;
  }
}
.modelos_item_content_buttons {
  margin-top: 3rem;
  display: flex;
  gap: 1.5rem;
}
@media screen and (max-width: 768px) {
  .modelos_item_content_buttons {
    flex-direction: column-reverse;
    text-align: center;
  }
}
.modelos_item_content_buttons_link {
  color: white;
  border: solid 2px var(--red);
  background-color: var(--red);
  border-radius: 2rem;
  padding: 1rem 4rem;
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
  transition: transform 200ms ease;
}
.modelos_item_content_buttons_link.reverse {
  background-color: transparent;
  color: var(--red);
}
.modelos_item_content_buttons_link:hover {
  transform: scale(1.05);
}

.holder_modelos {
  position: relative;
  padding-bottom: 30rem;
}
.holder_modelos_div::after, .holder_modelos_div::before, .holder_modelos::after, .holder_modelos::before {
  content: "";
  background: url("../images/floresta-left.svg") no-repeat center/contain;
  width: 14vw;
  height: auto;
  aspect-ratio: 295/1055;
  position: absolute;
  right: 0;
  top: -37vw;
  z-index: -1;
}
@media screen and (max-width: 860px) {
  .holder_modelos_div::after, .holder_modelos_div::before, .holder_modelos::after, .holder_modelos::before {
    display: none;
  }
}
.holder_modelos::after {
  left: 0;
  top: -46vw;
}
.holder_modelos_div::after {
  top: 80rem;
}
.holder_modelos_div::before {
  left: 0;
  top: 150rem;
}
@media screen and (max-width: 768px) {
  .holder_modelos {
    padding-bottom: 0;
  }
}
.holder_modelos .container {
  position: relative;
  z-index: 2;
}
.holder_modelos_back::before {
  content: "";
  background: url(../images/hojas_fondos.svg) no-repeat left bottom;
  width: 200%;
  height: 100%;
  position: absolute;
  top: 33%;
  left: -145%;
  z-index: 2;
  pointer-events: none;
  transform: rotate(180deg);
}
.holder_modelos_back {
  overflow: hidden;
  background-color: var(--red);
  width: 47.5%;
  height: calc(100% - 5rem);
  position: absolute;
  left: 0;
  top: 5rem;
  z-index: 1;
  border-radius: 0 3rem 3rem 0;
}
@media screen and (max-width: 768px) {
  .holder_modelos_back {
    display: none;
  }
}

.diferenciales {
  padding: 5rem 0 10rem;
}
.diferenciales_title {
  font-size: 7rem;
  color: white;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .diferenciales_title {
    font-size: 5rem;
    color: var(--red);
  }
}
.diferenciales_title_holder {
  margin-top: -20rem;
  position: relative;
  z-index: 2;
  display: table;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .diferenciales_title_holder {
    margin-top: 0;
  }
}
.diferenciales_title_holder svg {
  width: 43rem;
}
@media screen and (max-width: 768px) {
  .diferenciales_title_holder svg {
    max-width: 100%;
  }
}
.diferenciales_title_holder svg path {
  fill: white;
}
@media screen and (max-width: 768px) {
  .diferenciales_title_holder svg path {
    fill: var(--red);
  }
}
.diferenciales_title_holder svg rect {
  stroke: white;
  fill: transparent;
}
@media screen and (max-width: 768px) {
  .diferenciales_title_holder svg rect {
    stroke: var(--red);
  }
}
.diferenciales_grid {
  max-width: 82rem;
  margin: 5rem auto 0;
}
@media screen and (max-width: 480px) {
  .diferenciales_grid {
    grid-template-columns: 1fr;
  }
}
.diferenciales_item {
  max-width: 30rem;
}
@media screen and (max-width: 768px) {
  .diferenciales_item {
    margin: 0 auto;
  }
}
.diferenciales_item figure img {
  height: 15rem;
  display: block;
  width: auto;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .diferenciales_item figure img {
    height: 10rem;
  }
}
.diferenciales_item_title {
  color: var(--dark-red);
  font-size: 1.9rem;
  font-weight: 900;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .diferenciales_item_title {
    font-size: 1.7rem;
  }
}
.diferenciales_subgrid {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.diferenciales_card {
  border-radius: 2rem;
  overflow: hidden;
  background-color: white;
  transition: box-shadow 300ms ease;
}
.diferenciales_card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.diferenciales_card_header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark-red);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: left;
  gap: 1rem;
}
.diferenciales_card_header .diferenciales_card_arrow {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  border-right: 1.5px solid var(--dark-red);
  border-bottom: 1.5px solid var(--dark-red);
  transform: rotate(45deg);
  transition: transform 300ms ease, border-color 300ms ease;
  margin-top: -0.3rem;
}
.diferenciales_card_body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms ease, padding 400ms ease;
  padding: 0 2rem;
}
.diferenciales_card_body p {
  font-size: 1.3rem;
  color: #555;
  line-height: 1.5;
}
.diferenciales_card.open .diferenciales_card_header {
  background-color: var(--dark-red);
  color: white;
  border-radius: 2rem 2rem 0 0;
}
.diferenciales_card.open .diferenciales_card_header .diferenciales_card_arrow {
  transform: rotate(-135deg);
  margin-top: 0.3rem;
  border-color: white;
}
.diferenciales_card.open .diferenciales_card_body {
  max-height: 20rem;
  padding: 1rem 2rem 1.5rem;
}

.galeria {
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .galeria {
    margin-bottom: -40vw;
  }
}
.galeria_slider .slick-arrow {
  background: url("../images/flecha_galerias.svg") no-repeat center/contain;
  width: 3.8rem;
  height: 6.5rem;
  z-index: 2;
  left: 2rem;
}
@media screen and (max-width: 768px) {
  .galeria_slider .slick-arrow {
    width: 1.8rem;
    height: 2.5rem;
  }
}
.galeria_slider .slick-next {
  left: unset;
  right: 2rem;
}
.galeria_slider .slick-dots {
  bottom: 2rem;
  z-index: 2;
}
.galeria_slider .slick-dots li {
  width: auto;
  height: auto;
}
.galeria_slider .slick-dots li button {
  width: 6rem;
  height: 0.4rem;
  padding: 0;
  border-radius: 1rem;
  display: block;
  background-color: white;
}
.galeria_slider .slick-dots li button::before {
  display: none;
}
.galeria_slider_item {
  display: none;
}
.galeria_slider_item:first-child {
  display: block;
}
.galeria_slider_item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 3rem;
}

.obras {
  position: relative;
  padding: 20rem 0;
  z-index: 2;
  margin-top: -6vw;
}
@media screen and (max-width: 768px) {
  .obras {
    padding: 45vw 0 5rem;
  }
}
.obras::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url("../images/hojas_fondos.svg") no-repeat 327% 50%/79%;
  background-color: var(--red);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transform: SkewY(-4deg);
}
.obras_row {
  -moz-column-gap: 12rem;
       column-gap: 12rem;
  row-gap: 4rem;
}
.obras_video {
  max-width: 61.5rem;
  width: 100%;
}
.obras_video img {
  height: auto;
  border-radius: 3rem;
}
.obras_video iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border-radius: 3rem;
}
.obras_content {
  color: white;
}
.obras_content_title {
  font-size: 7rem;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.05em;
  font-weight: 300;
  margin-bottom: 0.2em;
}
@media screen and (max-width: 768px) {
  .obras_content_title {
    font-size: 4.6rem;
  }
}
.obras_content_title span {
  -webkit-text-stroke: 2px white;
  color: transparent;
}
.obras_content_list li {
  font-size: 2.4rem;
  font-style: italic;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .obras_content_list li {
    font-size: 2rem;
  }
}
.obras_content_list li.act {
  font-size: 3rem;
  font-weight: 600;
  position: relative;
  margin-left: -1rem;
}
@media screen and (max-width: 768px) {
  .obras_content_list li.act {
    font-size: 2.4rem;
  }
}
.obras_content_list li.act::before {
  content: url("../images/icon-obra.svg");
  display: inline;
  margin-right: 1rem;
}

.entorno {
  padding: 15rem 0;
  position: relative;
}
.entorno::after, .entorno::before {
  content: "";
  background: url("../images/floresta-left.svg") no-repeat center/contain;
  width: 14vw;
  height: auto;
  aspect-ratio: 295/1055;
  position: absolute;
  right: 0;
  top: -40vh;
  z-index: -1;
}
@media screen and (max-width: 860px) {
  .entorno::after, .entorno::before {
    display: none;
  }
}
.entorno::before {
  left: 0;
  top: 11vh;
}
@media screen and (max-width: 768px) {
  .entorno {
    padding: 7rem 0;
  }
  .entorno_row {
    gap: 3rem;
  }
}
.entorno_title {
  font-size: 7rem;
  color: var(--red);
  font-weight: 300;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .entorno_title {
    font-size: 4.6rem;
  }
}
.entorno_linea {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}
.entorno_text {
  max-width: 78rem;
  margin: 4rem auto;
  text-align: center;
  color: #8d8d8e;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .entorno_text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .entorno_address {
    position: relative;
    left: 2rem;
  }
}
.entorno_address p {
  position: relative;
  color: var(--red);
  font-size: 4rem;
  margin: 0;
  text-transform: uppercase;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 100;
}
@media screen and (max-width: 768px) {
  .entorno_address p {
    font-size: 2rem;
  }
}
.entorno_address p strong {
  font-size: 6rem;
}
@media screen and (max-width: 768px) {
  .entorno_address p strong {
    font-size: 3.5rem;
  }
}
.entorno_address_ico {
  position: absolute;
  left: -5rem;
  top: 1.4rem;
}
.entorno_button {
  display: table;
  background-color: var(--dark-red);
  color: white;
  padding: 1rem 3rem;
  border-radius: 3rem;
  text-transform: uppercase;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 300;
  transition: transform 200ms ease;
  margin-top: 2rem;
}
.entorno_button:hover {
  transform: scale(1.05);
}
.entorno_mapa {
  max-width: 64rem;
  width: 100%;
}/*# sourceMappingURL=style.css.map */