@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Fahkwang:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lexend+Giga:wght@100..900&display=swap");
@import url("../assets/fonts/scotland/configFont.css");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  color: #333333;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #f8f8f8;
}

.default-width-center {
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 1rem;
}
.default-width-center.max-1450 {
  max-width: 90.625rem;
}

.main-body {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.float-background-image {
  position: absolute;
  z-index: -1;
  top: 0;
}

.title-base {
  font-family: "Lexend Giga", sans-serif;
  font-weight: 300;
}
.title-base strong {
  font-weight: 400;
}
.title-base * {
  font-family: "Lexend Giga", sans-serif;
  font-weight: 300;
}
.title-base * strong {
  font-weight: 400;
}

.cut-section {
  width: 99vw;
  overflow: hidden;
  margin: 0 auto;
}

@media (max-width: 46.875rem) {
  .float-background-image {
    display: none;
  }
}
#header {
  padding: 1.5rem 1rem;
}
#header .navegation-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
#header .navegation-area .container-logo {
  width: 100%;
  max-width: 10.625rem;
}
#header .navegation-area .container-logo .container-logo-image {
  width: 100%;
}
#header .navegation-area .navegation-menu .navegation-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
#header .navegation-area .navegation-menu .navegation-list a {
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  transition: all 0.3s;
  font-size: 0.875rem;
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
  font-weight: bold;
}
#header .navegation-area .navegation-menu .navegation-list a img {
  width: 1.5rem;
  height: 1.5rem;
}
#header .navegation-area .navegation-menu .navegation-list a svg {
  transition: all 0.3s;
}
#header .navegation-area .navegation-menu .navegation-list a svg path {
  transition: all 0.3s;
}
#header .navegation-area .navegation-menu .navegation-list a:hover {
  background-color: #e44c2b;
  color: #f8f8f8;
}
#header .navegation-area .navegation-menu .navegation-list a:hover svg {
  transform: rotate(180deg);
}
#header .navegation-area .navegation-menu .navegation-list a:hover svg path {
  stroke: white;
}
#header .navegation-area .navegation-menu .navegation-list a.active {
  background-color: #8F6244;
  color: #f8f8f8;
}
#header .navegation-area .navegation-menu .navegation-list a.active:hover {
  opacity: 0.7;
}
#header .navegation-area .navegation-menu .navegation-list .dropdownComponent:hover .dropdown-navegation {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
#header .navegation-area .navegation-menu .navegation-list .dropdown-navegation {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 100;
  background: #f8f8f8;
  padding: 20px;
  top: 100px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}
#header .navegation-area .navegation-menu .navegation-list .dropdown-navegation .group-menu-itens {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
#header .navegation-area .burguer-area {
  display: none;
}
#header .social-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 0.75rem;
}
#header .social-area .social-item {
  width: 3rem;
  height: 3rem;
  background-color: #EB6726;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
#header .social-area .social-item img {
  width: 1.5rem;
  height: 1.5rem;
}
#header.decor .navegation-area .navegation-menu .navegation-list a:hover {
  background-color: #49C9C1;
}
#header.decor .navegation-area .navegation-menu .navegation-list a.active {
  background-color: #49C9C1;
  color: #f8f8f8;
}

@media (max-width: 46.875rem) {
  #header .navegation-area .navegation-menu {
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    top: 8rem;
    overflow: hidden;
    transition: 0.3s all;
    padding: 0;
    background-color: #f8f8f8;
    padding: 1rem 0;
    z-index: 10;
    width: 0;
  }
  #header .navegation-area .burguer-area {
    display: flex;
    flex-direction: column;
    width: 32px;
    position: relative;
    gap: 0.25rem;
    cursor: pointer;
  }
  #header .navegation-area .burguer-area .burguer-button {
    width: 100%;
    height: 0.25rem;
    background-color: #333333;
    border: none;
    border-radius: 0;
    transition: all 0.3s;
  }
  #header .navegation-area.active .navegation-menu {
    width: 100%;
    background-color: #f8f8f8;
    padding: 1rem;
  }
  #header .navegation-area.active .navegation-menu .navegation-list {
    width: 100%;
    flex-direction: column;
    text-align: center;
  }
  #header .navegation-area.active .burguer-button:first-child {
    position: absolute;
    transform: rotate(45deg);
  }
  #header .navegation-area.active .burguer-button:nth-child(2) {
    width: 0;
  }
  #header .navegation-area.active .burguer-button:last-child {
    position: absolute;
    transform: rotate(-45deg);
  }
}
#footer {
  margin-top: 5rem;
}
#footer .top-footer {
  background-color: #080705;
  padding: 2.75rem;
}
#footer .top-footer .grid-footer-area {
  position: relative;
  display: flex;
  gap: 0.5rem;
}
#footer .top-footer .grid-footer-area .container-logo {
  width: 50%;
}
#footer .top-footer .grid-footer-area .container-logo img {
  width: 100%;
  max-width: 200px;
}
#footer .top-footer .grid-footer-area .navegation-area {
  display: flex;
  align-items: center;
}
#footer .top-footer .grid-footer-area .navegation-area .navegation-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
#footer .top-footer .grid-footer-area .navegation-area .navegation-list li .dropdown-navegation {
  margin-top: 0.75rem;
}
#footer .top-footer .grid-footer-area .navegation-area .navegation-list li .dropdown-navegation .group-menu-itens {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0;
}
#footer .top-footer .grid-footer-area .navegation-area .navegation-list li .dropdown-navegation .group-menu-itens .menu-itens {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}
#footer .top-footer .grid-footer-area .navegation-area .navegation-list li .dropdown-navegation .group-menu-itens .menu-itens::before {
  content: ">";
  color: #EF4120;
}
#footer .top-footer .grid-footer-area .navegation-area .navegation-list li a {
  text-decoration: none;
  color: white;
  font-size: 1rem;
  font-weight: 400;
  transition: 0.3 all;
}
#footer .top-footer .grid-footer-area .navegation-area .navegation-list li a:hover {
  opacity: 0.7;
}
#footer .top-footer .grid-footer-area .footer-info {
  display: flex;
  width: 50%;
  gap: 2.5rem;
}
#footer .top-footer .grid-footer-area .footer-info .navegation-area,
#footer .top-footer .grid-footer-area .footer-info .contact-area {
  flex: 1;
}
#footer .top-footer .grid-footer-area .footer-info .navegation-area *,
#footer .top-footer .grid-footer-area .footer-info .contact-area * {
  color: white;
}
#footer .top-footer .grid-footer-area .footer-info .contact-area {
  display: flex;
  flex-direction: column;
  gap: 4.25rem;
}
#footer .top-footer .grid-footer-area .footer-info .contact-area .container-logo {
  max-width: 8.75rem;
}
#footer .top-footer .grid-footer-area .footer-info .contact-area .addres_group {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  list-style: none;
}
#footer .top-footer .grid-footer-area .footer-info .contact-area .addres_group img {
  width: 1.5rem;
  height: 1.5rem;
}
#footer .top-footer .grid-footer-area .footer-info .contact-area .addres_group li {
  display: flex;
  align-items: start;
  gap: 0.5rem;
}
#footer .top-footer .grid-footer-area .footer-info .contact-area .social-group {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
#footer .top-footer .grid-footer-area .footer-info .contact-area .social-group h3 {
  font-size: 0.875rem;
  color: #EF4120;
}
#footer .top-footer .grid-footer-area .footer-info .contact-area .social-group ul {
  display: flex;
  list-style: none;
  gap: 0.75rem;
}
#footer .top-footer .copyright {
  display: flex;
  justify-content: end;
  margin-top: 1rem;
}
#footer .top-footer .copyright p {
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
}
#footer .top-footer .copyright p a {
  color: #EF4120;
}
#footer .bottom-footer {
  background-color: #EF4120;
  text-align: center;
  height: 8px;
}
#footer .bottom-footer p {
  color: #f8f8f8;
}
#footer .bottom-footer p a {
  color: #e5ccbc;
}

