/*Intro aos treinamentos*/
/*intro servicos*/
.treinamentos-intro {
  position: relative;
  width: 100%;
  min-height: 20vh;
  background-image: url('../img/servicos-intro.jpeg');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 2rem;
  color: #0e1b29;
}
.treinamentos-intro-content {
    max-width: 800px;
}

.treinamentos-grid-section {
    padding: 20px 100px;
    background: #F9F7F2;
}

.treinamentos-grid-container {
    max-width: 1180px;
    margin: 0 auto;
}

.treinamento-item {
    margin-bottom: 80px;
}

.treinamento-item-inner {
    display: flex;
    align-items: center;
    gap: 20px;
}

.treinamento-item-inner.reverse {
    flex-direction: row-reverse;
}

.treinamento-thumb,
.treinamento-content {
    width: 45%;
}

.treinamento-thumb img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.treinamento-content h3 {
    font-size: 24px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #0e1b29;
}

.treinamento-content p {
    font-size: 12px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #0e1b29;
}

.case-grid-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    text-decoration: none;
    transition: .3s;
}

.treinamentos-loadmore-wrap {
    text-align: center;
    margin-top: 40px;
}

#treinamentos-loadmore {
    cursor: pointer;
    color: #0E1B29;
    border: none;
    padding: 16px 36px;
    font-size: 16px;
    border-radius: 40px;
    transition: .3s;
}
#treinamentos-loadmore:hover {
    color: #0e1b29;
}

.hidden-item {
    display: none;
}

@media(max-width: 768px) {

    .treinamentos-grid-section {
        padding: 80px 20px;
    }

    .treinamento-item {
        margin-bottom: 60px;
    }

    .treinamento-item-inner,
    .treinamento-item-inner.reverse {
        flex-direction: column;
        gap: 30px;
    }

    .treinamento-thumb,
    .treinamento-content {
        width: 100%;
    }

    .treinamento-thumb img {
        height: auto;
    }

    .treinamento-content h3 {
        font-size: 26px;
    }

}

.treinamentos-filtros {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 80px;
}

.filtro-btn {
    border: 1px solid #0e1b29;
    background: transparent;
    padding: 12px 20px;
    cursor: pointer;
    border-radius: 40px;
    transition: .3s;
}

.filtro-btn.active {
    background: #0e1b29;
    color: white;
}
.filtro-btn:hover {
    background: #0e1b29;
    color: white;
}

.treinamento-categoria {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 10px;
}

.treinamento-preco {
    font-size: 14px;
    margin-bottom: 24px;
    background-color: #ffc436;
    color: #0e1b29;
    border-radius: 40px;
    max-width: 100px;
    display: flex;
    justify-content: center;
}