/* ===== HERO ATENCIÓN ===== */

.hero-atencion {
  height: 75vh;
  background-image: url("../img/Atencionimg/hero-atencion.png");
/* cambia por tu imagen */
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.65);
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  color: white;
  max-width: 700px;
}

.hero-overlay h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero-overlay p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.hero-btn {
  background: #007bff;
  color: white;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1.1rem;
  transition: 0.3s;
}

.hero-btn:hover {
  background: #0056b3;
}

/* ===== TARJETAS CONTACTO ===== */

.contacto-section {
  padding: 80px 40px;
  background: #111;

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;

  gap: 30px;
  max-width: 1200px;
  margin: auto;
}
.contact-card {
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 22px;
  width: 220px;
  max-width: 320px;
  text-align: center;
  color: white;
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
  transition: 0.3s;
}

.contact-card:hover {
  transform: translateY(-6px);
}

.card-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.contact-card h3 {
  margin-bottom: 10px;
}

.contact-card p {
  font-size: 0.85rem;
  margin-bottom: 1.3px;
}

.card-btn {
  background: #007bff;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.card-btn:hover {
  background: #0056b3;
}