@media (max-width: 46.875rem) {
  #footer .top-footer {
    padding: 2rem 1rem;
  }
  #footer .top-footer .grid-footer-area {
    padding: 0;
    flex-direction: column;
  }
  #footer .top-footer .grid-footer-area .footer-info {
    width: 100%;
    flex-direction: column;
  }
  #footer .top-footer .grid-footer-area .footer-info .contact-area .social-group {
    text-align: start;
  }
  #footer .top-footer .grid-footer-area .footer-info .navegation-area {
    text-align: start;
  }
  #footer .top-footer .copyright {
    margin-top: 40px;
    padding: 0;
  }
  #footer .top-footer .copyright br {
    display: none;
  }
}
.button {
  display: block;
  text-decoration: none;
  border: none;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5rem 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 1.5rem;
  transition: all 0.3s;
  text-decoration: none;
  cursor: pointer;
}
.button.primary {
  background-color: #8F6244;
  color: #f8f8f8;
}
.button.secondary {
  background: none;
  border: 2px solid;
}
.button.tertiary {
  letter-spacing: 40%;
  background: none;
  padding: 0;
}
.button *:hover {
  opacity: 0.7;
}

.button-group {
  display: flex;
  gap: 0.75rem;
}

.button.styled {
  position: relative;
  display: inline-block;
  padding: 6px 40px;
  font-size: 14px;
  text-decoration: none;
  color: #333;
  border-radius: 0 0 8px 0;
  text-align: center;
  background: #e44c2b;
  color: white;
  transition: all 0.3s;
  box-shadow: inset 0 0 0 0 #e44c2b;
  -webkit-transition: ease-out 0.4s;
  -moz-transition: ease-out 0.4s;
}
.button.styled:hover {
  box-shadow: inset -400px 0 0 0 #f19580;
  color: #6b200d;
}
.button.styled::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  width: 0;
  height: 0;
  border-bottom: 15px solid rgba(242, 242, 242, 0);
  border-left: 13px solid #f2f2f2;
}
.button.styled.secundary {
  border: 2px solid #e44c2b;
  background: transparent;
  color: #000;
  background: none;
  font-weight: 700;
}
.button.styled.secundary:hover {
  box-shadow: inset -400px -50px 0 0 #e44c2b;
  color: white;
}
.button.styled.secundary::after {
  content: "";
  position: absolute;
  top: -4px;
  left: 4px;
  width: 1px;
  height: 18px;
  display: block;
  background: #e44c2b;
  transform: rotate(45deg);
}
.button.styled.full {
  width: 100%;
}

#hero-banner .hero-banner-center {
  width: 100%;
  margin: 0 auto;
  position: relative;
  max-width: 156.25rem;
}
#hero-banner .hero-banner-center.limited {
  max-width: 90.625rem;
}
#hero-banner .list-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
}
#hero-banner .list-banner .carrouseu-item {
  position: relative;
}
#hero-banner .list-banner .text-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 30px;
  min-width: 230px;
  width: 100%;
  transform: translate(-60px) scaleX(0);
  opacity: 0;
  transition: all 0.3s;
  transform-origin: left;
  gap: 1rem;
  color: black;
}
#hero-banner .list-banner .text-box .width-text-box {
  max-width: 80%;
}
#hero-banner .list-banner .text-box .button-area {
  margin-top: 24px;
}
#hero-banner .list-banner .text-box * {
  color: inherit;
}
#hero-banner .list-banner .glide__slide--active .text-box {
  transform: translate(0px) scaleX(1);
  opacity: 1;
}
#hero-banner .list-banner .box-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
#hero-banner .list-banner .banner-video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#hero-banner .list-banner .banner-video.mobile {
  display: none;
}
#hero-banner .list-banner .banner-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#hero-banner .list-banner .banner-image.mobile {
  display: none;
}
#hero-banner .float-controls-hero {
  position: absolute;
  bottom: 2.5rem;
  width: 100%;
}
#hero-banner .float-controls-hero .button-nav-area {
  display: flex;
  justify-content: space-between;
}
#hero-banner .float-controls-hero .button-nav-area .glide__bullets {
  width: 100%;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
}
#hero-banner .float-controls-hero .button-nav-area .bullet {
  border: 4px solid transparent;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: white;
  transition: all 0.3s ease-in-out;
}
#hero-banner .float-controls-hero .button-nav-area .bullet:hover:not(.glide__bullet--active) {
  transform: scale(1.1);
  opacity: 0.7;
  cursor: pointer;
}
#hero-banner .float-controls-hero .button-nav-area .bullet.glide__bullet--active {
  background-color: #EF4724;
}
#hero-banner .float-controls-hero .glide__arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: hsla(0, 0%, 100%, 0.4);
  color: black;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  cursor: pointer;
}
#hero-banner .float-controls-hero .glide__arrow:hover {
  background-color: white;
  transform: scale(1.2);
}

@media (max-width: 46.875rem) {
  #hero-banner .list-banner .text-box {
    max-width: 85%;
  }
}
@media (max-width: 31.25rem) {
  #hero-banner .list-banner .banner-image.mobile {
    display: flex;
  }
  #hero-banner .list-banner .banner-image.desktop {
    display: none;
  }
  #hero-banner .list-banner .banner-video.mobile {
    display: flex;
  }
  #hero-banner .list-banner .banner-video.desktop {
    display: none;
  }
  #hero-banner .list-banner .text-box {
    max-width: none;
    padding: 16px;
  }
  #hero-banner .list-banner .text-box h1,
  #hero-banner .list-banner .text-box h2,
  #hero-banner .list-banner .text-box h3 {
    font-size: 1.25rem;
  }
  #hero-banner .list-banner .text-box p {
    font-size: 0.75rem;
  }
}
.differences-cards {
  padding: 2.25rem 0;
  background-position: center;
  background-size: cover;
}
.differences-cards .diference-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.differences-cards .diference-area .cards-area {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}
.differences-cards .diference-area .cards-area .card {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1rem;
  width: 100%;
  min-height: 25rem;
  justify-content: end;
  background: linear-gradient(180deg, rgba(143, 98, 68, 0.04) 45.83%, #8F6244 100%, rgba(143, 98, 68, 0.5) 100%);
  border-radius: 0.75rem 0.75rem 0 0;
  overflow: hidden;
  padding: 1.5rem;
  position: relative;
}
.differences-cards .diference-area .cards-area .card .info-card {
  z-index: 3;
}
.differences-cards .diference-area .cards-area .card .info-card .icon {
  max-width: 60px;
  max-height: 60px;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  height: 100%;
}
.differences-cards .diference-area .cards-area .card .info-card h1 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #f8f8f8;
}
.differences-cards .diference-area .cards-area .card .info-card p {
  color: #f8f8f8;
  font-size: 0.75rem;
  font-weight: 400;
  text-align: start;
}
.differences-cards .diference-area .cards-area .card .background-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 46.875rem) {
  .differences-cards .diference-area .cards-area {
    grid-template-columns: repeat(2, 1fr);
  }
}
.video-area iframe {
  width: 100%;
  height: 26.25rem;
}

