/* Custom Styles for Giovana Silveira Advocacia */

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Progress Bar Transition */
#progress-bar {
    transition: width 0.1s ease-out;
}

/* Selection Color */
::selection {
    background-color: #c5ad79; /* accent */
    color: #520504; /* primary */
}

/* Custom Scrollbar (Optional) */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #520504;
}
::-webkit-scrollbar-thumb {
    background: #c5ad79;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #b49c68;
}
