/*======================================
SINGLE CASES
======================================*/

.single-case {
    background-color: #ffffff;
    color: #0e1b29;
}

/*======================================
HERO EDITORIAL
======================================*/

.case-hero {
    background-color: #0e1b29;
    padding: 140px 0 70px;
    color: #ffffff;
}

.case-hero .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/*======================================
BREADCRUMB
======================================*/

.case-breadcrumb {
    margin-bottom: 40px;
}

.case-breadcrumb .breadcrumb {
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    opacity: 0.7;
}

.case-breadcrumb .breadcrumb a {
    color: #ffc93b;
    text-decoration: none;
        text-transform: uppercase;
}

.case-breadcrumb .breadcrumb span {
    color: #fff;

}

/*======================================
HEADER
======================================*/

.case-header {
    width: 100%;
}

.case-title-single {
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    line-height: 0.95;
    font-weight: 600;
    letter-spacing: -0.04em;
    margin-bottom: 50px;
    max-width: 900px;
    color: #ffffff;
}

.case-header-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: start;
}

/*======================================
SUBTÍTULO
======================================*/

.case-subtitle p {
    font-size: .9rem;
    line-height: 1.7;
    font-weight: 300;
    color: white;
    margin: 0;
    max-width: 760px;
}

/*======================================
INFOS
======================================*/

.case-infos {
    border-left: 1px solid rgba(255,255,255,0.15);
    padding-left: 35px;
}

.case-info-item {
    margin-bottom: 12px;
}

.case-info-item:last-child {
    margin-bottom: 0;
}

.case-info-label {
    display: block;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #ffc93b;
    margin-bottom: 8px;
}

.case-info-value {
    display: block;
    font-size: 0.68rem;
    line-height: 1.6;
    color: #ffffff;
}

/*======================================
IMAGEM DESTACADA
======================================*/

.case-featured-image-section {
    margin-top: -40px;
    position: relative;
    z-index: 5;
}

.case-featured-image-section .container {
    max-width: 1580px;
    height: auto;
    margin: 0 auto;
    padding: 0 10px;
}



.case-featured-image-wrapper {
    margin: 0;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.16);

    max-height: 420px;
}

.case-featured-image {
    width: 100%;
    height: 620px;
    display: block;
    object-fit: cover;
    object-position: center;
}

/*======================================
CONTEÚDO
======================================*/

.case-content-section-single {
    padding: 10px 0;
}

.case-content-section-single .container {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 40px;
}

.case-content-single {
    font-size: 1.08rem;
    line-height: 1.95;
    color: #1d2733;
}



.case-content-single img {
    width: 100%;
    height: auto;
    display: block;
    margin: 1rem auto;
}

.case-content-single iframe,
.case-content-single embed,
.case-content-single object,
.case-content-single video {
    width: 100%;
    max-width: 100%;
    margin: 1rem auto;
    display: block;
}

.case-content-single blockquote {
    margin: 3rem 0;
    padding-left: 25px;
    border-left: 3px solid #ffc93b;
    font-size: 1.25rem;
    line-height: 1.7;
    color: #0e1b29;
}

/*======================================
GRID 3 COLUNAS
======================================*/

.case-gallery-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    margin: 2px 0;
}

.case-gallery-3 img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* MOBILE */
@media (max-width: 768px) {

    .case-gallery-3 {
        grid-template-columns: 1fr;
    }

    .case-gallery-3 img {
        height: auto;
    }

}

/*======================================
SHARE
======================================*/

.case-share-section {
    padding: 40px 0 80px;
    margin: 0 auto;
}

.case-share-section .container {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 40px;
}

.case-share-section .share {
    display: flex;
    align-items: center;
    gap: 18px;
}

.case-share-section .share p {
    margin: 0;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #5c6875;
}

