@import url("https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://use.typekit.net/nig4tfx.css");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

select, input, textarea, button, fieldset {
  border: none;
  padding: 0;
  margin: 0;
  background: transparent;
}

figure {
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
  line-height: 0;
}
figure img {
  width: 100%;
}

ul, li, dt {
  list-style: none;
}

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

html {
  font-family: "nitti-grotesk-condensedlight", sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

:focus {
  outline: 0;
}

body {
  background: #ffffff;
  color: #616161;
}
body.menu_fixed {
  position: fixed;
}

body, input, textarea, button {
  font-family: "nitti-grotesk-condensedlight", sans-serif;
  font-weight: 400;
  font-size: 1rem;
}

fieldset {
  margin-inline-start: 0;
  margin-inline-end: 0;
  padding-block-start: 0;
  padding-inline-start: 0;
  padding-inline-end: 0;
  padding-block-end: 0;
}

/* Custom ScrollBar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #203160;
}

::-webkit-scrollbar-thumb {
  background: #3d5186;
}

::-webkit-scrollbar-thumb:hover {
  background: #3d5186;
}

.header {
  width: 100%;
  padding: 1.5rem 0;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .container {
  position: relative;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  width: 30%;
}
.header__logo img {
  width: 100%;
}
.header .menu_toggle {
  display: none;
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 9;
}
.header .menu_toggle .bar {
  padding: 0;
  width: 30px;
  height: 4px;
  background-color: #5c71ac;
  display: block;
  border-radius: 4px;
  transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out, transform 0.4s ease-in-out 0.4s;
  position: absolute;
}
.header .menu_toggle .bar.bar1 {
  top: 0;
}
.header .menu_toggle .bar.bar2, .header .menu_toggle .bar.bar3 {
  top: 12px;
}
.header .menu_toggle .bar.bar3 {
  right: 0;
}
.header .menu_toggle .bar.bar4 {
  bottom: 0;
}
.header .menu_toggle .bar4 {
  top: 12px;
}
.header .menu_toggle .bar5 {
  bottom: 2px;
}
.header .menu_toggle .bar2 {
  width: 1px;
  transform: rotate(90deg);
  left: 12px;
}
.header .menu_toggle .bar3 {
  width: 1px;
  left: 12px;
}
.header__nav {
  width: auto;
}
.header__nav_menu {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.header__nav_menu .menu_item {
  position: relative;
  transition: all linear 0.35s;
  color: #FFF;
  text-shadow: 0px 4px 19.6px rgba(0, 0, 0, 0.67);
  font-family: "nitti-grotesk-condensedlight", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 2.38px;
  text-transform: uppercase;
}
.header__nav_menu .menu_item:after {
  width: 50%;
  height: 2px;
  content: "";
  display: none;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: -8px;
  border-radius: 50px;
  background-color: #203160;
  transition: all linear 0.35s;
}
.header__nav_menu .menu_item:hover, .header__nav_menu .menu_item.active {
  transition: all linear 0.35s;
}
.header__nav_menu .menu_item:hover::after, .header__nav_menu .menu_item.active::after {
  display: block;
}
.header__nav_menu_submenu {
  display: none;
}
@media screen and (max-width: 767px) {
  .header__wrapper {
    width: 95%;
    position: relative;
    z-index: 99;
  }
  .header__logo {
    width: 40%;
    position: relative;
    z-index: 99;
  }
  .header .menu_toggle {
    display: block;
    position: relative;
    z-index: 99;
  }
  .header .menu_toggle.active .bar1 {
    top: 13.5px;
    background-color: transparent;
  }
  .header .menu_toggle.active .bar2 {
    left: 0px;
    width: 30px;
    transform: rotate(45deg);
  }
  .header .menu_toggle.active .bar3 {
    left: 0;
    width: 30px;
    transform: rotate(-45deg);
  }
  .header .menu_toggle.active .bar4 {
    background-color: transparent;
  }
  .header .menu_toggle.active .bar5 {
    bottom: 13.5px;
    background-color: transparent;
  }
  .header__nav {
    width: 105vw;
    height: 100vh;
    background: rgb(152, 187, 235);
    background: linear-gradient(117deg, rgb(152, 187, 235) 0%, rgb(24, 55, 97) 100%);
    position: fixed;
    z-index: 9;
    top: -2rem;
    left: 150%;
    transition: left ease-in-out 0.5s;
  }
  .header__nav_menu {
    padding: 8rem 15%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .header__nav_menu .menu_item a {
    color: #ffffff;
  }
  .header__nav.active {
    left: -6%;
  }
}

.footer {
  width: 100%;
  padding: 3rem 0;
  background-color: #203160;
}
.footer .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__contact {
  width: 40%;
}
.footer__contact h2 {
  margin-bottom: 1.5rem;
  color: #FFF;
  font-family: "nitti-grotesk-condensedlight", sans-serif;
  font-size: 81px;
  font-style: normal;
  font-weight: 300;
  line-height: 120%; /* 97.2px */
}
.footer__contact_form form {
  width: 100%;
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.footer__contact_form form input, .footer__contact_form form select, .footer__contact_form form textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid #ffffff;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  color: #ffffff;
}
.footer__contact_form form input#ct_hop, .footer__contact_form form select#ct_hop, .footer__contact_form form textarea#ct_hop {
  display: none;
}
.footer__contact_form form input::-moz-placeholder, .footer__contact_form form select::-moz-placeholder, .footer__contact_form form textarea::-moz-placeholder {
  color: #ffffff;
}
.footer__contact_form form input::placeholder, .footer__contact_form form select::placeholder, .footer__contact_form form textarea::placeholder {
  color: #ffffff;
}
.footer__contact_form .btn {
  margin: 1.5rem 0;
}
.footer__contact_form .btn:disabled, .footer__contact_form .btn[disabled] {
  cursor: not-allowed;
  background-color: #E36E78;
  color: #ffffff;
}
.footer__contact_infos {
  width: 100%;
  color: #ffffff;
}
.footer__contact_infos .social_links {
  width: 100%;
  margin: 1.125rem 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.125rem;
}
.footer__contact_infos .social_links p {
  font-family: "nitti-grotesk-condensedlight", sans-serif;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
}
.footer__contact_infos .copy {
  width: 100%;
  margin-top: 5rem;
}
.footer__contact_infos .copy p {
  font-family: "nitti-grotesk-condensedlight", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
}
.footer__inst {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.footer__inst_logo {
  width: 75%;
}
.footer__inst_logo img {
  width: 105%;
}
.footer__inst_list {
  color: #ffffff;
  margin-top: -32px;
}
.footer__inst_list li h4 {
  font-family: "nitti-grotesk-condensedlight", sans-serif;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
}
.footer__inst_list li p {
  font-family: "nitti-grotesk-condensedlight", sans-serif;
  letter-spacing: 0.15em;
  font-size: 1.25rem;
  line-height: 150%;
  text-transform: uppercase;
}
.footer .logo_lab {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .footer .container {
    flex-wrap: wrap;
  }
  .footer__contact {
    width: 100%;
  }
  .footer__inst {
    width: 100%;
    padding-bottom: 5rem;
  }
}

.btn {
  padding: 0.875rem 1.5rem;
  text-align: center;
  font-family: "gyst-variable", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 550;
  line-height: 120%; /* 19.2px */
}
.btn a {
  width: 100%;
  height: 100%;
}
.btn.solid.primary {
  background-color: #203160;
  color: #ffffff;
}
.btn.solid.white {
  background-color: #ffffff;
  color: #203160;
}

.container {
  width: 80vw;
  margin: 0 auto;
}
@media screen and (min-width: 1536px) {
  .container {
    width: 75vw;
  }
}
@media screen and (max-width: 767px) {
  .container {
    width: 90vw;
  }
}

.header-fix {
  padding-top: 142px;
}

.text_bg {
  padding: 0 14px;
  position: relative;
  z-index: 2;
  background: url("../img/home/bg-text.png") no-repeat;
  background-size: 110% 90%;
  background-position: center 90%;
}

.hero {
  width: 100%;
  height: 100vh;
}
.hero__image {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
}
.hero__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__content {
  width: 100%;
  display: none;
  position: relative;
  z-index: 2;
}
.hero__content h1 {
  width: 100%;
  margin-bottom: 5rem;
  color: #FFF;
  text-align: center;
  text-shadow: 0px 4px 19.6px rgba(0, 0, 0, 0.67);
  font-family: "nitti-grotesk-condensedlight", sans-serif;
  font-size: 7.5em;
  font-style: normal;
  font-weight: 300;
  line-height: 110%;
}
.hero__content .btn {
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .hero__content {
    width: 100%;
  }
  .hero__content h1 {
    font-size: 3rem;
  }
}

.about {
  width: 100%;
  margin-top: -156px;
  display: flex;
  align-items: center;
}
.about__left {
  width: 40%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 7.5vw;
  position: relative;
  z-index: 9;
}
.about__left_bg {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
}
.about__left_bg img {
  width: 100%;
  height: 100%;
}
.about__left p {
  width: 100%;
  position: relative;
  z-index: 9;
  color: #ffffff;
  text-shadow: 0px 4px 19.6px rgba(0, 0, 0, 0.67);
  font-family: "gyst-variable", sans-serif;
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 550;
  line-height: 120%; /* 49.2px */
}
.about__right {
  width: 60%;
  height: 100%;
  padding: 1.5rem 10vw 0 5vw;
  display: flex;
  justify-content: center;
  gap: 0.875rem;
}
.about__right_content img {
  width: 84px;
  height: 84px;
}
.about__right_content p {
  margin-top: 0.5rem;
  color: #000;
  font-family: "nitti-grotesk-condensedlight", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .about {
    flex-wrap: wrap;
  }
  .about__left {
    width: 100%;
  }
  .about__right {
    width: 100%;
  }
}

.local {
  width: 100%;
  padding: 2rem 0;
  padding-bottom: 384px;
  background-color: #203160;
}
.local__silveira {
  width: 100%;
  padding: 3.5rem 0;
  position: relative;
}
.local__silveira_logo {
  width: 65%;
  position: absolute;
  left: -35%;
  bottom: 45%;
  transform: rotate(270deg);
}
.local__silveira_logo img {
  width: 100%;
}
.local__silveira_image {
  width: 100%;
}
.local__silveira_image img {
  width: 100%;
}
.local__silveira_info {
  width: 65vw;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.local__silveira_info h3 {
  width: 55%;
  margin-top: -164px;
  color: #ffffff;
  font-family: "nitti-grotesk-condensedlight", sans-serif;
  font-size: 81px;
  font-style: normal;
  font-weight: 300;
  line-height: 120%; /* 97.2px */
}
.local__silveira_info h3 span {
  color: #203160;
  font-family: "nitti-grotesk-condensedlight", sans-serif;
  font-size: 81px;
  font-style: normal;
  font-weight: 300;
  line-height: 120%;
}
.local__silveira_info p {
  width: 40%;
  padding: 5rem 0;
  color: #ffffff;
  font-family: "nitti-grotesk-condensedlight", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
}
.local .btn {
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .local {
    padding-bottom: 248px;
  }
  .local__silveira_info {
    width: 80%;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .local__silveira_info h3 {
    width: 100%;
    margin-top: -104px;
    font-size: 3rem;
  }
  .local__silveira_info h3 span {
    font-size: 3rem;
  }
  .local__silveira_info p {
    width: 100%;
    padding: 1rem 0;
  }
}

.local_desc {
  width: 100%;
  background-color: #203160;
}
.local_desc .container {
  margin-top: -284px;
}
.local_desc__info {
  width: 35%;
  position: relative;
  z-index: 2;
  padding-left: 5vw;
}
.local_desc__info h2 {
  color: #ffffff;
  font-family: "nitti-grotesk-condensedlight", sans-serif;
  font-size: 81px;
  font-style: normal;
  font-weight: 300;
  line-height: 120%; /* 97.2px */
}
.local_desc__info h2 span {
  color: #203160;
}
.local_desc__info p {
  color: #203160;
  font-family: "nitti-grotesk-condensedlight", sans-serif;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 36px */
}
.local_desc__image {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: -164px;
}
.local_desc__image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .local_desc {
    padding-bottom: 2.5rem;
  }
  .local_desc .container {
    margin-top: -184px;
  }
  .local_desc__info {
    width: 85%;
  }
  .local_desc__info h2 {
    font-size: 3rem;
  }
  .local_desc__info p {
    margin-top: 0.875rem;
    font-size: 1.125rem;
    line-height: 1.25;
    font-weight: 500;
  }
  .local_desc__image {
    margin-top: -124px;
  }
}

.areas {
  width: 100%;
  background-color: #203160;
  padding: 3.5rem 0;
}
.areas h2 {
  width: 50%;
  margin: 0 auto;
  color: #ffffff;
  text-align: center;
  font-family: "nitti-grotesk-condensedlight", sans-serif;
  font-size: 81px;
  font-style: normal;
  font-weight: 300;
  line-height: 120%;
}
.areas__map {
  width: 100%;
}
.areas_listing {
  width: 45vw;
  position: relative;
  margin: 0 auto;
  margin-top: -48px;
}
.areas_listing_list {
  width: 100%;
  color: #203160;
  padding: 3.5rem;
  background-color: #ffffff;
  box-shadow: rgba(1, 39, 122, 0.226) 0px 4px 12px;
}
.areas_listing_list .list_item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.areas_listing_list .list_item h4 {
  font-family: "nitti-grotesk-condensedlight", sans-serif;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 36px */
}
.areas_listing_list .list_item p {
  font-family: "nitti-grotesk-condensedlight", sans-serif;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 36px */
}
@media screen and (max-width: 767px) {
  .areas h2 {
    width: 100%;
    font-size: 3rem;
    margin-bottom: 1.5rem;
  }
  .areas_listing {
    width: 85%;
    margin-top: -24px;
  }
  .areas_listing_list {
    padding: 2rem;
  }
  .areas_listing_list .list_item h4, .areas_listing_list .list_item p {
    font-size: 1.125rem;
  }
}

.galeria {
  width: 100%;
  padding: 2.5rem 0;
}
.galeria .container {
  width: 90vw;
}
.galeria h2 {
  padding-left: 7.5vw;
  color: #203160;
  font-family: "nitti-grotesk-condensedlight", sans-serif;
  font-size: 81px;
  font-style: normal;
  font-weight: 300;
  line-height: 120%; /* 97.2px */
}
.galeria__slider {
  width: 100%;
  position: relative;
}
.galeria__slider_slide {
  width: 100%;
  position: relative;
}
.galeria__slider_slide img {
  width: 100%;
}
.galeria__slider_slide::before {
  width: 100%;
  height: 45%;
  content: "";
  background: linear-gradient(178deg, rgba(32, 49, 96, 0) 6.57%, #203160 86.46%);
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}
.galeria__slider_slide .caption_slide {
  position: absolute;
  bottom: 48px;
  left: 5%;
  color: #ffffff;
  font-family: "nitti-grotesk-condensedlight", sans-serif;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 36px */
}
.galeria__slider .btn_slider {
  width: 42px;
  height: 42px;
  cursor: pointer;
  display: flex;
  align-items: center;
  position: absolute;
  top: 50%;
  z-index: 1;
  background-color: #203160;
}
.galeria__slider .btn_slider i {
  font-size: 28px;
  line-height: 0;
  color: #ffffff;
}
.galeria__slider .btn_slider.prev {
  left: -22px;
  justify-content: end;
}
.galeria__slider .btn_slider.next {
  right: -22px;
}

.terreno {
  width: 100%;
}
.terreno_bg {
  width: 100%;
}
.terreno_bg img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.terreno .container {
  width: 90vw;
}
.terreno__infos {
  width: 100%;
  margin-top: -112px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
}
.terreno__infos_left {
  position: relative;
  z-index: 8;
  width: 45%;
  padding: 3rem;
  padding-bottom: 5rem;
  background-color: #203160;
}
.terreno__infos_left h3 {
  color: #ffffff;
  font-family: "nitti-grotesk-condensedlight", sans-serif;
  font-size: 81px;
  font-style: normal;
  font-weight: 300;
  line-height: 120%; /* 97.2px */
}
.terreno__infos_right {
  width: 40%;
  padding: 2rem;
  padding-bottom: 7.5rem;
  background-color: #C6E1E4;
  position: relative;
  z-index: 9;
  margin-left: -64px;
}
.terreno__infos_right h3 {
  color: #203160;
  font-family: "nitti-grotesk-condensedlight", sans-serif;
  font-size: 61px;
  font-style: normal;
  font-weight: 300;
  line-height: 120%; /* 73.2px */
}
.terreno__infos_image {
  width: 150%;
  position: relative;
  z-index: 8;
  margin-top: -48px;
}
@media screen and (max-width: 767px) {
  .terreno {
    width: 100%;
    margin-top: 2rem;
  }
  .terreno__infos {
    width: 100%;
  }
  .terreno__infos_left {
    width: 100%;
    padding: 1.5rem;
    padding-bottom: 2.5rem;
  }
  .terreno__infos_left h3 {
    font-size: 2rem;
  }
  .terreno__infos_right {
    width: 100%;
    padding-bottom: 3.5rem;
    margin-left: -24px;
  }
  .terreno__infos_right h3 {
    font-size: 2rem;
  }
  .terreno__infos_image {
    margin-top: -24px;
  }
}

.empreendimento_desc {
  width: 100%;
  margin: 1.5rem 0;
  padding: 3rem 0;
}
.empreendimento_desc h2 {
  width: 90%;
  display: block;
  margin: 0 auto;
  color: #203160;
  text-align: center;
  font-family: "nitti-grotesk-condensedlight", sans-serif;
  font-size: 81px;
  font-style: normal;
  font-weight: 300;
  line-height: 120%; /* 97.2px */
}
.empreendimento_desc_info {
  width: 55%;
  margin: 0 auto;
  margin-top: 1.5rem;
}
.empreendimento_desc_info p {
  margin: 1rem 0;
  color: #2A4180;
  text-align: center;
  font-family: "nitti-grotesk-condensedlight", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
}
@media screen and (max-width: 767px) {
  .empreendimento_desc h2 {
    font-size: 3rem;
  }
  .empreendimento_desc_info {
    width: 100%;
  }
}

.plantas {
  width: 100%;
  margin: 1rem 0;
  padding: 3rem 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.plantas__content h2 {
  width: 35%;
  color: #203160;
  font-family: "nitti-grotesk-condensedlight", sans-serif;
  font-size: 81px;
  font-style: normal;
  font-weight: 300;
  line-height: 120%; /* 97.2px */
}
.plantas__content_images {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.plantas__content_images_planta {
  width: 48%;
  transition: all linear 0.35s;
}
.plantas__content_images_planta:hover {
  scale: 1.125;
}
.plantas__content_infos {
  width: 65vw;
  margin: 1.5rem auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3.5rem;
}
.plantas__content_infos_info h6 {
  color: #203160;
  font-family: "nitti-grotesk-condensedlight", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
}
.plantas__content_infos_info h4 {
  color: #203160;
  font-family: "nitti-grotesk-condensedlight", sans-serif;
  font-size: 81px;
  font-style: normal;
  font-weight: 300;
  line-height: 120%; /* 97.2px */
}
.plantas__footer {
  width: 100%;
  padding: 2.5rem 0;
  background-color: rgba(198, 225, 228, 0.2);
}
.plantas__footer .container {
  width: 45vw;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 5rem;
}
.plantas__footer_info {
  display: flex;
  gap: 1rem;
  flex-direction: column;
}
.plantas__footer_info img {
  width: 64px;
  height: 64px;
}
.plantas__footer_info h6 {
  color: #2A4180;
  text-align: center;
  font-family: "nitti-grotesk-condensedlight", sans-serif;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
}
@media screen and (max-width: 767px) {
  .plantas__content h2 {
    font-size: 3rem;
    width: 65%;
  }
  .plantas__content_images {
    flex-wrap: wrap;
    margin-top: 2.5rem;
  }
  .plantas__content_images_planta {
    width: 100%;
  }
  .plantas__content_infos {
    width: 85%;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .plantas__content_infos h4 {
    font-size: 3.5rem;
  }
  .plantas__footer .container {
    flex-wrap: wrap;
  }
}/*# sourceMappingURL=styles.css.map */