/* Jes Advogados - Custom Styles & Animations */

:root {
    --brand-gold: #C5A028;
    --brand-black: #1A1A1A;
}

@keyframes pulse-gold {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(197, 160, 40, 0.4); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(197, 160, 40, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(197, 160, 40, 0); }
}

.animate-pulse-gold {
    animation: pulse-gold 2s infinite;
}

/* Scroll Progress Bar */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background-color: var(--brand-gold);
    z-index: 100;
    width: 0%;
    transform-origin: left;
}

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

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

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease-out;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

/* Section Header Divider */
.section-divider {
    height: 4px;
    width: 80px;
    background-color: var(--brand-gold);
    margin-top: 1rem;
}

@media (max-width: 1024px) {
    .section-divider {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Avatar Border Fix */
.avatar-group img {
    border: 2px solid white;
}

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

/* Selection */
::selection {
    background: var(--brand-gold);
    color: white;
}
