/* style.css - Solo estilos funcionales y animaciones */

/* Ocultar pasos inactivos (Lógica del Wizard) */
.wizard-step {
    display: none;
}
.wizard-step.active {
    display: block;
    animation: fadeIn 0.4s ease-out;
}

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

/* Spinner de carga */
.loader {
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid #ffffff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Ajuste del mapa */
.maplibregl-map {
    border-radius: 0.75rem; /* rounded-xl */
}

/* El pie de página fijo */
.app-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 10px;
    background-color: #F4F6F7; /* Gris Hielo */
    font-size: 0.75rem;
    color: #94a3b8;
    z-index: 0;
}