@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");
:root {
  --primary: #FFFFFF;
  --accent: #4D4948;
  --dark-accent: #2b2828;
  --details: #aaaaaa;
  --text: #636363;
  --highlight: #ece8c7;
  --borders: #DDD;
  --test: red;
}

@font-face {
  font-family: "Ascendant";
  src: url("../fonts/AscendantRegular.otf");
  font-weight: 400;
}
html {
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  width: 100vw;
  height: min-content;
  overflow: hidden;
  background-color: var(--primary);
}

* {
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

#home-button {
  font-size: 26px;
  color: var(--accent);
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 50px;
  border: none;
  height: 50px;
  background-color: var(--primary);
  border: 1px solid var(--borders);
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 7;
  border-radius: 50%;
  transform: translateY(calc(100% + 2rem));
  transition: 500ms;
}
#home-button img {
  width: 28px;
  height: 28px;
}
#home-button.isShown {
  transform: translateY(0px);
}

#whatsapp-button {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  padding: 0.75rem 2rem;
  padding-left: 1rem;
  z-index: 8;
  background-color: var(--primary);
  border-radius: 50px;
  display: flex;
  column-gap: 1rem;
  align-items: center;
  text-decoration: none !important;
  border: 1px solid var(--borders);
}
#whatsapp-button .image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}
#whatsapp-button .title {
  font-size: 16px;
  color: var(--text);
  font-weight: 500;
}

#header {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  top: 1rem;
  left: 0;
  height: 60px;
  z-index: 7;
  padding: 0 3rem;
  transition: transform 500ms;
  border-bottom: 1px solid transparent;
}
#header.isFixed {
  position: fixed;
  top: 0%;
  left: 0%;
  animation: 200ms translateDown forwards;
  background-color: var(--primary);
  border-bottom-color: var(--borders);
}
#header.isFixed .logo,
#header.isFixed .draft,
#header.isFixed .whats-button,
#header.isFixed .menu-button {
  filter: unset !important;
}
#header .header-right {
  display: flex;
  align-items: center;
  column-gap: 1rem;
}
#header .header-right .draft {
  font-size: 16px;
  color: black;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  filter: invert(1);
}
#header .whats-button,
#header .menu-button {
  width: 32px;
  height: 32px;
  z-index: 2;
  margin-left:1.5rem;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  filter: invert(1);
}
#header .whats-button img,
#header .menu-button img {
  width: 32px;
  height: 32px;
}
#header .logo {
  height: 65%;
  filter: brightness(100);
}

#aside {
  width: 300px;
  max-width: 100%;
  height: 100vh;
  position: fixed;
  right: 0;
  top: 0;
  padding: 2rem;
  background-color: var(--primary);
  z-index: 10;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 100% 100%);
  transition: 700ms;
  transform: translateX(100%);
  filter: drop-shadow(0 5px 5px black);
}
#aside.isShown {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transform: translateX(0%);
}
#aside .close-aside {
  cursor: pointer;
  background-color: transparent;
  border: none;
  padding: 0;
}
#aside .close-aside img {
  width: 27px;
  height: 27px;
}
#aside .logo {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  width: calc(70% - 4rem);
}
#aside .navigation {
  display: grid;
  align-content: flex-start;
  row-gap: 2.5rem;
  margin: 5rem 0;
}
#aside .navigation .link {
  font-size: 20px;
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
  font-family: "Ascendant", serif;
  text-transform: uppercase;
  transition: 200ms;
  position: relative;
  width: min-content;
  white-space: nowrap;
}
#aside .navigation .link:hover::after {
  width: 100%;
}
#aside .navigation .link::after {
  content: "";
  background-color: var(--accent);
  height: 2px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 0%;
  margin-top: 3px;
  transition: 200ms;
}

#overlay {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 8;
  opacity: 0;
  background-color: transparent;
  transition: 700ms;
  pointer-events: none;
  backdrop-filter: blur(3px);
  padding: 3rem;
}
#overlay::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--accent);
  opacity: 0.6;
}
#overlay.isShown {
  opacity: 1;
  pointer-events: all;
}

