.foto-fixa img {
    height: 100vh;
    width: auto !important;
}

.overlay-background {
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    height: 100vh;
}

.overlay-background.darker {
    background-color: rgba(0, 0, 0, 0.8);
}

main {
    padding-top: 100px;
}

section {
    padding-top: 60px;
    height: 600px;
    position: relative;
    z-index: 2;
}

section.auto {
    height: auto;
    padding: 0 8%;
    padding-bottom: 200px;
    color: rgb(223, 214, 207);
}

section.auto .container {
    width: fit-content;
}

section h1 {
    font-size: 70px;
    margin-bottom: 40px;
}

.titulo-normal {
    display: block;
}

.titulo-responsivo {
    display: none;
}

section img {
    height: 250px;
    margin-left: 60px;
}

.full {
    background-color: rgb(223, 214, 207);
}

.transparente {
    color: rgb(223, 214, 207);
    background-color: transparent;
}

.end {
    display: flex;
    justify-content: end;
}

.bloco {
    height: 480px;
    display: flex;
    align-items: center;
}

section .texto {
    font-size: 22px;
    line-height: 1.6em;
}

.buttons-container {
    margin-top: 40px;
}

.blur-btn {
    border: 2px solid rgb(131, 131, 131);
    position: relative;
}

.blur-btn i {
    margin-left: 8px;
    transform: translateY(1px);
}

.pelicula {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: blur(5px);
    background-color: rgba(0, 0, 0, 0.1);
}

.blur-btn.op2 {
    color: #000;
}

.blur-btn.op2:hover {
    border: 2px solid #000;
    background-color: #000;
    color: #fff;
}

#first {
    margin-top: 60px;
}

.video-container {
    position: relative;
    width: 95%;
    max-width: 600px;
}

.thumb {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
}

.thumb img {
    width: 100%;
    height: auto;
    margin: 0;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    color: white;
    pointer-events: none;
    /* Evita que o clique pegue no ícone */
}

.video-fullscreen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9998;
}

video {
    height: 100%;
}

.content {
    margin-left: 30px;
}

#first h1 {
    font-size: 35px;
    margin-bottom: 20px;
    margin-top: -10px;
    color: #fff;
}

.responsivo {
    display: none;
}

.widescreen {
    display: block;
}

#first .blur-btn {
    border: 2px solid rgb(40, 40, 40);
}

.lista-acordeao .section-title {
    margin-bottom: 50px;
}

.accordion-1 {
    padding: 0;
    margin-top: 10px;
}

.accordion-1 li {
    font-weight: bold;
    font-size: 20px;
    display: flex;
    justify-content: space-between;
    align-content: center;
    cursor: pointer;
    width: 100%;
    padding: 15px 0px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
    letter-spacing: 0.02em;
}

.accordion-1 li p {
    margin: 0px;
    max-width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mark {
    display: block;
    width: 8px;
    height: 8px;
    background-color: rgb(151, 149, 12);
    margin-right: 15px;
}

.accordion-1 .trabalho {
    color: rgb(223, 214, 207);
}

.explicacao {
    color: rgb(140, 140, 140);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s ease;
}

.trabalho.ativo .explicacao {
    max-height: 600px;
    animation: fade 1s ease-in-out;
}

.explicacao p {
    margin: 10px 0;
    margin-bottom: 5px;
}

.trabalho.ativo svg {
    transform: rotate(180deg);
}

.accordion-1 svg {
    margin-top: 10px;
    fill: rgb(15, 15, 15);
    transition: transform 1s ease-in;
}

.accordion-1 {
    width: 800px;
}

@keyframes fade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

@media (max-width: 768px) {

    section h1 {
        font-size: 50px;
    }

}

@media (max-width: 767px) {

    .responsivo {
        display: block;
    }

    .widescreen {
        display: none;
    }

    section h1 {
        font-size: 50px;
    }

    .titulo-normal {
        display: none;
    }

    .titulo-responsivo {
        display: block;
    }

    .bloco {
        display: block;
    }

    #first {
        margin-top: 80px;
    }

    .content {
        margin-left: 0;
    }

    video {
        width: 100%;
    }

}

@media (max-width: 600px) {
    #first h1 {
        font-size: 32px;
    }

    .agende h1 {
        font-size: 30px;
        text-align: center;
    }

    .agende h3 {
        font-size: 18px;
    }
}

@media (max-width: 550px) {

    section h1 {
        font-size: 40px;
    }

    section p {
        font-size: 15px;
    }

    #first p {
        text-align: center;
    }

    .accordion-1 {
        width: 100%;
    }

    .trabalho li {
        font-size: 14px;
    }

    .trabalho .explicacao {
        font-size: 13px;
    }
}

@media (max-width: 450px) {

    #first h1 {
        text-align: center;
        font-size: 32px;
    }

    #first .buttons-container a {
        display: block;
        margin: auto;
    }

}

@media (max-width: 390px) {

    #first h1 {
        font-size: 28px;
    }

    .agende h1 {
        font-size: 28px;
    }

}

@media (max-width: 375px) {

    #first h1 {
        font-size: 26px;
    }

    .section-title {
        font-size: 22px;
    }

    .agende h1 {
        font-size: 26px;
    }

}