.contacto__hero {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}
.contacto__hero-content {
  position: absolute;
  z-index: 20;
  width: 80%;
  top: 45%;
  left: 15px;
}
@media (min-width: 1000px) {
  .contacto__hero-content {
    top: 50%;
    width: 655px;
    left: 50%;
    transform: translateX(-485px);
  }
}
.contacto__hero-title {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.25;
  position: relative;
  margin-bottom: 25px;
}
@media (min-width: 1000px) {
  .contacto__hero-title {
    font-size: 55px;
  }
}
.contacto__hero-mouse {
  position: absolute;
  width: 30px;
  height: 50px;
  border-radius: 15px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  z-index: 10;
  bottom: 50px;
  left: calc(50% - 15px);
  transition: all 0.3s ease;
}
.contacto__hero-mouse:hover {
  border: 2px solid rgb(255, 255, 255);
}
.contacto__hero-mouse:after {
  content: "";
  height: 4px;
  width: 4px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  left: calc(50% - 2px);
  position: absolute;
  top: 10px;
  animation: fade 2s ease infinite;
}
.contacto__hero-next-section {
  position: absolute;
  bottom: 0;
  left: calc(50% - 50px);
  z-index: 10;
  width: 100px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23eaeaea' viewBox='0 0 100 20'%3E%3Cpath d='m50,0C34.5,0,14.5,17.5,0,20h100C85.5,17.5,65.5,0,50,0Z'/%3E%3C/svg%3E");
}
.contacto__hero-next-section:after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 2px solid #878787;
  border-right: 2px solid #878787;
  transform: rotate(135deg);
  position: absolute;
  left: 47px;
  bottom: 5px;
}
.contacto__form-section {
  padding-block: 60px;
  background: #eaeaea;
}
@media (min-width: 700px) {
  .contacto__form-section {
    position: relative;
    padding-block: 120px;
  }
}
.contacto__container {
  max-width: 970px;
  margin-inline: auto;
}
@media (min-width: 1000px) {
  .contacto__container {
    display: flex;
    gap: 90px;
  }
}
.contacto__form {
  max-width: 550px;
}
.contacto__info {
  max-width: 260px;
}
@media (min-width: 700px) {
  .contacto__info {
    padding-top: 130px;
  }
}
.contacto__title {
  font-size: 21px;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 30px;
  line-height: 1.5;
  letter-spacing: -0.8px;
  color: #878787;
  font-weight: 500;
}
.contacto__title:after {
  bottom: -15px;
}
@media (min-width: 700px) {
  .contacto__title {
    font-size: 26px;
    margin-bottom: 60px;
  }
}
.contacto__logo {
  width: 50%;
  margin-bottom: 30px;
}
.contacto__info-list li {
  margin-bottom: 10px;
  font-size: 14px;
  display: flex;
  gap: 5px;
  align-items: center;
}
.contacto__info-list li svg {
  fill: #4da234;
  color: #4da234;
  width: 15px;
}
.contacto__social {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}
.contacto__social a {
  color: #878787;
}
.contacto__map {
  overflow: hidden;
  aspect-ratio: 4/3;
}
.contacto__map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}