.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    box-sizing: border-box;
    color: var(--cor-branca);
    z-index: 0;
}


#hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}


.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background-color: rgba(23, 56, 107, 0.6);*/
    z-index: -1;
}

.hero-section h1 .highlight {
    color: var(--cor-primaria);
}


.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    max-width: 60rem;
}

.hero-section p {
    font-size: 1.1rem;
    max-width: 550px;
    margin-bottom: 2rem;
}

.hero-section .btn {
    background-color: var(--cor-primaria);
    color: var(--cor-branca);
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: transform 0.3s ease, background-color 0.3s ease;
    width: 13rem;
    height: 1.8rem;
    font-size: 1.2rem;

}

.hero-section .btn:hover {
    transform: translateY(-3px); /* Efeito de "levantar" o botão */
    background-color: #2a5a9e; /* Um tom um pouco mais claro de azul */
}


.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--cor-branca);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    animation: bounce 2s infinite;
    z-index: 1;
}

.scroll-indicator span {
    margin-bottom: 8px;
}

.arrow-down {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid var(--cor-branca);
}

/* Animação para o scroll indicator */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}