.nova-sessao-formacoes {
    background-color: #0f2e40;
    color: #f5f2ef;
    padding: 90px 40px;
}

.titulo-formacoes {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 100;
    text-transform: uppercase;
}

.psico-rule-formacoes {
    width: 42%;
    height: 1px;
    background: #7b9686;
    margin-bottom: 150px;
}

#carrossel-formacoes-novo {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 64px;
    position: relative;
}

.wrapper-formacoes {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.faixa-formacoes {
    display: flex;
    gap: 24px;
    transition: transform 0.3s ease;
}

.slide-formacoes {
    flex: 0 0 calc((100% - 48px) / 3);
    /* 3 slides com 2 gaps */
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.slide-formacoes img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: zoom-in;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.slide-formacoes.ativo img {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.seta-formacoes {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    font-size: 3rem;
}

.anterior-formacoes {
    left: 16px;
}

.proxima-formacoes {
    right: 16px;
}

/* Lightbox (zoom ao clicar no slide) */
.lightbox-formacoes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(10, 10, 10, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 9999;
}

.lightbox-formacoes.ativo {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-formacoes img {
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    transition: transform 0.3s ease;
    cursor: zoom-out;
}

/* Responsivo */
@media (max-width: 769px) {
    .nova-sessao-formacoes {
        padding: 0px 20px 150px;
        text-align: center;
    }

    .titulo-formacoes {
        font-size: 3.6rem;
    }

    .psico-rule-formacoes {
        width: 65%;
        margin: 0 auto;
        margin-bottom: 60px;	
    }

    #carrossel-formacoes-novo {
        max-width: 90%;
        padding: 0;
    }

    .slide-formacoes {
        flex: 0 0 100%;
    }

    .seta-formacoes {
        font-size: 3.2rem;
        background: rgba(0, 0, 0, 0.25);
        border-radius: 50%;
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .anterior-formacoes {
        left: 10px;
    }

    .proxima-formacoes {
        right: 10px;
    }
}