.text-section .content-text.default-width-center {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 1.25rem;
}
.text-section .content-text.default-width-center .image-area {
  height: -moz-fit-content;
  height: fit-content;
  flex: 2;
  display: flex;
  align-items: end;
  overflow: hidden;
}
.text-section .content-text.default-width-center .image-area .image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.text-section .content-text.default-width-center .image-area .image.full {
  -o-object-fit: cover;
     object-fit: cover;
}
.text-section .content-text.default-width-center.full {
  align-items: normal;
}
.text-section .content-text.default-width-center.full .image-area {
  height: auto;
  flex: 1;
}
.text-section .content-text.default-width-center.full .text-area {
  flex: 1;
}
.text-section .content-text.default-width-center .text-area {
  flex: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem 1rem;
  gap: 1.5rem;
}
.text-section .content-text.default-width-center .text-area .button-area-text {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.text-section .content-text.default-width-center .text-area .button-area-text.center {
  justify-content: center;
}
.text-section .content-text.default-width-center .text-area .button-area-text.right {
  justify-content: flex-end;
}
.text-section .content-text.default-width-center .text-area .button-area-text.left {
  justify-content: flex-start;
}
.text-section.build .content-text.default-width-center .text-area {
  flex: 2;
}
.text-section.build .content-text.default-width-center .text-area .title-base.text-image {
  font-size: 32px;
  background: white;
  padding: 32px 40px;
  margin-left: -100px;
  width: -moz-fit-content;
  width: fit-content;
}
.text-section.build .content-text.default-width-center .text-area .description {
  font-size: 24px;
}
.text-section.build .content-text.default-width-center .image-area {
  flex: 3;
}
.text-section.build.differential .content-text.default-width-center {
  gap: 1rem;
}
.text-section.build.differential .content-text.default-width-center .text-area {
  flex: 1;
  gap: 2rem;
}
.text-section.build.differential .content-text.default-width-center .image-area {
  flex: 1;
}
.text-section.build.differential .content-text.default-width-center .description {
  font-size: 1.75rem;
}

.text-full-base {
  position: relative;
}
.text-full-base .section-image-divider {
  display: flex;
  gap: 40px;
}
.text-full-base .section-image-divider .image-side {
  width: 100%;
  min-height: 700px;
}
.text-full-base .section-image-divider .image-side img {
  width: 50%;
  position: absolute;
  left: 0;
  max-height: 700px;
  max-width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  top: 0;
  -o-object-position: left;
     object-position: left;
}
.text-full-base .section-image-divider .content-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  width: 100%;
}
.text-full-base .section-image-divider .content-side.accordion-active {
  justify-content: start;
}
.text-full-base .section-image-divider .content-side.accordion-active .accordion-title {
  font-size: 2rem;
  color: #ff6600;
  margin-bottom: 2rem;
}
.text-full-base .section-image-divider .content-side.accordion-active .accordion-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.text-full-base .section-image-divider .content-side.accordion-active .accordion-group .accordion-box {
  background-color: white;
}
.text-full-base .section-image-divider .content-side.accordion-active .accordion-group .accordion-box .accordion-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0.75rem;
  font-weight: 600;
  cursor: pointer;
}
.text-full-base .section-image-divider .content-side.accordion-active .accordion-group .accordion-box .accordion-header:hover {
  background-color: #ececec;
}
.text-full-base .section-image-divider .content-side.accordion-active .accordion-group .accordion-box .accordion-content {
  padding: 0;
  transition: all 0.3s linear;
  max-height: 0;
  overflow: hidden;
  padding: 0 1.75rem;
}
.text-full-base .section-image-divider .content-side.accordion-active .accordion-group .accordion-box.active .accordion-content {
  max-height: 31.25rem;
  padding: 1.75rem;
  padding-top: 0.25rem;
}
.text-full-base .section-image-divider.animation-scroll .image-side img {
  transform: translateY(60px);
  transition: all 0.8s;
}
.text-full-base .section-image-divider.animation-scroll .content-side.accordion-active .accordion-group .accordion-box {
  transform: translateX(-3.125rem);
  transition: all 0.5s;
  opacity: 0;
}
.text-full-base .section-image-divider.animation-scroll.active .image-side img {
  transform: translateY(0);
}
.text-full-base .section-image-divider.animation-scroll.active .content-side.accordion-active .accordion-group .accordion-box {
  transform: translateX(0rem);
  opacity: 1;
}
.text-full-base .section-image-divider.right {
  flex-direction: row-reverse;
}
.text-full-base .section-image-divider.right .image-side img {
  left: auto;
  right: 0;
  -o-object-position: right;
     object-position: right;
}

@media (max-width: 46.875rem) {
  .text-full-base .section-image-divider,
  .text-full-base .section-image-divider.right {
    gap: 20px;
    flex-direction: column;
  }
  .text-full-base .section-image-divider .image-side,
  .text-full-base .section-image-divider.right .image-side {
    min-height: auto !important;
  }
  .text-full-base .section-image-divider .image-side img,
  .text-full-base .section-image-divider.right .image-side img {
    position: inherit;
    width: 100%;
  }
  .text-full-base .content-side h1 {
    font-size: 40px !important;
  }
  .text-section.build .content-text.default-width-center .text-area .title-base.text-image {
    margin: 0;
    margin-bottom: 1.25rem;
    background: none;
    padding: 0;
    font-size: 1.75rem;
  }
  .text-section.build .content-text.default-width-center .text-area .description {
    font-size: 1.25rem;
  }
}
@media (min-width: 46.875rem) {
  .text-section .content-text.default-width-center {
    flex-direction: row;
    gap: 2.5rem;
  }
  .text-section .content-text.default-width-center.left {
    flex-direction: row-reverse;
  }
}
.gallery-image.default-width-center {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.gallery-image.default-width-center .nav-button {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  background-color: #F1F1F1;
  border-radius: 50%;
  border: 1px solid #c8c8c8;
  width: 2.25rem;
  height: 2.25rem;
  cursor: pointer;
}
.gallery-image.default-width-center .nav-button .icon {
  color: #707070;
  font-size: 1.5rem;
}
.gallery-image.default-width-center .nav-button:hover {
  transform: scale(0.8);
  opacity: 0.6;
}
.gallery-image.default-width-center .gallery-box {
  width: 100%;
}
.gallery-image.default-width-center .gallery-box.grid-gallery {
  display: grid;
  gap: 1rem;
}
.gallery-image.default-width-center .gallery-box.grid-gallery:not(.mosaic) {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15.625rem, 300px));
  gap: 1rem;
}
.gallery-image.default-width-center .gallery-box.grid-gallery.mosaic {
  -moz-column-count: 3;
       column-count: 3;
}
.gallery-image.default-width-center .gallery-box.grid-gallery.expanded {
  display: flex;
  gap: 0px;
}
.gallery-image.default-width-center .gallery-box.grid-gallery.expanded .image-box {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 34.375rem;
  flex: 1;
  transition: all 0.5s;
}
.gallery-image.default-width-center .gallery-box.grid-gallery.expanded .image-box:hover {
  flex: 12;
  margin: 0 0.5rem;
}
.gallery-image.default-width-center .gallery-box .image-box {
  display: block;
}
.gallery-image.default-width-center .gallery-box .image-box .container-image {
  height: 100%;
  width: 100%;
}
.gallery-image.default-width-center .gallery-box .image-box .container-image .image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 31.25rem) {
  .gallery-image.default-width-center .galery-box.mosaic {
    -moz-column-count: 2;
         column-count: 2;
  }
  .gallery-image.default-width-center .galery-box .image-box {
    margin-bottom: 1rem;
    display: block;
  }
  .gallery-image.default-width-center .galery-box .image-box .image {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 46.875rem) {
  .gallery-image.default-width-center .gallery-box.grid-gallery.expanded {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-image.default-width-center .gallery-box.grid-gallery.expanded .image-box {
    display: grid;
    justify-content: center;
    align-items: center;
  }
  .gallery-image.default-width-center .gallery-box.grid-gallery.expanded .image-box:hover {
    flex: 1;
    margin: 0;
  }
}
.box-area {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 46.875rem) {
  .box-area.vertical {
    grid-template-columns: 1fr 1fr;
  }
}
.build-slider {
  position: relative;
}
.build-slider .title-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 400;
  margin-bottom: 1rem;
}
.build-slider .title-area .title-base {
  font-size: 2rem;
}
.build-slider .float-controls-glider {
  background-color: red;
}
.build-slider .float-controls-glider .button-nav-area {
  display: flex;
  justify-content: space-between;
}
.build-slider .float-controls-glider .button-nav-area .glide__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: hsla(0, 0%, 100%, 0.61);
  color: black;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  cursor: pointer;
}
.build-slider .float-controls-glider .button-nav-area .glide__arrow:hover {
  background-color: white;
  transform: scale(1.2) translateY(-50%);
}
.build-slider .options {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-decoration: none;
  position: relative;
  transition: all 0.3s;
}
.build-slider .options .project-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.build-slider .options .project-option .image-area {
  position: relative;
}
.build-slider .options .project-option .image-area .overlay-hover-options {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 61.98%, rgba(0, 0, 0, 0) 100%, rgba(0, 0, 0, 0) 100%);
  transition: all 0.3s;
}
.build-slider .options .project-option .image-area .overlay-hover-options img {
  max-width: 60%;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0;
  transition: all 0.3s;
}
.build-slider .options .project-option .image-area img {
  width: 100%;
  height: 21.25rem;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s;
}
.build-slider .options .project-option .option-title {
  font-size: 1.5rem;
  font-weight: 400;
  text-align: center;
  color: #333333;
}
.build-slider .options .project-option .option-status {
  font-size: 1.25rem;
  font-weight: 400;
  color: #8F6244;
}
.build-slider .options .project-option .option-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s;
  background: none;
  background-color: none;
  border: none;
  color: #333333;
  white-space: nowrap;
  padding: 0 10px;
  cursor: pointer;
}
.build-slider .options .project-option .option-link svg {
  width: 1rem;
  height: 1rem;
}
.build-slider .options:hover {
  transform: scale(1.05);
}
.build-slider .options:hover .project-option .image-area .overlay-hover-options {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 45.83%, #8F6244 100%, rgba(0, 0, 0, 0.44) 100%);
  opacity: 1;
}
.build-slider .options:hover .project-option .image-area .overlay-hover-options img {
  opacity: 1;
}
.build-slider .options .build-card-new {
  position: relative;
}
.build-slider .options .build-card-new .status-card-new {
  background-color: #070504;
  color: white;
  letter-spacing: 8px;
  font-weight: 600;
  padding: 8px;
  text-transform: uppercase;
  text-align: center;
}
.build-slider .options .build-card-new .status-card-new.at-work {
  background-color: #EF4724;
  color: white;
}
.build-slider .options .build-card-new .status-card-new.delivered {
  background-color: white;
  color: #1f1f1f;
}
.build-slider .options .build-card-new .status-card-new.launch {
  background-color: #1f1f1f;
  color: white;
}
.build-slider .options .build-card-new .build-info-new {
  position: relative;
  height: 500px;
}
.build-slider .options .build-card-new .build-info-new img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.build-slider .options .build-card-new .build-info-new .info-box {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 2rem 1.75rem;
  padding-top: 2rem;
  color: white;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.59) 57%, rgba(0, 0, 0, 0) 100%);
  z-index: 4;
}
.build-slider .options .build-card-new .build-info-new .info-box h1 {
  text-transform: uppercase;
  font-size: 1.5rem;
}
.build-slider .options .build-card-new .build-info-new .info-box h1, .build-slider .options .build-card-new .build-info-new .info-box p {
  color: white;
}
.build-slider .options .build-card-new .build-info-new .info-box p {
  display: flex;
  gap: 0.75rem;
}
.build-slider .options .build-card-new .build-info-new .info-box p svg {
  width: 1.25rem;
  max-height: 1.25rem;
}
.build-slider .options .build-card-new .build-info-new .info-box p svg path {
  fill: white !important;
}
.build-slider .options .build-card-new .overlay-hover-options {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 61.98%, black 100%, rgba(0, 0, 0, 0) 100%);
  transition: all 0.3s;
  z-index: 5;
}
.build-slider .options .build-card-new .overlay-hover-options img {
  max-width: 60%;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0;
  transition: all 0.3s;
}
.build-slider .options .build-card-new:hover .overlay-hover-options {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 45.83%, black 100%, rgba(0, 0, 0, 0.44) 100%);
  opacity: 1;
}
.build-slider .options .build-card-new:hover .overlay-hover-options img {
  opacity: 1;
}
.build-slider.grid .project-list {
  display: grid;
  gap: 2.5rem 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
}

