/* === CONTACTO SILMAUR === */
.contact-section {
  background: #f8f9fa;
  text-align: center;
  padding: 100px 20px 80px;
}

.contact-section h2 {
  color: var(--azul);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.contact-section .lead {
  color: #6c7b86;
  font-size: 1rem;
  margin-bottom: 50px;
  line-height: 1.6;
}

/* === TARJETAS DE CONTACTO === */
.contact-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.contact-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  padding: 32px 28px;
  flex: 1 1 300px;
  max-width: 380px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.1);
}

.contact-card .icon img {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
}
.contact-card .icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  background: rgba(235, 133, 49, 0.08); /* tono cálido tenue */
}


.contact-card h3 {
  color: var(--azul);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-card p {
  color: #4a5b64;
  margin-bottom: 22px;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* === BOTONES === */
.contact-card .btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 12px;
  font-weight: 600;
  background: linear-gradient(90deg, var(--naranja), var(--naranja-suave));
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(235, 133, 49, 0.3);
  transition: all 0.3s ease;
}

.contact-card .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(235, 133, 49, 0.4);
}

.contact-card .btn-outline {
  background: none;
  border: 2px solid var(--naranja);
  color: var(--naranja);
  box-shadow: none;
}

.contact-card .btn-outline:hover {
  background: var(--naranja);
  color: #fff;
  box-shadow: 0 8px 22px rgba(235, 133, 49, 0.35);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .contact-section {
    padding: 70px 16px;
  }

  .contact-cards {
    flex-direction: column;
    align-items: center;
    gap: 26px;
  }

  .contact-card {
    max-width: 100%;
    padding: 26px 20px;
  }

  .contact-card .btn,
  .contact-card .btn-outline {
    width: 80%;
    font-size: 0.95rem;
    padding: 10px 20px;
  }
}
.contact-card:nth-child(1) .icon {
  background: rgba(37, 211, 102, 0.15); /* verde WhatsApp */
}
.contact-card:nth-child(2) .icon {
  background: rgba(0, 0, 0, 0.06); /* gris TikTok */
}