#hero-section {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
#hero-section .background-banners {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transform: scale(1.1);
}
#hero-section .background-banners .banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#hero-section .background-banners::after {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  background-color: black;
  opacity: 0.4;
  box-shadow: inset 0 0 100px 120px black;
}
#hero-section .hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  align-content: flex-start;
  row-gap: 2rem;
  max-width: 100%;
}
#hero-section .hero-text #title {
  font-size: 14vmin;
  color: white;
  font-weight: 400;
  font-family: "Ascendant", serif;
  text-transform: uppercase;
  text-align: center;
}
#hero-section .hero-text #title .word {
  display: block;
  white-space: nowrap;
  user-select: none;
  font-family: inherit;
}
#hero-section .hero-text #title .word .letter {
  font-family: inherit;
  animation: 1s descend forwards;
  display: inline-block;
  transform: translateY(-20px);
  opacity: 0;
  position: relative;
  transition: 150ms;
}
#hero-section .hero-text .subtitle {
  font-size: 3vmin;
  color: white;
  font-weight: 400;
  text-align: center;
  animation: 1s descend forwards;
  transform: translateY(-20px);
  opacity: 0;
}
#hero-section .hero-text .draft-button {
  font-size: 2vmin;
  color: white;
  font-weight: 700;
  display: flex;
  align-items: center;
  padding: 1rem 0.5rem;
  margin: 0 auto;
  background-color: transparent;
  border: 1px solid white;
  text-transform: uppercase;
  border-radius: 4px;
  letter-spacing: 1px;
  cursor: pointer;
  animation: 1s descend forwards;
  transform: translateY(-20px);
  opacity: 0;
  position: relative;
  text-decoration: none;
  overflow: hidden;
  text-align: center;
  line-height: 1.5;
}
#hero-section .hero-text .draft-button img {
  width: 18px;
  height: 18px;
  filter: invert(1);
}
#hero-section .hero-text .draft-button img:nth-child(n+3) {
  transform: scaleX(-1);
}
#hero-section .hero-text .draft-button img:nth-child(2) {
  margin-right: 0.5rem;
}
#hero-section .hero-text .draft-button img:nth-child(3) {
  margin-left: 0.5rem;
}
#hero-section .hero-text .draft-button img:first-child {
  transform: translateX(10px);
}
#hero-section .hero-text .draft-button img:last-child {
  transform: translateX(-10px) scaleX(-1);
}
#hero-section .hero-text .draft-button:hover::after {
  left: 100%;
  transform: translate(175%, 0%) skewX(-20deg);
}
#hero-section .hero-text .draft-button::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 15px;
  height: 100%;
  background-color: var(--primary);
  transform: translate(-175%, 0%) skewX(-20deg);
  transition: 500ms;
}

#know-us-section {
  width: 100%;
  height: min-content;
  position: relative;
  padding: 100px 6%;
  padding-bottom: 75px;
}
#know-us-section .info {
  max-width: 800px;
  margin: 0 auto;
}
#know-us-section .title {
  font-size: 42px;
  color: var(--accent);
  font-weight: 500;
  text-align: center;
  margin-bottom: 4rem;
  transition: 1200ms;
}
#know-us-section .market-date {
  font-size: 2vmin;
  color: var(--details);
  font-weight: 700;
  width: 100%;
  text-align: center;
  margin-bottom: 1rem;
  transition: 1200ms;
}
#know-us-section .history {
  font-size: 2.25vmin;
  color: var(--text);
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  padding: 0 1rem;
  margin-bottom: 2rem;
  transition: 1200ms;
}
#know-us-section .history .underline {
  background-image: linear-gradient(#ece8c7, #ece8c7);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  background-position: bottom left;
  transition: 2000ms;
  font-weight: bold;
}
#know-us-section .history .underline.isShown {
  background-size: 100% 100%;
}

#projects-section {
  width: 100%;
  height: min-content;
  padding: 180px 6%;
  padding-top: 75px;
  position: relative;
}
#projects-section .title {
  font-size: 45px;
  color: var(--accent);
  font-weight: 500;
  width: min-content;
  display: flex;
  margin: 0 auto;
  margin-bottom: 120px;
  align-items: center;
  isolation: isolate;
  position: relative;
  transform: translateY(50px);
  opacity: 0;
  transition: 1200ms;
}
#projects-section .subtitle {
  font-size: 18px;
  color: var(--details);
  font-weight: 600;
  white-space: nowrap;
  text-align: center;
  margin-bottom: 1rem;
  transition: 1200ms;
}
#projects-section .projects-grid {
  width: 100%;
  column-count: 3;
  column-gap: 1rem;
  z-index: 4;
}
#projects-section .projects-grid .project {
  width: 100%;
  overflow: hidden;
  margin-bottom: 1rem;
  transform: translateY(50px);
  transition: 1000ms;
  border-radius: 6px;
  cursor: pointer;
}
#projects-section .projects-grid .project.isShown {
  transform: translateY(0px);
}
#projects-section .projects-grid .project:hover .image {
  transform: scale(1.05);
}
#projects-section .projects-grid .project .image {
  width: 100%;
  transform: scale(1.2);
  transition: 400ms;
}