@media (max-width: 1200px) {
  .project-area .build-glider {
    width: 100%;
  }
}
@media (max-width: 46.875rem) {
  .project-area .project-list.grid-template-2, .project-area .project-list.grid-template-3, .project-area .project-list.grid-template-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .project-area .project-list .options .build-card-new .build-info-new {
    height: 350px;
  }
  .project-area .build-glider .glide__track {
    width: 100%;
  }
  .full-carrousel {
    padding: 0 32px;
  }
  .build-slider .title-area {
    flex-direction: column;
    align-items: start;
    gap: 1.25rem;
  }
  .build-slider .title-area .title-base {
    font-size: 1.5rem;
  }
}
@media (max-width: 31.25rem) {
  .full-carrousel {
    padding: 0 16px;
  }
  .project-area .project-list.grid-template-2:not(.glide__slides), .project-area .project-list.grid-template-3:not(.glide__slides), .project-area .project-list.grid-template-4:not(.glide__slides) {
    grid-template-columns: repeat(1, 1fr);
  }
}
.circle-info {
  display: flex;
  gap: 2.5rem;
  align-items: start;
  justify-content: center;
  flex-wrap: wrap;
}
.circle-info .card-data {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 9.375rem;
  transition: all 0.3s;
}
.circle-info .card-data .icon-area {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  border: 0.125rem solid #868485;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
}
.circle-info .card-data .title-item {
  color: #868485;
  font-size: 1rem;
  letter-spacing: 0.9px;
  font-weight: 275;
  text-align: center;
}

@media (max-width: 31.25rem) {
  .circle-info {
    gap: 0.5rem;
  }
  .circle-info .card-data {
    width: 5rem;
  }
  .circle-info .card-data .icon-area {
    width: 4.375rem;
    height: 4.375rem;
  }
  .circle-info .card-data .icon-area img {
    width: 100%;
    height: 100%;
    max-width: 4.5rem;
    max-height: 4.5rem;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .circle-info .card-data .title-item {
    font-size: 0.75rem;
  }
}
#details-area .details-area-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
#details-area .details-area-cards .item {
  width: 100%;
}
#details-area .details-area-cards .item.card-detail {
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 0.25rem;
  padding: 1.25rem 2rem;
  min-height: 12.5rem;
}
#details-area .details-area-cards .item.card-detail .details-card-icon {
  width: 3.125rem;
  height: 3.125rem;
  -o-object-fit: contain;
     object-fit: contain;
}
#details-area .details-area-cards .item.card-detail .details-card-title {
  font-size: 1rem;
  font-weight: 400;
}
#details-area .details-area-cards .item.image-area {
  grid-area: 1/1/4/2;
}
#details-area .details-area-cards .item.image-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
#details-area .details-area-cards .item.itens {
  width: 100%;
}

@media (max-width: 46.875rem) {
  #details-area .details-area-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  #details-area .details-area-cards .item.image-area {
    display: none;
  }
}
@media (max-width: 31.25rem) {
  #details-area .details-area-cards {
    grid-template-columns: repeat(1, 1fr);
  }
  #details-area .details-area-cards .item.card-detail:nth-child(2) {
    background-color: #B4CAD8;
  }
  #details-area .details-area-cards .item.card-detail:nth-child(5) {
    background-color: #6A93A9;
    color: #fff;
    grid-area: 3/1/4/2;
  }
  #details-area .details-area-cards .item.card-detail:nth-child(6) {
    background-color: #3E7589;
    color: #fff;
  }
  #details-area .details-area-cards .item.image-area {
    display: none;
  }
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.cards-grid .itens-card-grid {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  margin: 0 auto;
  width: 100%;
  min-height: 11.25rem;
  aspect-ratio: 1;
}
.cards-grid .itens-card-grid img {
  width: 40%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 1;
}
.cards-grid .itens-card-grid h1 {
  font-size: 1.5rem;
  font-weight: 400;
  text-align: center;
}

