.contact {
  min-height: 100vh;
  background-image: url('../images/svg/Recurso\ 3.svg');
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 40px;
  color: var(--white);
  gap: 60px;
}

.contact__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.contact__title {
  font-size: 48px;
  margin-bottom: 24px;
  color: var(--white);
}

.contact__subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: var(--white);
  opacity: 0.9;
}

.contact__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  width: 100%;
}

.contact__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

.contact__info:hover {
  transform: translateY(-5px);
}

.contact__info-title {
  font-size: 32px;
  color: var(--white);
  margin-bottom: 20px;
}

.contact__email,
.contact__social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact__label {
  font-size: 18px;
  color: var(--white);
  opacity: 0.9;
}

.contact__link {
  font-size: 20px;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact__link:hover {
  color: var(--blue);
}

.contact__social-icons {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.contact__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.contact__social-link:hover {
  background-color: var(--white);
  transform: translateY(-3px);
}

.contact__social-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.contact__social-link:hover .contact__social-icon {
  transform: scale(1.1);
}

.contact__image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 500px;
}

.contact__img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}

.contact__img:hover {
  transform: scale(1.02);
}

/* Media queries */
@media screen and (max-width: 1200px) {
  .contact {
    padding: 60px 30px;
  }

  .contact__title {
    font-size: 40px;
  }

  .contact__subtitle {
    font-size: 18px;
  }

  .contact__info-title {
    font-size: 28px;
  }
}

@media screen and (max-width: 992px) {
  .contact__content {
    flex-direction: column;
    text-align: center;
  }

  .contact__info {
    width: 100%;
    max-width: 600px;
  }

  .contact__social-icons {
    justify-content: center;
  }

  .contact__image {
    max-width: 400px;
  }
}

@media screen and (max-width: 768px) {
  .contact {
    padding: 40px 20px;
  }

  .contact__title {
    font-size: 32px;
  }

  .contact__subtitle {
    font-size: 16px;
  }

  .contact__info {
    padding: 30px;
  }

  .contact__info-title {
    font-size: 24px;
  }

  .contact__label {
    font-size: 16px;
  }

  .contact__link {
    font-size: 18px;
  }

  .contact__social-link {
    width: 40px;
    height: 40px;
  }

  .contact__social-icon {
    width: 20px;
    height: 20px;
  }
}

@media screen and (max-width: 480px) {
  .contact {
    padding: 30px 15px;
  }

  .contact__title {
    font-size: 28px;
  }

  .contact__subtitle {
    font-size: 15px;
  }

  .contact__info {
    padding: 20px;
  }

  .contact__info-title {
    font-size: 22px;
  }

  .contact__label {
    font-size: 15px;
  }

  .contact__link {
    font-size: 16px;
  }

  .contact__social-link {
    width: 36px;
    height: 36px;
  }

  .contact__social-icon {
    width: 18px;
    height: 18px;
  }
}
