@font-face {
  font-family: "Gotham";
  src: url(../fonts/Gotham-Medium.otf);
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham";
  src: url(../fonts/Gotham-Book.otf);
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham";
  src: url(../fonts/Gotham-Light.otf);
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham";
  src: url(../fonts/Gotham-Bold.otf);
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-primary: #1d1e1c;
  --color-secondary: #fcc401;
  --gotham-Bold: "Gotham";
  --gotham-Light: "Gotham";
  --gotham-Book: "Gotham";
  --gotham-Medium: "Gotham";
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--gotham-Book);
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  height: 100vh;
  background: #f6f6f6;
  overflow: hidden;
}

.item-hero {
  height: 100%;
}

.wrapper-text-hero {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  height: 100%;
}

.img-logo {
  width: 260px;
  height: auto;
  object-fit: contain;
  margin-bottom: 2rem;
  position: absolute;
  top: 4rem;
  left: 4rem;
}

h1 {
  font-size: 6rem;
  font-weight: bold;
  line-height: 1;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

p {
  font-size: 1.5rem;
  line-height: 1;
  text-align: left;
  color: #000;
  margin-bottom: 3rem;
  line-height: 1.5;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: var(--color-secondary);
  color: black;
  font-size: 1.25rem;
  border-radius: .5rem;
  text-decoration: none;
  transition: all .3s;
}

.btn-whatsapp:hover {
  opacity: .8;
}

.img-whatsapp {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
}

.img-hero {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.list-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  list-style: none;
  margin-left: 0;
  margin-top: 2.5rem;
  margin-bottom: 0;
  position: absolute;
  left: 4rem;
  bottom: 4rem;
}

.link-info {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  letter-spacing: 0.02rem;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  max-width: 450px;
  line-height: 1.5;
}

.link-info img {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
}


.container-rrss {
  margin-top: 0.5rem;
  transition: all 0.25s;
}

.container-rrss ul {
  display: flex;
  column-gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.container-rrss a {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #393c41;
  border-radius: 50%;
  padding: 0.4rem;
}

.container-rrss img {
  width: 1.1rem;
  height: 1.1rem;
}

.container-rrss a:hover {
  border: 1px solid var(--accent);
}

.container-rrss a:hover img {
  filter: invert(78%) sepia(84%) saturate(2562%) hue-rotate(360deg) brightness(108%) contrast(85%);
}

@media screen and (max-height: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }

  .btn-whatsapp {
    font-size: 1rem;
  }

  .btn-whatsapp img {
    width: 20px;
    height: 20px;
    object-fit: contain;
  }

  .list-info {
    bottom: 2rem;
  }
}

@media screen and (max-width: 1100px) {
  .hero {
    height: 100vh;
  }

  .img-logo {
    left: 2rem;
    top: 2rem;
  }

  .wrapper-text-hero {
    padding: 2rem;
  }

  h1 {
    font-size: 4rem;
  }

  .list-info {
    margin-left: -27px;
  }
}

@media screen and (max-width: 990px) {
  .item-hero:nth-child(2) {
    display: none;
  }

  .img-hero {
    height: 100vh;
  }
}

@media screen and (max-width: 768px) {
  .hero {
    grid-template-columns: 100%;
    overflow: unset;
  }

  .wrapper-text-hero {
    height: 100%;
    justify-content: center;
    padding-bottom: 4rem;
  }

  .img-hero {
    height: 100vh;
  }

}

@media screen and (max-width: 500px) {
  .img-logo {
    left: 1rem;
    top: 2rem;
  }

  .wrapper-text-hero {
    padding: 1rem;
    padding-bottom: 4rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  p {
    font-size: 1rem;
  }

  .btn-whatsapp {
    width: 100%;
    font-size: 1rem;
    justify-content: center;
    gap: .5rem;
  }

  .img-whatsapp {
    width: 16px;
    height: 16px;
  }

  .list-info {
    left: 1rem;
    bottom: 1rem;
  }
}