/* Estilos personalizados */
.text-gold-gradient {
    background: linear-gradient(to right, #8e7030, #bca559);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.bg-gold-gradient {
    background: linear-gradient(to right, #8e7030, #bca559);
}
.hover-scale {
    transition: transform 0.3s ease;
}
.hover-scale:hover {
    transform: translateY(-5px);
}
/* Mobile Menu Animation */
#mobile-menu {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}
#mobile-menu.open {
    max-height: 500px;
    opacity: 1;
}

@media screen and (min-width:768px) {
    .thumb-profissional {
        height: 600px;
    }
}