#talk-with-us-section {
  padding: 90px 6%;
  padding-bottom: 200px;
}
#talk-with-us-section .subtitle {
  font-size: 18px;
  color: var(--details);
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
  transition: 1200ms;
}
#talk-with-us-section > .title {
  font-size: 42px;
  color: var(--accent);
  font-weight: 500;
  text-align: center;
  margin-bottom: 8rem;
  transition: 1200ms;
}
#talk-with-us-section .information-grid {
  display: grid;
  align-content: flex-start;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 5%;
  row-gap: 5rem;
}
#talk-with-us-section .information-grid .information {
  display: grid;
  align-content: flex-start;
  row-gap: 1.5rem;
  transition: 1200ms;
}
#talk-with-us-section .information-grid .information .image {
  width: 55px;
  height: 55px;
  justify-self: center;
  filter: invert(92%) sepia(18%) saturate(290%) hue-rotate(12deg) brightness(88%) contrast(88%);
}
#talk-with-us-section .information-grid .information .title {
  font-size: 20px;
  color: var(--text);
  font-weight: 500;
  text-align: center;
}
#talk-with-us-section .information-grid .information .text {
  font-size: 16px;
  color: var(--text);
  font-weight: 500;
  text-align: center;
  word-break: break-word;
  line-height: 1.5;
}

#products-section {
  padding: 0px 6%;
  padding-bottom: 100px;
}
#products-section .subtitle {
  font-size: 18px;
  color: var(--details);
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
  transition: 1200ms;
}
#products-section .title {
  font-size: 45px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 100px;
  text-align: center;
  transition: 1200ms;
}
#products-section .products-grid {
  display: grid;
  grid-template-columns: 50% 50%;
  align-content: flex-start;
  place-items: center;
  column-gap: 3rem;
  row-gap: 4rem;
  padding: 0 2rem;
}
#products-section .products-grid .product {
  width: 400px;
  max-width: 100%;
  line-height: 1.5;
  height: min-content;
  position: relative;
  transition: 1200ms;
}
#products-section .products-grid .product .name {
  font-size: 24px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1rem;
}
#products-section .products-grid .product .name span {
  font-size: 24px;
  color: var(--accent);
  font-weight: 500;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
}
#products-section .products-grid .product .desc {
  font-size: 16px;
  color: var(--text);
  font-weight: 400;
}
#products-section .products-grid .product .desc .underline {
  background-image: linear-gradient(rgba(199, 189, 134, 0.4588235294), rgba(199, 189, 134, 0.4588235294));
  background-size: 0% 100%;
  background-repeat: no-repeat;
  background-position: bottom left;
  transition: 2000ms;
  font-weight: bold;
}
#products-section .products-grid .product .desc .underline.isShown {
  background-size: 100% 100%;
}

