/* contacto.css - Estilos exclusivos para la página de contacto */

.contact-hero {
  background: linear-gradient(rgba(44, 62, 80, 0.7), rgba(44, 62, 80, 0.7)),
              url('https://images.unsplash.com/photo-1605559424843-9e4c228bf1c2?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  height: 50vh;
  min-height: 400px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero-content {
  max-width: 800px;
  padding: 0 20px;
}

.contact-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.contact-hero p {
  font-size: 1.3rem;
  opacity: 0.95;
}

.contact-section {
  padding: 80px 40px;
  background: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-card {
  background: #f9f9f9;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.contact-icon {
  font-size: 3.5rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.contact-card h3 {
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.contact-card p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.btn-contact {
  display: inline-block;
  background: var(--secondary);
  color: white;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-contact:hover {
  background: #d35400;
  transform: translateY(-3px);
}

.social-icons {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.social-icons a {
  font-size: 2.2rem;
  color: var(--primary);
  transition: color 0.3s, transform 0.3s;
}

.social-icons a:hover {
  color: var(--secondary);
  transform: scale(1.15);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-hero {
    height: 45vh;
    min-height: 350px;
  }
  
  .contact-hero h1 {
    font-size: 2.4rem;
  }
  
  .contact-hero p {
    font-size: 1.1rem;
  }
  
  .contact-section {
    padding: 60px 20px;
  }
}

@media (max-width: 480px) {
  .contact-card {
    padding: 30px 20px;
  }
  
  .contact-icon {
    font-size: 3rem;
  }
}