/* Conteúdo do seu style.css */
@keyframes slideIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-slide { animation: slideIn 0.5s ease-out; }

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
.loading { animation: pulse 1.5s ease-in-out infinite; }

.step-hidden { display: none; }
.step-active { display: block; }

input:focus, select:focus {
    outline: none;
    border-color: #4B1D1D;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.input-valid { border-color: #10b981 !important; }
.input-invalid { border-color: #ef4444 !important; }

/* Estilos para os radio buttons */
.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.radio-group label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    transition: all 0.2s ease-in-out;
}
.radio-group label:hover {
    background-color: #f3f4f6;
}
.radio-group input[type="radio"] {
    margin-right: 0.5rem;
    accent-color: #b91c1c; /* Cor do radio button */
}
.radio-group input[type="radio"]:checked + span {
    font-weight: 600;
    color: #b91c1c; /* Cor do texto quando selecionado */
}
.radio-group input[type="radio"]:checked {
    border-color: #b91c1c;
    box-shadow: 0 0 0 1px #b91c1c;
}