@media (max-width: 46.875rem) {
  .cards-grid {
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
    min-height: auto;
    width: 100%;
  }
  .cards-grid .itens-card-grid h1 {
    font-size: 0.875rem;
  }
}
@media (max-width: 31.25rem) {
  .cards-grid .itens-card-grid {
    aspect-ratio: inherit;
  }
}
.form-block {
  display: flex;
}
.form-block.align-left {
  justify-content: left;
}
.form-block.align-center {
  justify-content: center;
}
.form-block.align-right {
  justify-content: right;
}
.form-block .form-area {
  background-color: white;
  padding: 2rem 2.75rem;
  border-radius: 2.5rem;
  max-width: 25rem;
  width: 100%;
}
.form-block .form-area .feedback-message {
  padding: 0.25rem 0.5rem;
  background-color: lightgray;
  color: gray;
}
.form-block .form-area .feedback-message.success {
  color: white;
  background-color: green;
}
.form-block .form-area .feedback-message.error {
  color: white;
  background-color: #a00303;
}
.form-block .form-area form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-block .form-area form label.column {
  display: flex;
  flex-direction: column;
}
.form-block .form-area form label.column input[type=text],
.form-block .form-area form label.column input[type=email],
.form-block .form-area form label.column input[type=phone] {
  border: 1px solid lightgray;
  padding: 0.5rem 1rem;
  border-radius: 12px;
}
.form-block .form-area form .check-area {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-block .form-area form input[type=submit] {
  margin: 0 auto;
  padding: 0.5rem 1.75rem;
  border-radius: 20px;
  border: none;
  background-color: #BB521F;
  color: white;
  cursor: pointer;
}

@media (max-width: 46.875rem) {
  .form-block.align-left, .form-block.align-center, .form-block.align-right {
    justify-content: center;
  }
}
.section-accordion .container-accordion {
  display: flex;
  flex-direction: column;
}
.section-accordion .container-accordion:last-child {
  border-bottom: 2px solid #f0f0f0;
}
.section-accordion .container-accordion .header-accordion {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  border-top: 2px solid #f0f0f0;
  cursor: pointer;
}
.section-accordion .container-accordion .header-accordion:hover {
  opacity: 0.8;
}
.section-accordion .container-accordion .header-accordion .content-icon-accordion {
  height: 1.5rem;
  width: 1.5rem;
}
.section-accordion .container-accordion .header-accordion .content-icon-accordion .image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.section-accordion .container-accordion .header-accordion .accordion-title {
  font-size: 1.25rem;
  padding-left: 1rem;
}
.section-accordion .container-accordion .header-accordion .accordion-button {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  gap: 0.5rem;
  border: none;
  background: none;
  margin-left: auto;
}
.section-accordion .container-accordion .header-accordion .accordion-button .icon {
  font-size: 1.5rem;
}
.section-accordion .container-accordion .content-accordion {
  display: none;
}
.section-accordion .container-accordion .content-accordion.visible {
  display: flex;
  flex-direction: column;
  padding-left: 3rem;
  padding-right: 3rem;
  padding-bottom: 24px;
  animation: slide-bottom 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.section-accordion .container-accordion .content-accordion.hidden {
  animation: slide-top 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@keyframes slide-bottom {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-top {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-20px);
    display: none;
  }
}
.toast-message {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  padding: 0.5rem 1.5rem;
  background: lightgray;
  color: darkgray;
  font-weight: 600;
}
.toast-message.sucess {
  background-color: #40cd40;
  color: #025802;
}
.toast-message.error {
  background-color: #aa1717;
  color: white;
}

.slide-in-top {
  animation: slide-in-top 5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@keyframes slide-in-top {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }
  10% {
    transform: translateY(0);
    opacity: 1;
  }
  95% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-20px);
    opacity: 0;
  }
}
.box-background-image {
  padding: 4.875rem 0;
  background-position: center;
  background-size: cover;
}
.box-background-image .center-info {
  display: flex;
}
.box-background-image .center-info .float-box-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background-color: white;
  width: 100%;
  max-width: 33.125rem;
  padding: 2.25rem 2rem;
  border-radius: 1.5rem;
  clip-path: polygon(0px 0px, 100% 0px, 100% 90.41%, 88.87% 100%, 0px 100%);
  transition: all 0.7s;
}
.box-background-image .center-info .float-box-info .list-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.box-background-image .center-info .float-box-info .list-info .item-box {
  list-style: none;
  display: flex;
  align-items: start;
  gap: 0.5rem;
  transition: all 1s;
}
.box-background-image .center-info .float-box-info .list-info .item-box .tag {
  font-size: 28px;
  color: #e44c2b;
  font-weight: 600;
  line-height: 0.9;
}
.box-background-image.animation-scroll .float-box-info {
  transform: translateY(80px) scale(0.5);
}
.box-background-image.animation-scroll .float-box-info .list-info .item-box {
  opacity: 0;
  transform: translateX(-60px);
}
.box-background-image.animation-scroll.active .float-box-info {
  transform: translateY(0) scale(1);
}
.box-background-image.animation-scroll.active .float-box-info .list-info .item-box {
  opacity: 1;
  transform: translateX(0);
}

.cards-image-info {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.cards-image-info .card-list {
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(auto-fit, minmax(23.75rem, 1fr));
  gap: 1.5rem;
  justify-content: space-between;
}
.cards-image-info .card-list .individual-card {
  position: relative;
  display: flex;
  align-items: end;
  background-size: cover;
  background-position: center;
  height: 39.5rem;
}
.cards-image-info .card-list .individual-card .top-logotype {
  position: absolute;
  top: 2rem;
  left: 2rem;
  width: 80%;
  max-width: 15.875rem;
}
.cards-image-info .card-list .individual-card .description-area {
  padding: 2rem;
  padding-top: 3.5rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
}
.cards-image-info.animation-scroll {
  transition: all 0.5s;
}
.cards-image-info.animation-scroll .card-list .individual-card {
  transition: all 0.8s;
}
.cards-image-info.animation-scroll .card-list .individual-card:nth-child(odd) {
  transform-origin: left center;
  transform: translateX(-80px) scale(0.8);
}
.cards-image-info.animation-scroll .card-list .individual-card:nth-child(even) {
  transform-origin: right center;
  transform: translateX(80px) scale(0.8);
}
.cards-image-info.animation-scroll.active .card-list .individual-card:nth-child(odd), .cards-image-info.animation-scroll.active .card-list .individual-card:nth-child(even) {
  transform: translateX(0px);
}

@media (max-width: 31.25rem) {
  .cards-image-info .card-list {
    grid-template-columns: repeat(auto-fit, minmax(12.5rem, 1fr));
  }
  .cards-image-info .card-list .individual-card {
    height: 31.25rem;
  }
  .cards-image-info .card-list .individual-card .top-logotype {
    width: 50%;
  }
  .cards-image-info .card-list .individual-card .description-area {
    padding: 1.375rem;
    padding-top: 3rem;
  }
}
.blog-slider {
  position: relative;
}
.blog-slider .title-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.blog-slider .title-area.title-base * {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
.blog-slider .title-area.title-base a {
  font-size: 1rem;
}
.blog-slider .blog-area .item-blog {
  height: 30.625rem;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: end;
  text-decoration: none;
  transition: all 0.3s;
}
.blog-slider .blog-area .item-blog .blog-slider-title-area {
  height: 8.25rem;
  background-color: #070504;
  width: 100%;
  padding: 1.25rem 1rem;
}
.blog-slider .blog-area .item-blog .blog-slider-title-area .blog-slider-title-post {
  color: white;
  font-size: 1.5rem;
  font-weight: 400;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
}
.blog-slider .blog-area .item-blog:hover {
  opacity: 0.8;
}
.blog-slider .float-controls-glider .button-nav-area {
  display: flex;
  justify-content: space-between;
}
.blog-slider .float-controls-glider .button-nav-area .glide__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: hsla(0, 0%, 100%, 0.61);
  color: black;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  cursor: pointer;
}
.blog-slider .float-controls-glider .button-nav-area .glide__arrow:hover {
  background-color: white;
  transform: scale(1.2) translateY(-50%);
}
.blog-slider.animation-scroll .button.tertiary {
  transition: all 0.5s;
  letter-spacing: 10%;
}
.blog-slider.animation-scroll .blog-glider {
  transition: all 0.8s;
  transform: translateX(130px);
  position: relative;
  display: flex;
  align-items: center;
}
.blog-slider.animation-scroll .blog-glider .float-controls-glider {
  position: absolute;
  width: 100%;
}
.blog-slider.animation-scroll .blog-glider .float-controls-glider .button-nav-area {
  display: flex;
  justify-content: space-between;
}
.blog-slider.animation-scroll .blog-glider .float-controls-glider .button-nav-area .glide__bullets {
  width: 100%;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
}
.blog-slider.animation-scroll .blog-glider .float-controls-glider .button-nav-area .bullet {
  border: 4px solid transparent;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: white;
  transition: all 0.3s ease-in-out;
}
.blog-slider.animation-scroll .blog-glider .float-controls-glider .button-nav-area .bullet:hover:not(.glide__bullet--active) {
  transform: scale(1.3);
  opacity: 0.7;
  cursor: pointer;
}
.blog-slider.animation-scroll .blog-glider .float-controls-glider .button-nav-area .bullet.glide__bullet--active {
  border: 4px solid white;
  background: none;
  width: 24px;
  height: 24px;
}
.blog-slider.animation-scroll .blog-glider .float-controls-glider .glide__arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: hsla(0, 0%, 100%, 0.61);
  color: black;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  cursor: pointer;
}
.blog-slider.animation-scroll .blog-glider .float-controls-glider .glide__arrow:hover {
  background-color: white;
  transform: scale(1.2);
}
.blog-slider.animation-scroll.active .button.tertiary {
  letter-spacing: 40%;
}
.blog-slider.animation-scroll.active .blog-glider {
  transform: translateX(0);
}

@media (max-width: 46.875rem) {
  .blog-slider .container-blog-slider .blog-slider-wrapper .glide__track {
    width: 100%;
  }
}
.text-column {
  display: flex;
  gap: 2.5rem;
}
.text-column .individual-column {
  flex: 1;
  max-width: 50%;
}
.text-column.active-divisor {
  position: relative;
}
.text-column.active-divisor:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background-color: #c3c3c3;
  transform: translateX(-50%);
}

@media (max-width: 46.875rem) {
  .text-column {
    flex-direction: column;
  }
  .text-column .individual-column {
    width: 100%;
    max-width: none;
  }
  .text-column.active-divisor:after {
    display: none;
  }
}
.float-block-image {
  display: flex;
  align-items: center;
  position: relative;
}
.float-block-image .float-box {
  padding: 3rem 3.625rem;
  background-color: white;
  z-index: 3;
  position: absolute;
}
.float-block-image .image-block {
  max-width: 80%;
}
.float-block-image.left {
  justify-content: end;
}
.float-block-image.left .float-box {
  left: 0;
}
.float-block-image.right {
  justify-content: start;
}
.float-block-image.right .float-box {
  right: 0;
}
.float-block-image.animation-scroll .float-box {
  transition: all 0.8s;
  transform: translateY(100px) scale(0.8);
}
.float-block-image.animation-scroll.active .float-box {
  transform: translateY(0);
}

