#atendimento {
    /*     background-attachment: fixed; */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-blend-mode: darken;
    background-color: rgb(0 0 0 / 60%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
    min-height: 900px;
    padding-top: 5.625rem;
    padding-bottom: 3rem;
    position: relative;
}

#atendimento .logo_footer h2 {
    margin-top: 5rem;
}
#atendimento .logo_footer {
    text-align: center;
    margin-bottom: 7rem;
}

#atendimento .container_footer_atendimento {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

#atendimento .container_footer_atendimento hr {
    height: auto;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    opacity: 1;
}

#atendimento .container_footer_atendimento>div {
    width: 100%;
    max-width: 416px;
}

#atendimento .container_footer_atendimento h2 {
    font-size: var(--wp--preset--font-size--fonte-1);
    margin-bottom: 3rem;
}

#atendimento .container_footer_atendimento h3 {
    font-size: var(--wp--preset--font-size--fonte-30px);
    font-weight: 300;
}

#atendimento .container_footer_atendimento h4 {
    margin-top: 3rem;
    font-size: var(--wp--preset--font-size--fonte-30px);
}

#atendimento .container_footer_atendimento .atendimento_footer_conteudo_02>div h5:first-of-type {
    margin-top: 3rem;
}

#atendimento .atendimento_footer_conteudo_02>div>h5 {
    font-size: var(--wp--preset--font-size--fonte-3);
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 50px;
    margin-bottom: 0;
}

#atendimento .atendimento_footer_conteudo_02>div>h5::after {
    content: '\f107';
    /* Ícone de seta para baixo */
    font-family: 'FontAwesome';
    font-size: 1rem;
    /* Ajuste aqui conforme necessário */
    color: var(--wp--preset--color--cor-9);
    font-weight: bold;
    transition: transform 0.4s;
    display: inline-block;
    margin-left: 8px;
}

#atendimento .atendimento_footer_conteudo_02>div>h5.ativo::after {
    transform: rotate(180deg);
}

#atendimento .atendimento_footer_conteudo_02>div>h5:hover {
    color: var(--wp--preset--color--cor-1);
}

#atendimento .atendimento_footer_conteudo_02>div>h5~ul {
    padding: 0 0 .625rem;
    list-style: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: all .4s;
}

#atendimento .atendimento_footer_conteudo_02>div>h5~ul li {
    padding-top: .625rem;
}

#footer_copyright hr {
    background-color: rgba(255, 255, 255, 0.2);
    opacity: 1;
    border: none;
}





#footer-06 {
    position: relative;
    overflow: hidden;
    /* garante que o vídeo não ultrapasse os limites */
    z-index: 1;
}

/* Span que envolve o vídeo */
#footer-06 .video_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    /* um pouco maior pra compensar o efeito parallax */
    overflow: hidden;
    z-index: -1;
    transform: translateY(-10%);
    /* dá leve sensação de parallax */
}

/* O vídeo em si */
#footer-06 .video_bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateY(10%);
    /* move levemente pra dar o "parallax fake" */
    transition: transform 0.2s ease-out;
}

.video_bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    /* 0.45 = 45% de opacidade */
    pointer-events: none;
    /* não bloqueia cliques */
}