/* ============================
   GRID DE CONTACTOS
   ============================ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.contact-card {
  padding: 16px 20px;
  border-radius: 12px;
  background: #f7f7f7;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transition: transform .2s, box-shadow .2s;
  text-align: center;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.contact-card h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  font-weight: 700;
}

.contact-phone {
  margin: 4px 0;
  font-weight: 600;
}

.phone-icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
}

.contact-phone-link {
  color: #2c3e50;
  font-weight: 600;
  text-decoration: none;
}

.contact-phone-link:hover {
  color: coral;
  text-decoration: underline;
}

.wa-icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
}

.contact-whatsapp-link {
  color: #25D366;
  font-weight: 600;
  text-decoration: none;
}

.contact-whatsapp-link:hover {
  color: coral;
  text-decoration: underline;
}

.contact-mail {
  margin: 4px 0;
  color: #4e49e3;
  font-weight: 600;
  text-decoration: none;
}

.mail-icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
}

.contact-mail-link {
  color: #4e49e3;
  font-weight: 600;
  text-decoration: none;
}

.contact-mail-link:hover {
  color: coral;
  text-decoration: underline;
}

/* ============================
   TARJETA DEL FORMULARIO
   ============================ */
.formu-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  max-width: 700px;
  margin: 0 auto;
}

/* ============================
   INPUTS Y TEXTAREA
   ============================ */
.form-row {
  margin-bottom: 18px;
}

.label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #333;
}

.input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color .2s, box-shadow .2s;
  background: #fafafa;
}

.input:focus {
  border-color: #ff6f61;
  box-shadow: 0 0 0 3px rgba(255,111,97,0.25);
  outline: none;
  background: #fff;
}

/* ============================
   BOTÓN
   ============================ */
.button.btn-coral {
  background: #ff6f61;
  color: white;
  padding: 14px 22px;
  border-radius: 8px;
  font-size: 18px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .1s;
  width: 100%;
  font-weight: 600;
}

.button.btn-coral:hover {
  background: #e85a4f;
}

.button.btn-coral:active {
  transform: scale(0.98);
}

/* ============================
   ALERTAS
   ============================ */
.alert-success {
  background: #d4edda;
  color: #155724;
  padding: 14px 18px;
  border-radius: 8px;
  margin-bottom: 20px;
  border-left: 5px solid #28a745;
  font-weight: 600;
}

.alert-error {
  background: #f8d7da;
  color: #721c24;
  padding: 14px 18px;
  border-radius: 8px;
  margin-bottom: 20px;
  border-left: 5px solid #dc3545;
  font-weight: 600;
}

/* ============================
   hCAPTCHA
   ============================ */
.h-captcha {
  margin-top: 10px;
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 600px) {
  .card {
    padding: 22px;
  }

  .button.btn-coral {
    font-size: 16px;
    padding: 12px 18px;
  }
}
