
  / Estilo para el mensaje de confirmación /
  .mensaje-confirmacion {
    display: none;
    margin-top: 15px;
    padding: 12px;
    border-radius: 6px;
    background-color: #25D366; / Verde WhatsApp /
    color: #fff;
    font-weight: bold;
    text-align: center;
    animation: fadeIn 0.5s ease-in-out;
  }
       .booking-form {
            background-color: var(--light);
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
