/* Estilos específicos para a seção de contato */

.contact-social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-social-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(31, 31, 31, 0.7);
  border: 2px solid var(--secondary-color);
  border-radius: 8px;
  color: var(--primary-color);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 2px 2px 0 var(--accent-color);
  position: relative;
  overflow: hidden;
  text-decoration: none; /* Remove o sublinhado dos links */
}

.contact-social-icon:hover {
  transform: translateY(-3px);
  color: white;
  background-color: var(--primary-color);
}

.contact-social-icon::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s;
}

.contact-social-icon:hover::before {
  left: 100%;
}

.contact-input-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.contact-label {
  font-family: var(--pixel-font);
  font-size: 0.9rem;
  color: var(--primary-color);
  padding-left: 0.3rem;
}

.contact-button i {
  margin-right: 0.5rem;
}

.contact-footer {
  text-align: center;
  margin-top: 1rem;
}

.contact-note {
  font-size: 0.9rem;
  color: var(--gray-color);
}

.contact-note i {
  color: var(--primary-color);
  margin-right: 0.3rem;
}

/* Pixel corners for contact section */
.section-contact .pixel-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  z-index: 1;
}

.section-contact .pixel-corner-top-left {
  top: 20px;
  left: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath fill='%23FF89B4' d='M0 0h2v1h1v1h1v2H0z'/%3E%3C/svg%3E");
  background-size: contain;
}

.section-contact .pixel-corner-top-right {
  top: 20px;
  right: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath fill='%23FF89B4' d='M2 0h2v4H0v-2h1v-1h1z'/%3E%3C/svg%3E");
  background-size: contain;
}

.section-contact .pixel-corner-bottom-left {
  bottom: 20px;
  left: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath fill='%23FF89B4' d='M0 0h4v2h-1v1h-1v1H0z'/%3E%3C/svg%3E");
  background-size: contain;
}

.section-contact .pixel-corner-bottom-right {
  bottom: 20px;
  right: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath fill='%23FF89B4' d='M0 0h4v4H2v-1H1v-1H0z'/%3E%3C/svg%3E");
  background-size: contain;
}

/* Melhoria no formulário */
.section-contact {
  position: relative;
  z-index: 2;
}

.section-contact::before {
  z-index: -1;
}

.contact-description {
  text-align: center;
}
