:root{
  --color-primary: #818286;
  --color-secondary: #C5161D;
}
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
  font-family: "Raleway", sans-serif;
}
.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;
  font-weight: 500;
  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: #fff;
  font-size: 1.25rem;
  border-radius: .5rem;
  text-decoration: none;
  transition: all .3s;
}
.btn-whatsapp:hover{
  background: hsl(358, 80%, 53%);
}

.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;
}
@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;
    grid-template-columns: 100%;
  }
  .img-logo{
    left: 2rem;
    top: 2rem;
  }
  .wrapper-text-hero{
    padding: 2rem ;
  }
  h1{
    font-size: 4rem;
  }

}
@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;
  }
}