/* ===== ESTILOS PARA FORMULARIOS DE CONTACTO ===== */

/* Estilos base para formularios */
.contact-form {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.contact-form h3 {
  color: var(--Pink__500, #ec4899);
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 600;
}

/* Campos de formulario */
.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #fff;
}

.form-control:focus {
  outline: none;
  border-color: var(--Pink__500, #ec4899);
  box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.1);
}

.form-control.error {
  border-color: #ef4444;
}

/* Botones de formulario */
.btn-contact {
  background: linear-gradient(135deg, var(--Pink__500, #ec4899), var(--Pink__600, #db2777));
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(236, 72, 153, 0.3);
}

.btn-contact:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Mensajes de estado */
.form-message {
  padding: 12px;
  border-radius: 8px;
  margin-top: 1rem;
  text-align: center;
  font-weight: 500;
}

.form-message.success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-message.error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-form {
    padding: 1.5rem;
    margin: 1rem;
  }
  
  .form-control {
    font-size: 16px; /* Previene zoom en iOS */
  }
}

/* Animaciones */
.contact-form {
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
