/* ============================================
   CONTACTO — Propuesta 4: FIRMEZA variante
   Sin formulario · Teléfono / Email / Horario / Redes
   ============================================ */

.contacto {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  padding: 100px 28px;
}

.contacto__container {
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

/* ===== Header ===== */
.contacto__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}

.contacto__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-secondary);
}

.contacto__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
}

.contacto__subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.3px;
}

/* ===== Contact info cards ===== */
.contacto__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  width: 100%;
}

.contacto__card {
  flex: 1 1 220px;
  max-width: 260px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-radius: 10px;
  padding: 36px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  transition: background 0.3s, border-color 0.3s;
}

.contacto__card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(201, 168, 76, 0.5);
}

.contacto__card-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  border: 2px solid var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  font-size: 22px;
  flex-shrink: 0;
}

.contacto__card-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

.contacto__card-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-white);
  text-decoration: none;
  line-height: 1.55;
  word-break: break-word;
  transition: color 0.2s;
}

a.contacto__card-value:hover {
  color: var(--color-secondary);
}

/* ===== Social row ===== */
.contacto__social-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.contacto__social-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.contacto__social-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contacto__social-link {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.contacto__social-link:hover {
  border-color: var(--color-secondary);
  color: var(--color-secondary);
  background: rgba(201, 168, 76, 0.08);
}

/* ===== WhatsApp CTA ===== */
.contacto__cta-wrap {
  display: flex;
  justify-content: center;
}

.contacto__wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 50px;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.35);
}

.contacto__wa-btn i { font-size: 24px; }

.contacto__wa-btn:hover {
  opacity: 0.92;
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.45);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
  .contacto { padding: 80px 20px; }
  .contacto__card { flex: 1 1 100%; max-width: 100%; }
  .contacto__wa-btn { font-size: 15px; padding: 15px 28px; }
}

