/* Contacts Hero Section */
.contacts-hero {
  padding: 180px 0 0px;
  text-align: center;
  width: 100%;
  position: relative;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-subtitle {
  color: #8c79cf;
  font-size: 1.2rem;
  letter-spacing: 3px;
  margin-bottom: 15px;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 0.8s 1.2s forwards;
}

.hero-title {
  font-size: 3rem;
  margin: 0 auto 20px;
  max-width: 800px;
  line-height: 1.2;
  background: linear-gradient(to right, #ffffff, #c9b6f8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s 1.4s forwards;
  position: relative;
  display: inline-block;
}

.hero-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #8c79cf, transparent);
  border-radius: 3px;
  opacity: 0;
  animation: fadeIn 0.8s 1.4s forwards;
}

.hero-description {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  opacity: 0;
  animation: fadeIn 0.8s 1.5s forwards;
}

/* Contacts Section */
.contacts-section {
  padding: 80px 0;
}

.contacts-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  padding: 0 20px;
}

.contacts-info {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contacts-map {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.contacts-details h3,
.socials-links h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: white;
  position: relative;
}

.contacts-details h3::after,
.socials-links h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(to right, #8c79cf, transparent);
  border-radius: 3px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.detail-item i {
  font-size: 1.5rem;
  color: #8c79cf;
  width: 50px;
  height: 50px;
  background: rgba(140,121,207,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.detail-item h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: white;
}

.detail-item p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
}

.socials-icons {
  display: flex;
  gap: 15px;
}

.socials-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: white;
  transition: all 0.3s ease;
}

.socials-icon:hover {
  transform: translateY(-5px);
}

.whatsapp { background: #25D366; }
.instagram { background: #E1306C; }
.linkedin { background: #0077B5; }

/* Animations */
@keyframes fadeIn { to { opacity: 1; } }
@keyframes fadeInUp { to { opacity:1; transform: translateY(0); } }

/* Responsive */
@media (max-width: 1024px) {
  .contacts-container {
    flex-direction: column;
  }
  
  .contacts-map {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .contacts-hero {
    padding: 120px 0 60px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .contacts-info {
    padding: 30px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .detail-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .detail-item i {
    margin-bottom: 10px;
  }
  
  .socials-icons {
    justify-content: center;
  }
}