body {
    font-family: 'Nunito', sans-serif !important;
}

.paw-decoration {
    position: absolute;
    opacity: 0.3;
    /* Diminui opacidade, mas não esconde */
    z-index: 10;
    /* Garante que fique visível */
    pointer-events: none;
    /* Não interfere em cliques */
}

.overflow-hidden {
    overflow: hidden;
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.form-input {
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.form-input:focus {
    border-color: #C85401;
    box-shadow: 0 0 0 3px rgba(200, 84, 1, 0.2);
}

.cor-primaria {
    color: var(--primaria-color);
}

.cor-secundaria {
    color: var(--secundaria-color);
}

.cor-botao {
    color: var(--botao-color) ;
}

#loadingOverlay {
    transition: opacity 0.3s ease-in-out;
}

.step {
    display: none;
}

.step.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 30px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #C85401;
}

input:checked + .slider:before {
    transform: translateX(20px);
}

.specialty-item {
    transition: all 0.3s ease;
}

.specialty-item:hover {
    transform: translateY(-2px);
}

