.hero-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: -10%;
    left: -10%;
    right: -10%;
    bottom: -10%;
    background-image: var(--hero-bg-image);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #1a1a1a;
    z-index: 1;
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 4rem 0;
}

/* Seta de scroll para baixo */
.scroll-indicator {
    position: relative;
    z-index: 3;
    text-align: center;
    margin-top: 3rem;
}

.scroll-down-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.9);
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse-bounce 2s infinite;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.scroll-down-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.9);
    color: #fff;
    transform: translateY(5px);
    animation: none;
}

@keyframes pulse-bounce {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(15px);
        opacity: 0.7;
    }
}

/* Responsivo */
@media (max-width: 768px) {
    .scroll-down-arrow {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}