@media (max-width: 46.875rem) {
  .float-block-image .float-box {
    position: initial;
    width: 100%;
  }
  .float-block-image .float-box * {
    text-align: center;
  }
  .float-block-image .image-block {
    display: none;
  }
}
.main-content-build {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

#hero-banner-image {
  width: 100%;
  background-color: #1D1D1B;
  height: 31.25rem;
}
#hero-banner-image .banner-area {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
#hero-banner-image .banner-area .overflow-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(29, 29, 27, 0.3);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
#hero-banner-image .banner-area .overflow-banner .hero-block {
  position: relative;
  height: 100%;
}
#hero-banner-image .banner-area .overflow-banner .hero-block .logo-banner {
  position: absolute;
  left: 0;
  bottom: 1.5rem;
  max-width: 15.625rem;
  max-height: 15.625rem;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#hero-banner-image .banner-area .banner {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 46.875rem) {
  #hero-banner-image .banner-area .overflow-banner .hero-block {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #hero-banner-image .banner-area .overflow-banner .hero-block .logo-banner {
    position: inherit;
  }
}
#navegation-build .menu-area .menu {
  display: flex;
  gap: 1rem;
  list-style: none;
  flex-wrap: wrap;
}
#navegation-build .menu-area .menu .menu-item {
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}
#navegation-build .menu-area .menu .menu-item a {
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s;
}
#navegation-build .menu-area .menu .menu-item a:hover {
  display: inline-block;
  padding: 0 0.25rem;
  transform: scale(1.2);
  opacity: 0.5;
  letter-spacing: 0.0625rem;
}

#description-build {
  display: flex;
  justify-content: center;
  gap: 3.125rem;
  padding-top: 0rem;
  padding-bottom: 0rem;
  color: #1D1D1B;
}
#description-build .description {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 28.125rem;
}
#description-build .description .title-description {
  width: 100%;
  font-size: 1.75rem;
  font-weight: 500;
}
#description-build .description .title-description::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 0.25rem;
  background-color: #8F6244;
}
#description-build .description .description-text * {
  font-size: 1.5rem;
  font-weight: 400;
}
#description-build .status {
  display: flex;
  flex-direction: column;
  width: -moz-fit-content;
  width: fit-content;
  gap: 0.75rem;
  background: #1D1D1B;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  height: -moz-fit-content;
  height: fit-content;
}
#description-build .status .title-status {
  font-size: 1.75rem;
  font-weight: 300;
  color: #F8F8F8;
}
#description-build .status .status-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
#description-build .status .status-list li {
  color: #F8F8F8;
  display: flex;
  gap: 1rem;
  font-size: 1.25rem;
  align-items: center;
}
#description-build .status .status-list li .circle {
  background-color: #D9D9D9;
  border-radius: 50%;
  display: inline-block;
  width: 1.75rem;
  height: 1.75rem;
}
#description-build .status .status-list li .circle.active {
  background-color: #08BC15;
}
#description-build .status::after {
  content: "";
  display: block;
  width: 3.125rem;
  height: 18.75rem;
  position: absolute;
  background-color: #f8f8f8;
  position: absolute;
  top: -8rem;
  left: -2.125rem;
  transform: rotate(50deg);
}

@media (max-width: 46.875rem) {
  #description-build {
    flex-direction: column;
    align-items: center;
  }
  #description-build .description {
    max-width: none;
  }
  #description-build .status {
    width: 100%;
  }
}
#gallery-build .rotative-gallery {
  position: relative;
}
#gallery-build .rotative-gallery .slider-gallery {
  position: relative;
  height: 30.625rem;
}
#gallery-build .rotative-gallery .slider-gallery img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#gallery-build .rotative-gallery .slider-gallery .title-gallery {
  position: absolute;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, black 100%, rgba(0, 0, 0, 0) 100%);
  bottom: 0;
  left: 0;
  right: 0;
  height: 6.25rem;
  display: flex;
  align-items: end;
  justify-content: center;
  padding: 2rem;
}
#gallery-build .rotative-gallery .slider-gallery .title-gallery h3 {
  font-size: 24px;
  text-transform: uppercase;
  color: white;
  font-weight: 500;
}
#gallery-build .rotative-gallery .glide__slides {
  display: flex;
}
#gallery-build .rotative-gallery .float-controls-glider .button-nav-area {
  display: flex;
  justify-content: space-between;
}
#gallery-build .rotative-gallery .float-controls-glider .button-nav-area .glide__bullets {
  width: 100%;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
}
#gallery-build .rotative-gallery .float-controls-glider .button-nav-area .bullet {
  border: 4px solid transparent;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: white;
  transition: all 0.3s ease-in-out;
}
#gallery-build .rotative-gallery .float-controls-glider .button-nav-area .bullet:hover:not(.glide__bullet--active) {
  transform: scale(1.3);
  opacity: 0.7;
  cursor: pointer;
}
#gallery-build .rotative-gallery .float-controls-glider .button-nav-area .bullet.glide__bullet--active {
  border: 4px solid white;
  background: none;
  width: 24px;
  height: 24px;
}
#gallery-build .rotative-gallery .float-controls-glider .glide__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: hsla(0, 0%, 100%, 0.61);
  color: black;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  cursor: pointer;
}
#gallery-build .rotative-gallery .float-controls-glider .glide__arrow:hover {
  background-color: white;
  transform: scale(1.2) translateY(-50%);
}
#gallery-build .rotative-gallery .float-controls-glider .glide__arrow.right {
  right: 0;
}
#gallery-build .rotative-gallery .float-controls-glider .glide__arrow.left {
  left: 0;
}
#gallery-build .rotative-gallery .gallery-title {
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
#gallery-build .rotative-gallery .gallery-title strong {
  font-weight: 600;
}

#differential-build .differential-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
#differential-build .differential-list li {
  font-size: 1.25rem;
}
#differential-build .differential-list li .point {
  font-weight: 700;
  color: #EF4120;
}

.gallery-differential {
  display: flex;
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 12px;
       column-gap: 12px;
  justify-content: space-between;
  margin-top: 20px;
}
.gallery-differential .image-box {
  height: 25rem;
}
.gallery-differential .image-box img {
  height: 100%;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 46.875rem) {
  .gallery-differential {
    flex-direction: column;
    gap: 0.75rem;
  }
  .gallery-differential .image-box {
    height: 18.75rem;
  }
  .gallery-differential .image-box img {
    width: 100%;
  }
}
#profile-build {
  display: flex;
  gap: 2rem;
  padding: 3.75rem 0;
}
#profile-build .profile-area {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
#profile-build .profile-area .title-description {
  width: 100%;
  font-size: 1.75rem;
  font-weight: 500;
}
#profile-build .profile-area .title-description::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 0.25rem;
  background-color: #8F6244;
}
#profile-build .profile-area .list-profile * {
  font-size: 1.25rem;
  font-weight: 400;
}
#profile-build .profile-area .list-profile ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-left: 1.25rem;
}

#features-build {
  background-color: #1D1D1B;
  padding: 2.75rem 0;
}
#features-build .title-description {
  width: 100%;
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 2rem;
  color: #f8f8f8;
}
#features-build .title-description::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 0.25rem;
  background-color: #8F6244;
}
#features-build .cards-area {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
#features-build .cards-area .feature-card-item {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.75rem;
}
#features-build .cards-area .feature-card-item .icon-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4.25rem;
  height: 4.25rem;
  min-width: 4.25rem;
  min-height: 4.25rem;
  border-radius: 50%;
  background-color: #8F6244;
}
#features-build .cards-area .feature-card-item .icon-box img {
  width: 2.75rem;
  height: 2.75rem;
  -o-object-fit: contain;
     object-fit: contain;
}
#features-build .cards-area .feature-card-item .text {
  text-align: start;
  font-size: 1.5rem;
  color: white;
}