#contact-section {
  width: 100%;
  height: min-content;
  padding-top: 160px;
  padding-bottom: 160px;
  position: relative;
  overflow: hidden;
}
#contact-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-image: url("../images/banner3.webp");
  background-size: cover;
  background-position: center bottom;
  z-index: -2;
}
#contact-section .form {
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  transform: translateY(200px);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
  border-radius: 4px;
  background-color: white;
  transition: 1000ms;
}
#contact-section .form.isShown {
  transform: translateY(0px);
}
#contact-section .form .form-buttons {
  width: 100%;
  height: min-content;
  display: grid;
  align-content: flex-start;
  row-gap: 1rem;
}
#contact-section .form .form-buttons .button {
  font-size: 16px;
  color: white;
  font-weight: 400;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 6px;
  display: flex;
  transition: 200ms;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
}
#contact-section .form .form-buttons .button .icon {
  width: 24px;
  height: 24px;
  filter: invert(1);
}
#contact-section .form .form-buttons .button.isSubmit {
  background-color: var(--accent);
}
#contact-section .form .form-buttons .button.isSubmit:hover {
  background-color: var(--dark-accent);
}
#contact-section .form .form-buttons .button.isWhatsapp {
  background-color: #6BBF5C;
}
#contact-section .form .form-buttons .button.isWhatsapp:hover {
  background-color: #5aa14e;
}
#contact-section .form .title {
  font-size: 25px;
  color: var(--accent);
  font-weight: 700;
}
#contact-section .form .wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
}
#contact-section .form .wrapper.hasError textarea,
#contact-section .form .wrapper.hasError input {
  border-bottom-color: rgb(151, 0, 0);
}
#contact-section .form .wrapper.hasError label {
  color: rgb(151, 0, 0);
}
#contact-section .form .wrapper.hasError p {
  display: block;
}
#contact-section .form .wrapper:first-child {
  margin-top: 10rem;
}
#contact-section .form .wrapper p {
  color: rgb(151, 0, 0);
  order: 3;
  margin-top: 0.5rem;
  font-size: 14px;
  display: none;
  transition: 200ms;
}
#contact-section .form .wrapper label {
  position: relative;
  order: 0;
  font-size: 15px;
  color: var(--text);
  font-weight: 600;
  top: 0;
  width: min-content;
  white-space: nowrap;
  transition: 200ms;
}
#contact-section .form .wrapper input {
  font-size: 15px;
  color: var(--text);
  font-weight: 400;
  order: 1;
  padding: 0.5rem 0;
  border: none;
  width: 100%;
  background-color: transparent;
  outline: none;
  border-bottom: 1px solid #aaa;
  transition: 200ms;
}
#contact-section .form .wrapper textarea {
  font-size: 15px;
  color: var(--text);
  font-weight: 400;
  order: 1;
  padding: 0.5rem 0;
  border: none;
  width: 100%;
  background-color: transparent;
  outline: none;
  border-bottom: 1px solid #aaa;
  resize: vertical;
  max-height: 225px;
}

@keyframes descend {
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes translateDown {
  from {
    transform: translate(0%, -100%);
  }
  to {
    transform: translate(0%, 0%);
  }
}
@media screen and (max-width: 480px) {
  #header {
    padding: 0 2rem;
  }
  #header .draft {
    display: none;
  }
  #header .whats-button,
#header .menu-button {
    width: 27px;
    height: 27px;
  }
  #header .whats-button img,
#header .menu-button img {
    width: 27px;
    height: 27px;
  }
  #aside .link {
    font-size: 25px;
  }
  .hero-text .subtitle {
    font-size: 4vmin !important;
  }
  .hero-text .draft-button {
    padding: 1rem 0.5rem !important;
    font-size: 2.5vmin !important;
  }
  .hero-text .draft-button img:nth-child(2) {
    margin-right: 0 !important;
  }
  .hero-text .draft-button img:nth-child(3) {
    margin-left: 0 !important;
  }
  .market-date {
    font-size: 3vmin !important;
  }
  .history {
    font-size: 4vmin !important;
    padding: 0 !important;
  }
  #whatsapp-button {
    transform-origin: bottom left;
    transform: scale(0.8);
  }
  #home-button {
    transform-origin: bottom right;
    transform: scale(0.9);
  }
  #projects-section {
    padding-bottom: 150px;
  }
  #projects-section .subtitle {
    font-size: 3vmin !important;
  }
  #projects-section .projects-grid {
    column-count: 2;
  }
  #projects-section .title {
    margin-bottom: 90px;
  }
  #products-section .products-grid {
    grid-template-columns: 100%;
  }
  #talk-with-us-section .information-grid {
    grid-template-columns: 1fr !important;
    padding: 0 1rem;
  }
  #talk-with-us-section .information-grid .information {
    display: grid;
    grid-template-columns: min-content 1fr;
    row-gap: 1rem;
    column-gap: 2rem;
  }
  #talk-with-us-section .information-grid .information .image {
    font-size: 50px;
    grid-row: 1/span 2;
    align-self: center;
  }
  #talk-with-us-section .information-grid .information .title, #talk-with-us-section .information-grid .information .text {
    text-align: left;
  }
  #talk-with-us-section .information-grid > *:last-child {
    grid-column: auto !important;
  }
}
#footer {
  padding: 4rem 3rem;
  padding-bottom: 50px;
  display: grid;
  place-items: center;
  align-content: flex-start;
  row-gap: 2rem;
  color: var(--text);
  background-color: var(--dark-accent);
}
#footer .logo {
  filter: brightness(100);
  width: 220px;
}
#footer p {
  color: white;
  text-align: center;
}

@media screen and (max-width: 800px) {
  #projects-section .projects-grid {
    column-count: 2;
  }
  #talk-with-us-section .information-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  #talk-with-us-section .information-grid > *:last-child {
    grid-column: span 3;
  }
}/*# sourceMappingURL=style.css.map */