body {
    background-color: #6e0bd6;
    color: white;
    font-family: sans-serif;
    text-align: center;
    margin: 0;
}

.banner {
    width: 100%;
    height: 100px;
    background-image: url('/treinamentos/src/img/banner-cortado.png');
    background-size: 300px auto;
    background-repeat: repeat-x;
}

.secao-introducao {
    padding: 60px 20px;
}

.cabecalho-principal {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
}

.cabecalho-principal img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    flex-shrink: 0;
}

.cabecalho-principal h1 {
    font-size: 2.5em;
    font-weight: bold;
    margin: 0;
    line-height: 1.2;
    white-space: nowrap;
    text-wrap: nowrap;
}

.subtitulo {
    font-size: 1.8em;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 30px;
    line-height: 1.3;
}

.paragrafo-descricao {
    font-size: 1em;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    margin-bottom: 40px;
}

.secao-treinamento {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
    flex-wrap: wrap;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.secao-treinamento .imagem-modelo {
    width: 150px;
    height: auto;
    flex-shrink: 0;
}

.conteudo-botoes {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
    max-width: 180px;
    text-align: center;
}

.conteudo-botoes p {
    font-size: 1.1em;
    margin-bottom: 10px;
}

.conteudo-botoes .botao-geral {
    background-color: #FF5722;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.conteudo-botoes .botao-geral:hover {
    background-color: #E64A19;
}

.continue-jornada {
    padding: 60px 20px;
    margin-top: 0;
    text-align: center;
}

.titulo-jornada {
    font-size: 2.5em;
    color: white;
    margin-bottom: 20px;
    font-weight: bold;
}

.descricao-jornada {
    font-size: 1.1em;
    color: white;
    margin-bottom: 10px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.aviso-jornada {
    font-size: 0.9em;
    color: white;
    margin-bottom: 40px;
    opacity: 0.8;
}

.modulos-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    align-items: center;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.botao-modulo {
    background-color: #FF5722;
    color: white;
    padding: 15px 25px;
    border: none;
    border-radius: 10px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    display: block;
    width: 100%;
    max-width: 280px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.botao-modulo:hover {
    background-color: #E64A19;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.secao-contato {
    background-color: #6e0bd6;
    padding: 60px 20px;
    color: white;
    text-align: center;
}

.container-contato {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.info-contato {
    text-align: center;
    max-width: 90%;
}

.titulo-contato {
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 20px;
}

.horario-titulo {
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: 5px;
}

.horario-texto {
    font-size: 1em;
    margin-bottom: 0;
}

.depoimento-contato {
    background-color: #FF5722;
    color: white;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    max-width: 300px;
    text-align: center;
    transform: rotate(2deg);
    filter: brightness(1.1);
    border: 3px solid white;
    box-sizing: border-box;
}

.texto-depoimento {
    font-size: 1em;
    line-height: 1.6;
    margin: 0;
}

.depoimento-contato::before {
    content: url('/src/img/aspas-topo.png');
    position: absolute;
    top: -15px;
    left: 10px;
    width: 40px;
    height: auto;
    z-index: 1;
}

.depoimento-contato::after {
    content: url('/src/img/aspas-base.png');
    position: absolute;
    bottom: -15px;
    right: 10px;
    width: 40px;
    height: auto;
    z-index: 1;
}

.secao-logo-olx {
    padding: 40px 20px;
    text-align: center;
}

.logo-grupo-olx {
    width: 200px;
    height: auto;
    padding: 1rem;
    display: block;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .secao-introducao {
        padding: 80px 50px;
    }

    .cabecalho-principal {
        gap: 15px;
    }

    .cabecalho-principal img {
        width: 300px;
        height: auto;
    }

    .cabecalho-principal h1 {
        font-size: 3.5em;
    }

    .subtitulo {
        font-size: 2.5em;
    }

    .paragrafo-descricao {
        font-size: 1.2em;
        margin-left: auto;
        margin-right: auto;
    }

    .secao-treinamento {
        gap: 30px;
        flex-wrap: nowrap;
        max-width: 800px;
    }

    .secao-treinamento .imagem-modelo {
        width: 250px;
    }

    .conteudo-botoes {
        max-width: 250px;
    }

    .conteudo-botoes p {
        font-size: 1.2em;
    }

    .conteudo-botoes .botao-geral {
        padding: 15px 30px;
        font-size: 1.2em;
    }

    .continue-jornada {
        padding: 80px 50px;
    }

    .titulo-jornada {
        font-size: 3.5em;
    }

    .descricao-jornada {
        font-size: 1.3em;
        margin-left: auto;
        margin-right: auto;
    }

    .aviso-jornada {
        font-size: 1.1em;
    }

    .modulos-container {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 25px;
        max-width: 900px;
    }

    .botao-modulo {
        width: calc(33.333% - 25px);
        max-width: 250px;
        padding: 20px 30px;
        font-size: 1.3em;
        border-radius: 12px;
    }

    .secao-contato {
        padding: 80px 50px;
    }

    .container-contato {
        flex-direction: row;
        align-items: flex-start;
        gap: 80px;
    }

    .info-contato {
        max-width: 500px;
    }

    .titulo-contato {
        font-size: 2.5em;
    }

    .horario-titulo {
        font-size: 1.2em;
    }

    .horario-texto {
        font-size: 1.1em;
    }

    .depoimento-contato {
        max-width: 400px;
        padding: 40px 35px;
    }

    .texto-depoimento {
        font-size: 1.1em;
    }

    .depoimento-contato::before {
        top: -20px;
        left: 20px;
        width: 50px;
    }

    .depoimento-contato::after {
        bottom: -20px;
        right: 20px;
        width: 50px;
    }

    .secao-logo-olx {
        padding: 60px 50px;
    }

    .logo-grupo-olx {
        width: 250px;
        padding: 0;
        margin: 0 auto;
    }
}

@media (min-width: 1024px) {
    .modulos-container {
        max-width: 1000px;
    }
    .botao-modulo {
        max-width: 280px;
    }
    .depoimento-contato {
        max-width: 450px;
    }
}