@media (max-width: 46.875rem) {
  #features-build .cards-area {
    grid-template-columns: repeat(2, 1fr);
  }
  #features-build .cards-area .feature-card-item .icon-box {
    width: 3.25rem;
    height: 3.25rem;
    min-width: 3.25rem;
    min-height: 3.25rem;
  }
  #features-build .cards-area .feature-card-item .icon-box img {
    width: 2rem;
    height: 2rem;
  }
  #features-build .cards-area .feature-card-item .text {
    font-size: 1rem;
  }
}
#plants-build {
  display: flex;
  flex-direction: column;
  gap: 2.75rem;
  padding: 2.75rem 1rem;
}
#plants-build .title-area {
  text-align: center;
}
#plants-build .title-area h1 {
  font-family: "scotland", cursive;
  font-size: 4.375rem;
  line-height: 85%;
  font-weight: 200;
  color: #8F6244;
}
#plants-build .plant-data {
  display: flex;
  gap: 1.25rem;
}
#plants-build .plant-data .info {
  flex: 1;
}
#plants-build .plant-data .info .plant-title {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
#plants-build .plant-data .info .list-data {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
}
#plants-build .plant-data .info .list-data li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
#plants-build .plant-data .info .list-data li.fade-item {
  animation: fadeIn 0.5s forwards;
}
#plants-build .plant-data .info .list-data li img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  -o-object-fit: contain;
     object-fit: contain;
}
#plants-build .plant-data .image-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 26.25rem;
}
#plants-build .plant-data .image-area img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  max-height: 28.125rem;
  transition: all 0.3s;
  margin: auto;
}
#plants-build .plant-data .image-area .bullet-area {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
#plants-build .plant-data .image-area .bullet-area .bullet-button {
  width: 1rem;
  height: 1rem;
  background-color: lightgray;
  border-radius: 50%;
  transition: all 0.6s;
}
#plants-build .plant-data .image-area .bullet-area .bullet-button.active {
  background-color: #1D1D1B;
}
#plants-build .plant-data .image-area .button-transition-area {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}
#plants-build .plant-data .image-area .button-transition-area .button-transition {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 800;
  border-radius: 50%;
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  width: 2rem;
  height: 2rem;
  transition: all 0.3s;
}

@keyframes fadeIn {
  from {
    transform-origin: left;
    transform: translateX(-24px) translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateX(0px) translateY(0);
    opacity: 1;
  }
}
@media (max-width: 46.875rem) {
  #plants-build .plant-data {
    flex-direction: column-reverse;
  }
}
#masterplan-build .title-base {
  margin-bottom: 2rem;
}
#masterplan-build .masterplan-area {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
#masterplan-build .masterplan-area .image-area img {
  width: 100%;
}
#masterplan-build .masterplan-area .masterplan-description {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13.75rem, 1fr));
  gap: 1rem;
}
#masterplan-build .masterplan-area .masterplan-description .item-description {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
#masterplan-build .masterplan-area .masterplan-description .item-description .position {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  min-width: 1.5rem;
  min-height: 1.5rem;
  border-radius: 50%;
  background-color: #e44c2b;
  color: white;
}

#typology-build {
  position: relative;
}
#typology-build .title-base {
  margin-bottom: 2rem;
}
#typology-build .typology-cards-list .typology-card {
  background-color: white;
}
#typology-build .typology-cards-list .typology-card .image-area {
  width: 100%;
  height: 17.5rem;
}
#typology-build .typology-cards-list .typology-card .image-area img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
#typology-build .typology-cards-list .typology-card .content-area {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem 1.75rem;
}
#typology-build .typology-cards-list .typology-card .content-area .typology-card-name {
  font-size: 1.5rem;
  font-weight: 500;
}
#typology-build .typology-cards-list .typology-card .content-area .typology-info-horizontal {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
#typology-build .typology-cards-list .typology-card .content-area .typology-info-horizontal p {
  font-weight: 500;
}
#typology-build .typology-cards-list .typology-card .content-area .typology-description {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  list-style: none;
  min-height: 3.125rem;
}
#typology-build .typology-cards-list .typology-card .content-area .typology-description li span {
  color: #EF4120;
  font-weight: 700;
}
#typology-build .typology-cards-list .hidden-gallery {
  display: none;
}
#typology-build .float-controls-glider .button-nav-area {
  display: flex;
  justify-content: space-between;
}
#typology-build .float-controls-glider .button-nav-area .glide__bullets {
  width: 100%;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
}
#typology-build .float-controls-glider .button-nav-area .bullet {
  border: 4px solid transparent;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: white;
  transition: all 0.3s ease-in-out;
}
#typology-build .float-controls-glider .button-nav-area .bullet:hover:not(.glide__bullet--active) {
  transform: scale(1.3);
  opacity: 0.7;
  cursor: pointer;
}
#typology-build .float-controls-glider .button-nav-area .bullet.glide__bullet--active {
  border: 4px solid white;
  background: none;
  width: 24px;
  height: 24px;
}
#typology-build .float-controls-glider .glide__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: hsla(0, 0%, 100%, 0.61);
  color: black;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  cursor: pointer;
}
#typology-build .float-controls-glider .glide__arrow:hover {
  background-color: white;
  transform: scale(1.2) translateY(-50%);
}
#typology-build .float-controls-glider .glide__arrow.right {
  right: 0;
}
#typology-build .float-controls-glider .glide__arrow.left {
  left: 0;
}

#body-blog .main-image-box {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 100%;
  max-height: 36.25rem;
  margin-top: 2.5rem;
  margin-bottom: 4.25rem;
}
#body-blog .main-image-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#body-blog .article-box {
  display: flex;
  gap: 2.75rem;
}
#body-blog .article-box .title-area {
  max-width: 25rem;
  width: 45%;
}
#body-blog .article-box .title-area h1 {
  font-weight: 500;
  line-height: 3.25rem;
}
#body-blog .article-box .title-area .share-box {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1rem 0;
  padding: 1rem 0;
  border: 2px solid #e44c2b;
  border-left: 0;
  border-right: 0;
}
#body-blog .article-box .title-area .share-box .share-icon {
  width: 2.3125rem;
  height: 2.3125rem;
  min-width: 2.3125rem;
  min-height: 2.3125rem;
  justify-content: center;
  align-items: center;
  display: flex;
  background-color: #4C4C4C;
  text-decoration: none;
  border-radius: 50%;
}
#body-blog .article-box .title-area .share-box .share-icon i {
  color: white;
  font-size: 1.25rem;
}
#body-blog .article-box .article-area {
  width: 100%;
}
#body-blog .article-box .article-area blockquote {
  padding-left: 2rem;
  border-left: 2px solid #e44c2b;
}

@media (max-width: 46.875rem) {
  #body-blog .main-image-box {
    margin-top: 1.25rem;
    margin-bottom: 2rem;
  }
  #body-blog .article-box {
    flex-direction: column;
  }
  #body-blog .article-box .title-area {
    max-width: none;
    width: 100%;
  }
}
.all-blogs {
  padding: 60px 0;
}

.container-blogs {
  max-width: 1200px;
  margin: 0 auto;
}
.container-blogs .blog-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 40px;
  transition: all 0.3s;
  text-decoration: none;
}
.container-blogs .blog-item:hover {
  opacity: 0.8;
}
.container-blogs .blog-thumb {
  flex: 1;
}
.container-blogs .blog-thumb img {
  width: 100%;
  height: 21.5625rem;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
}
.container-blogs .blog-content {
  flex: 1;
}
.container-blogs .blog-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 600; /* Medium */
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.container-blogs .blog-title a {
  text-decoration: none;
  color: #000;
}
.container-blogs .blog-excerpt {
  font-family: "Montserrat", sans-serif;
  font-weight: 400; /* Regular */
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}
.container-blogs .blog-excerpt * {
  line-height: 1.6;
  font-size: 1.25rem;
}
.container-blogs .blog-separator {
  border: none;
  border-top: 1px solid #ddd;
  margin: 40px 0;
  border-color: #FF3C00;
}

.background-texture {
  position: absolute;
  z-index: -1;
  width: 50rem;
  top: 15.625rem;
  max-width: 100%;
}

@media (max-width: 46.875rem) {
  .container-blogs .blog-item {
    flex-direction: column;
  }
  .container-blogs .blog-thumb {
    width: 100%;
  }
}
.banner-area-about {
  padding: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner-area-about img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

#main-about-us #text-about-us {
  text-align: center;
  margin: 0;
  margin-bottom: 5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}