.case-share-section .share-buttons {
    display: flex;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.case-share-section .share-buttons a {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.case-share-section .share-buttons a:hover {
    transform: translateY(-2px);
}

.case-share-section .facebook {
    background-color: #3b5998;
}

.case-share-section .linkedin {
    background-color: #0077b5;
}

.case-share-section .whatsapp {
    background-color: #25d366;
}

/*======================================
RELACIONADOS
======================================*/

.related-posts {
    padding: 100px 0;
    background-color: #f7f8fa;
}

.related-posts .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.related-posts-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 40px;
    color: #0e1b29;
    font-weight: 600;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.related-post-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.related-post-thumb {
    overflow: hidden;
    margin-bottom: 18px;
}

.related-post-thumb img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    max-height: 260px;
    display: block;
    transition: transform 0.5s ease;
}

.related-post-item:hover img {
    transform: scale(1.03);
}

.related-post-content h3 {
    font-size: 1.3rem;
    line-height: 1.3;
    font-weight: 500;
    color: #0e1b29;
    margin: 0;
}

/*======================================
RESPONSIVO
======================================*/

@media (max-width: 980px) {

    .case-header-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .case-infos {
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.15);
        padding-left: 0;
        padding-top: 30px;
    }

    .related-posts-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 768px) {

    .case-hero {
        padding: 120px 0 50px;
    }

    .case-hero .container,
    .case-featured-image-section .container,
    .case-content-section .container,
    .case-share-section .container,
    .related-posts .container {
        padding: 0 4px;
    }

    .case-title-single {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .case-subtitle p {
        font-size: .85rem;
        line-height: 1.8;
    }

    .case-featured-image {
       height: 220px;
       margin-bottom: -10px;
    }

    .case-content-single {
        font-size: 1rem;
        line-height: 1.9;
    }

    .case-content-section-single {
        padding: 10px 0;
    }

    .related-posts {
        padding: 70px 0;
    }

}

/*======================================
SINGLE TREINAMENTOS
======================================*/
/* =========================================================
   HERO TREINAMENTO
========================================================= */

.hero-treinamento {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    padding: 110px 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================================================
   BACKGROUND
========================================================= */

.hero-treinamento-bg-video,
.hero-treinamento-bg-imagem {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-treinamento-bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-treinamento-bg-imagem {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* =========================================================
   OVERLAY
========================================================= */

.hero-treinamento-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.4);
    z-index: 2;
}


/* =========================================================
   CONTAINER
========================================================= */

.hero-treinamento-container {
    position: relative;
    z-index: 3;

    width: 100%;
    max-width: 1280px;

    margin: 0 auto;
    padding: 50px 20px;
}


/* =========================================================
   CONTENT
========================================================= */

.hero-treinamento-content {
    max-width: 500px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


/* =========================================================
   TEXTOS
========================================================= */

.hero-treinamento-kicker {
    font-size: 10px;
    font-weight: 500;
    color: #ffffff;

    margin-bottom: 4px;

    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-treinamento-titulo {
    font-size: 36px;
    line-height: 1.05;
    font-weight: 700;

    color: #ffbd01;

    margin-bottom: 24px;
}

.hero-treinamento-subtitulo {
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400;

    color: #ffffff;

    margin-bottom: 30px;
}

.hero-treinamento-preco-cheio {
    font-size: 12px;
    line-height: 1.3;
    font-weight: 400;

    color: #ffffff;

    margin-bottom: 10px;
}

.hero-treinamento-desconto {
    font-size: 28px
    line-height: 1.1;
    font-weight: 700;

    color: #ffbd01;

    margin-bottom: 40px;
}


/* =========================================================
   BOTÃO
========================================================= */

.hero-treinamento-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

   
    padding: 10px 36px;

    background: #ffbd01;
    color: #18182b;

    border-radius: 40px;

    font-size: 16px;
    font-weight: 700;
    text-decoration: none;

    transition: .3s ease;
}

.hero-treinamento-btn:hover {
    transform: translateY(-2px);
    opacity: .92;
}


/* =========================================================
   RESPONSIVO
========================================================= */

@media(max-width: 768px) {

    .hero-treinamento {
        height: auto;
        min-height: 90vh;
        padding: 80px 10px 80px;
    }

    .hero-treinamento-subtitulo {
        font-size: 12px;
    }

    .hero-treinamento-preco-cheio {
        font-size: 14px;
    }
    .hero-treinamento-desconto {
        font-size: 22px;
    }
    .hero-treinamento-btn {
        width: 100%;
    }

}
/* =========================================================
   SECTION SOBRE TREINAMENTO
========================================================= */

.treinamento-sobre {
    width: 100%;
    padding: 100px 80px;

    background: #f4efe3;
}


/* =========================================================
   CONTAINER
========================================================= */

.treinamento-sobre-container {
    width: 100%;
    max-width: 1280px;

    margin: 0 auto;
    padding: 0 40px;
}


/* =========================================================
   TÍTULO
========================================================= */

.treinamento-sobre-titulo {
    text-align: center;

    font-size: 36px;
    line-height: 1.1;
    font-weight: 700;

    color: #18182b;

    margin-bottom: 70px;
}


/* =========================================================
   GRID
========================================================= */

.treinamento-sobre-grid {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 40px;

    align-items: start;
}


/* =========================================================
   CONTENT
========================================================= */

.treinamento-sobre-content {
    font-size: 18px;
    line-height: 1.8;


    color: #18182b;
}

.treinamento-sobre-content p {
    margin-bottom: 24px;
}

.treinamento-sobre-col-right {
    background-color: #c9c9c7;
    padding: 12px;
}
.treinamento-sobre-col-right p {
    line-height: 1.8em;
    font-size: 14px;
}

.treinamento-sobre-content p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   RESPONSIVO
========================================================= */

@media(max-width: 992px) {

    .treinamento-sobre {
        padding: 80px 0;
    }

    .treinamento-sobre-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .treinamento-sobre-titulo {
        margin-bottom: 36px;
    }

}


@media(max-width: 768px) {

    .treinamento-sobre-container {
        padding: 0 20px;
    }

    .treinamento-sobre-content {
        font-size: 16px;
        line-height: 1.7;
    }

}

/* =========================================================
   SECTION MÓDULOS
========================================================= */

.treinamento-modulos {
    width: 100%;
    padding: 100px 20px;

    background: #0e1b29;
}


/* =========================================================
   CONTAINER
========================================================= */

.treinamento-modulos-container {
    width: 100%;
    max-width: 1280px;

    margin: 0 auto;
    padding: 0 40px;
}


/* =========================================================
   TÍTULO
========================================================= */

.treinamento-modulos-titulo {
    text-align: center;

    font-size: 36px
    line-height: 1.1;
    font-weight: 700;

    color: #ffffff;

    margin-bottom: 70px;
}


/* =========================================================
   GRID
========================================================= */

.treinamento-modulos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}


/* =========================================================
   ITEM
========================================================= */

.treinamento-modulo-item {
    text-align: center;

    padding: 40px 30px;

    border: 1px solid rgba(255,255,255,.08);

    background: rgba(255,255,255,.02);
    backdrop-filter: blur(4px);
}


/* =========================================================
   ÍCONE
========================================================= */

.treinamento-modulo-icon {
    margin-bottom: 24px;
}

.treinamento-modulo-icon i {
    font-size: 22px;
    color: #ffbf01;
}


/* =========================================================
   TÍTULO DO MÓDULO
========================================================= */

.treinamento-modulo-item-titulo {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
    text-align: left;
    color: #ffffff;

    margin-bottom: 20px;
}


/* =========================================================
   TEXTO
========================================================= */

.treinamento-modulo-item-texto {
    font-size: 12px;
    line-height: 1.2;
    font-weight: 400;
text-align: left;
    color: #ffffff;
}

.treinamento-modulo-item-texto p {
    margin-bottom: 20px;
}

.treinamento-modulo-item-texto p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   RESPONSIVO
========================================================= */

@media(max-width: 992px) {

    .treinamento-modulos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media(max-width: 768px) {

    .treinamento-modulos {
        padding: 80px 0;
    }

    .treinamento-modulos-container {
        padding: 0 20px;
    }

    .treinamento-modulos-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .treinamento-modulo-item {
        padding: 32px 24px;
    }

    .treinamento-modulo-item-titulo {
        font-size: 22px;
    }

    .treinamento-modulo-item-texto {
        font-size: 16px;
        line-height: 1.7;
    }

}
/* =========================================================
   SECTION MÉTODO
========================================================= */

.treinamento-metodo {
    width: 100%;
    padding: 40px 20px 10px;

    background: #f4efe3;
}


/* =========================================================
   CONTAINER
========================================================= */

.treinamento-metodo-container {
    width: 100%;
    max-width: 1280px;

    margin: 0 auto;
    padding: 0 20px;
}


/* =========================================================
   GRID
========================================================= */

.treinamento-metodo-grid {
    position: relative;
    z-index: 3;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;

    margin: 20px;
}


/* =========================================================
   CARD
========================================================= */

.treinamento-metodo-card {
    background: #ffffff;

    border: 1px solid #0e1b29;

    padding: 36px 28px;

    box-shadow: 0 10px 30px rgba(0,0,0,.04);
}


/* =========================================================
   TÍTULO
========================================================= */

.treinamento-metodo-card-titulo {
    font-size: 22px;
    line-height: 1.1;
    font-weight: 700;

    color: #0e1b29;

    margin-bottom: 14px;
}


/* =========================================================
   SUBTÍTULO
========================================================= */

.treinamento-metodo-card-subtitulo {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;

    color: #0e1b29;

    margin-bottom: 20px;
}


/* =========================================================
   TEXTO
========================================================= */

.treinamento-metodo-card-texto {
    font-size: 16px;
    line-height: 1.8;
    font-weight: 400;

    color: #0e1b29;
}

.treinamento-metodo-card-texto p {
    margin-bottom: 18px;
}

.treinamento-metodo-card-texto p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   IMAGEM
========================================================= */

.treinamento-metodo-imagem-wrapper {
    position: relative;
    z-index: 1;

    margin-top: 20px;
}

.treinamento-metodo-imagem {
    width: 100%;
    display: block;
    margin-bottom: -150px;
    object-fit: cover;
    max-height: 390px;
}


/* =========================================================
   RESPONSIVO
========================================================= */

@media(max-width: 1100px) {

    .treinamento-metodo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media(max-width: 768px) {

    .treinamento-metodo {
        padding: 80px 0 0;
    }

    .treinamento-metodo-container {
        padding: 0 20px;
    }

    .treinamento-metodo-grid {
        grid-template-columns: 1fr;

        gap: 20px;

        margin-bottom: 40px;
    }

    .treinamento-metodo-card {
        padding: 28px 24px;
    }

    .treinamento-metodo-card-titulo {
        font-size: 24px;
    }

    .treinamento-metodo-card-subtitulo {
        font-size: 17px;
    }

}
/* =========================================================
   SECTION PAY
========================================================= */

.treinamento-pay {
    width: 100%;
    padding: 120px 20px;

    background: #f4efe3;
}


/* =========================================================
   CONTAINER
========================================================= */

.treinamento-pay-container {
    width: 100%;
    max-width: 1280px;

    margin: 0 auto;
}


/* =========================================================
   BOX
========================================================= */

.treinamento-pay-box {
    max-width: 760px;

    margin: 0 auto;

    background: #0e1b29;

    padding: 80px 50px;

    text-align: center;
}


/* =========================================================
   TEXTOS
========================================================= */

.treinamento-pay-kicker {
    display: block;

    font-size: 18px;
    font-weight: 700;

    color: #ffffff;

    margin-bottom: 24px;

    text-transform: uppercase;
    letter-spacing: 1px;
}

.treinamento-pay-subtitulo {
    font-size: 14px;
    line-height: 1.1;
    font-weight: 700;

    color: #ffffff;

    margin-bottom: 30px;
}

.treinamento-pay-preco-cheio {
    font-size: 14px;
    line-height: 1.3;
    font-weight: 400;

    color: #ffffff;

    text-decoration: line-through;

    margin-bottom: 14px;
}

.treinamento-pay-preco {
    font-size: 28px;
    line-height: 1;
    font-weight: 700;

    color: #ffbf01;

    margin-bottom: 20px;
}

.treinamento-pay-parcelamento {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;

    color: #ffffff;

    margin-bottom: 40px;
}


/* =========================================================
   BOTÕES
========================================================= */

.treinamento-pay-btn,
.treinamento-pay-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 58px;
    padding: 0 38px;

    border: none;
    cursor: pointer;

    background: #ffbf01;

    color: #0e1b29;

    border-radius: 40px;

    font-size: 18px;
    font-weight: 600;

    transition: .3s ease;
}

.treinamento-pay-btn:hover,
.treinamento-pay-submit:hover {
    transform: translateY(-2px);
    opacity: .95;
}

.treinamento-pay-success {
    text-align: center;
    margin-top: 32px;
}

.treinamento-pay-success p {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.treinamento-pay-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: #ffbf01;
    color: #18182b;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

.treinamento-pay-submit:hover {
    transform: translateY(-2px);
}

/* =========================================================
   FORMULÁRIO
========================================================= */

.treinamento-pay-form-wrapper {
    display: none;

    margin-top: 40px;
}

.treinamento-pay-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.treinamento-pay-field input {
    width: 100%;
    height: 58px;

    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.15);

    background: rgba(255,255,255,.05);

    padding: 0 20px;

    font-size: 16px;

    color: #ffffff;
}

.treinamento-pay-field input::placeholder {
    color: rgba(255,255,255,.7);
}

.treinamento-pay-field input:focus {
    outline: none;
    border-color: #ffbf01;
}

.treinamento-pay-success {
    margin-top: 24px;
    text-align: center;
}

.treinamento-pay-success p {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.5;
}

/* =========================================================
   RESPONSIVO
========================================================= */

@media(max-width: 768px) {

    .treinamento-pay {
        padding: 80px 20px;
    }

    .treinamento-pay-box {
        padding: 50px 24px;
    }

    .treinamento-pay-btn,
    .treinamento-pay-submit {
        width: 100%;
    }

}
/* =========================================================
   SECTION AUTORIDADE
========================================================= */

.treinamento-autoridade {
    width: 100%;
    padding: 20px 0;

    background: #f4efe3;
}


/* =========================================================
   CONTAINER
========================================================= */

.treinamento-autoridade-container {
    width: 100%;
    max-width: 1280px;

    margin: 0 auto;
    padding: 0 40px;
}


/* =========================================================
   GRID
========================================================= */

.treinamento-autoridade-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;

    align-items: center;
}


/* =========================================================
   IMAGEM
========================================================= */

.treinamento-autoridade-image img {
    width: 100%;
    display: block;

    object-fit: cover;
}


/* =========================================================
   CONTENT
========================================================= */

.treinamento-autoridade-content {
    max-width: 560px;
}


/* =========================================================
   TÍTULO
========================================================= */

.treinamento-autoridade-titulo {
    font-size: 36px;
    line-height: 1.1;
    font-weight: 700;

    color: #0e1b29;

    margin-bottom: 24px;
}


/* =========================================================
   SUBTÍTULO
========================================================= */

.treinamento-autoridade-subtitulo {
    font-size: 22px;
    line-height: 1.4;
    font-weight: 600;

    color: #0e1b29;

    margin-bottom: 30px;
}


/* =========================================================
   TEXTO
========================================================= */

.treinamento-autoridade-texto {
    font-size: 16px;
    line-height: 1.9;
    font-weight: 400;

    color: #0e1b29;
}

.treinamento-autoridade-texto p {
    margin-bottom: 24px;
}

.treinamento-autoridade-texto p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   RESPONSIVO
========================================================= */

@media(max-width: 992px) {

    .treinamento-autoridade-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

}


@media(max-width: 768px) {

    .treinamento-autoridade {
        padding: 80px 0;
    }

    .treinamento-autoridade-container {
        padding: 0 20px;
    }

    .treinamento-autoridade-subtitulo {
        font-size: 20px;
    }

    .treinamento-autoridade-texto {
        font-size: 16px;
        line-height: 1.8;
    }

}

/* =========================================================
   FAQ
========================================================= */

.treinamento-faq {
    width: 100%;
    padding: 100px 0;

    background: #f4efe3;
}


/* =========================================================
   CONTAINER
========================================================= */

.treinamento-faq-container {
    width: 100%;
    max-width: 900px;

    margin: 0 auto;
    padding: 0 20px;
}


/* =========================================================
   TÍTULO
========================================================= */

.treinamento-faq-titulo {
    text-align: center;

    font-size: 36px;
    line-height: 1.1;
    font-weight: 700;

    color: #0e1b29;

    margin-bottom: 60px;
}


/* =========================================================
   ACCORDION
========================================================= */

.treinamento-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 18px;
}


/* =========================================================
   ITEM
========================================================= */

.treinamento-faq-item {
    background: #ffffff;

    border-radius: 20px;

    overflow: hidden;

    border: 1px solid rgba(14,27,41,.08);
}


/* =========================================================
   QUESTION
========================================================= */

.treinamento-faq-question {
    width: 100%;

    background: none;
    border: none;

    padding: 28px 30px;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    text-align: left;

    font-size: 20px;
    line-height: 1.4;
    font-weight: 600;

    color: #0e1b29;
}


/* =========================================================
   ICON
========================================================= */

.treinamento-faq-icon {
    flex-shrink: 0;

    font-size: 28px;
    line-height: 1;

    color: #0e1b29;

    transition: .3s ease;
}


/* =========================================================
   ANSWER
========================================================= */

.treinamento-faq-answer {
    display: none;
}

.treinamento-faq-answer-content {
    padding: 0 30px 30px;

    font-size: 17px;
    line-height: 1.8;
    font-weight: 400;

    color: #0e1b29;
}

.treinamento-faq-answer-content p {
    margin-bottom: 18px;
}

.treinamento-faq-answer-content p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   ACTIVE
========================================================= */

.treinamento-faq-item.active .treinamento-faq-answer {
    display: block;
}

.treinamento-faq-item.active .treinamento-faq-icon {
    content: "-";
}


/* =========================================================
   RESPONSIVO
========================================================= */

@media(max-width: 768px) {

    .treinamento-faq {
        padding: 80px 0;
    }

    .treinamento-faq-question {
        padding: 24px 20px;

        font-size: 18px;
    }

    .treinamento-faq-answer-content {
        padding: 0 20px 24px;

        font-size: 16px;
        line-height: 1.7;
    }

}