#main-about-us #text-about-us::before {
  content: "";
  display: block;
  width: 0.25rem;
  height: 3.75rem;
  background-color: #8F6244;
}
#main-about-us #text-about-us .title-base.cursive {
  font-size: 1.5rem;
  font-weight: 400;
}
#main-about-us #text-about-us .title-base.cursive span {
  font-family: "scotland", cursive;
  font-size: 4.375rem;
  line-height: 85%;
  font-weight: 200;
  color: #8F6244;
}
#main-about-us #text-about-us .content-card {
  text-align: start;
}
#main-about-us #text-about-us .content-card .description {
  text-align: justify;
  font-size: 1.25rem;
  line-height: 2rem;
  color: #393939;
}

#cards-about {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
#cards-about .card-about-us {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 6;
  padding: 2.5rem 3.75rem;
  color: #ECECEC;
  padding-bottom: 5rem;
  line-height: 1.75rem;
}
#cards-about .card-about-us.black-card {
  background-color: #0F0E13;
}
#cards-about .card-about-us.black-card * {
  color: #ECECEC;
}
#cards-about .card-about-us.dark-gray-card {
  background-color: #475151;
}
#cards-about .card-about-us.dark-gray-card * {
  color: #ECECEC;
}
#cards-about .card-about-us.light-gray-card {
  background-color: #BCCBC7;
}
#cards-about .card-about-us.light-gray-card * {
  color: #0F0E13;
}
#cards-about .card-about-us.light-gray-card .title-area-card hr {
  background-color: #0F0E13;
}
#cards-about .card-about-us.white-card {
  background-color: #f8f8f8;
}
#cards-about .card-about-us.white-card * {
  color: #0F0E13;
}
#cards-about .card-about-us.white-card .title-area-card hr {
  background-color: #0F0E13;
}
#cards-about .card-about-us:last-child {
  height: -moz-fit-content;
  height: fit-content;
}
#cards-about .card-about-us .title-area-card {
  display: flex;
  align-items: center;
  gap: 2rem;
}
#cards-about .card-about-us .title-area-card hr {
  width: 100%;
  height: 0.0625rem;
  border: none;
  background-color: #BCCBC7;
}
#cards-about .card-about-us .content-card {
  margin-right: 2.5rem;
}
#cards-about .card-about-us ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.image-area-about {
  height: 43.75rem;
  width: 100%;
  z-index: 1;
  margin-top: -12.5rem;
}
.image-area-about img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 46.875rem) {
  #main-about-us #text-about-us .content-card .description {
    font-size: 1rem;
  }
  #cards-about {
    grid-template-columns: repeat(1, 1fr);
  }
  .image-area-about {
    margin-top: 0;
    height: 25rem;
  }
}
.top-banner-area {
  padding: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.top-banner-area img {
  width: 100%;
}

.body-base {
  display: flex;
  flex-direction: column;
  gap: 4.375rem;
  min-height: calc(100vh - 18.75rem);
  padding: 4.375rem 0;
}
.body-base .box-rentability {
  padding: 4.375rem 0;
}
.body-base .box-rentability .text-rentability {
  display: flex;
  gap: 2.5rem;
}
.body-base .box-rentability .text-rentability .image-area {
  flex: 1;
  position: relative;
}
.body-base .box-rentability .text-rentability .image-area img {
  position: absolute;
  top: -3rem;
  right: 0;
  transform: rotate(15deg) translateX(-2.1875rem);
  height: 24.125rem;
  width: 20.25rem;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: -12px -12px 25px rgba(0, 0, 0, 0.1);
}
.body-base .box-rentability .text-rentability .text-area {
  flex: 2;
  padding: 2rem 0;
}
.body-base .box-rentability .text-rentability .text-area * {
  font-size: 1.5rem;
}
.body-base .box-rentability .text-rentability.reverse {
  flex-direction: row-reverse;
}
.body-base .box-rentability .text-rentability.reverse .image-area img {
  left: 0;
  transform: rotate(-15deg) translateX(2.1875rem);
}
.body-base .box-rentability.colored {
  background-color: #8F6244;
}
.body-base .box-rentability.colored * {
  color: white;
}

@media (max-width: 46.875rem) {
  .body-base {
    gap: 0;
  }
  .body-base .box-rentability {
    padding: 1.25rem 0;
  }
  .body-base .box-rentability .text-rentability {
    gap: 1.25rem;
    flex-direction: column;
  }
  .body-base .box-rentability .text-rentability .image-area {
    display: flex;
    position: inherit;
    justify-content: center;
    transform: rotate(0);
  }
  .body-base .box-rentability .text-rentability .image-area img {
    position: inherit;
    transform: none;
    max-width: 100%;
    height: auto;
  }
  .body-base .box-rentability .text-rentability .text-area * {
    font-size: 1rem;
  }
  .body-base .box-rentability .text-rentability.reverse {
    flex-direction: column;
  }
  .body-base .box-rentability .text-rentability.reverse .image-area img {
    position: inherit;
    transform: none;
    max-width: 100%;
    height: auto;
  }
}
.table-data-list {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.table-data-list .leads-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.table-data-list .leads-list .table-box {
  width: 100%;
  overflow: auto;
  padding-bottom: 1.25rem;
}
.table-data-list .leads-list .table-box table {
  min-width: 62.5rem;
  width: 100%;
}
.table-data-list .leads-list .table-box table th {
  background-color: #2b2b2b;
  color: #f2f2f2;
  padding: 12px;
  text-align: left;
  font-weight: bold;
}
.table-data-list .leads-list .table-box table tbody tr:nth-child(odd) {
  background-color: #e0e0e0;
}
.table-data-list .leads-list .table-box table tbody tr:nth-child(even) {
  background-color: #c9c9c9;
}
.table-data-list .leads-list .table-box table tbody td {
  padding: 10px;
}
.table-data-list .leads-list .table-box table th, .table-data-list .leads-list .table-box table td {
  border: none;
}

.data-management {
  margin-bottom: 40px;
}
.data-management h2 {
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: #333;
}
.data-management .export-box {
  margin-bottom: 20px;
}
.data-management .export-box .btn-export {
  background-color: #2c3e50;
  color: #fff;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 5px;
  display: inline-block;
  transition: background-color 0.3s;
}
.data-management .export-box .btn-export:hover {
  background-color: #1a252f;
}
.data-management .import-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}
.data-management .import-form label {
  font-weight: bold;
  color: #444;
}
.data-management .import-form input[type=file] {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.data-management .import-form .btn-import {
  width: -moz-fit-content;
  width: fit-content;
  background-color: #27ae60;
  color: white;
  padding: 10px 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.data-management .import-form .btn-import:hover {
  background-color: #1e8449;
}
.data-management .import-feedback {
  background-color: #f3f3f3;
  border-left: 5px solid #2ecc71;
  padding: 15px 20px;
  border-radius: 4px;
  color: #2c3e50;
}
.data-management .import-feedback p {
  margin: 5px 0;
}

.filter-event-select {
  width: 100%;
  max-width: 300px;
  padding: 10px 15px;
  font-size: 16px;
  color: #333;
  background-color: #f8f8f8;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  appearance: none; /* Remove o estilo padrão do select */
  -webkit-appearance: none; /* Remove o estilo no Safari */
  -moz-appearance: none; /* Remove o estilo no Firefox */
  transition: border-color 0.3s, box-shadow 0.3s;
}
.filter-event-select:hover {
  border-color: #007bff;
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.2);
}
.filter-event-select:focus {
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
  outline: none;
}
.filter-event-select::after {
  content: "\f0d7"; /* Setinha do select */
  font-family: "FontAwesome";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.filter-event-select option {
  padding: 10px;
  font-size: 16px;
  color: #333;
  background-color: #fff;
}
.filter-event-select option:hover {
  background-color: #f1f1f1;
}

.contact-footer-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 2.5rem;
}
.contact-footer-form label {
  color: white;
}
.contact-footer-form .input-base-footer {
  width: 80%;
  padding: 4px 8px;
  color: white;
  background: none;
  border: none;
  border-bottom: 2px solid white;
  outline: none;
  font-size: 20px;
}
.contact-footer-form .input-base-footer::-moz-placeholder {
  color: #e44c2b;
  font-style: italic;
}
.contact-footer-form .input-base-footer::placeholder {
  color: #e44c2b;
  font-style: italic;
}
.contact-footer-form .button.secundary {
  width: 80%;
  color: white;
}
.contact-footer-form .button.secundary::before {
  border-bottom: 15px solid #080705;
  border-left: 13px solid #080705;
}

.animation-scroll {
  opacity: 0;
  transition: all 0.5s;
  /* transform: translateX(0px); */
}
.animation-scroll.active {
  opacity: 1;
  /* transform: translateX(0); */
}/*# sourceMappingURL=style.css.map */