@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body.bg-treinamentos {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(to right, #ffe1a3, #ffcf81);
}

section.contentCenter {
    margin: 15px 25px;
}

.headerProfile__title {
    text-align: left;
    margin-top: 40px;
    margin-bottom: 20px;
	font-weight: 900;
}

.titleBanner {
    font-size: 36px;
    font-weight: 800;
    color: #2E2D2C;
    margin-left: 20px;
}

.titleBanner .superLine {
    text-transform: lowercase;
    font-weight: 600;
}

.treinamentos_pageNav {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.treinamentos_pageNavMenu {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

p.headerSearch__submit {
    display: flex
;
}

.treinamentos_pageNavMenu li {
	width: 200px;
    text-align: center;
    padding: 12px 24px;
    border-radius: 20px;
    background-color: #d4a8ff;
    font-weight: 600;
    color: #2E2D2C;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.treinamentos_pageNavMenu li.selectedButton,
.treinamentos_pageNavMenu li:hover {
    background-color: #a570f7;
    color: white;
}

.treinamento_item {
	padding: 25px 30px;
	margin: 10px 15px;
    width: 100%;
    background-color: #ededed;
    border-radius: 50px;
    margin-bottom: 10px;
    cursor: pointer;
}

.treinamento_item:hover {
opacity: 0.8;
}


.tema_treina.bg-destaque-tema {
    font-weight: 900;
    font-size: 1.2em;
}

h1.title_treina_list {
    font-size: 16px;
    color: #716f6f;
}

.filterTreina {
    font-weight: 600;
    color: #2E2D2C;
    font-size: 16px;
}

.headerSearch__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.combo_col {
    min-width: 200px;
}

.cb_temas {
    min-width: 300px;
    width: 300px;
    padding: 20px;
    font-size: 16px;
    border-radius: 50px;
    color: #000000;
    font-weight: bolder;
    font-family: 'Montserrat';
    border: 3px solid #ccc;
}

.headerSearch__submit .btn__procurar {
    background-color: #e08b7e;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.headerSearch__submit .btn__procurar:hover {
    background-color: #c46c60;
}

.filters-container {
    display: flex;
    flex-direction: column;
	align-items: flex-start;
    margin-bottom: 40px;
}

.imageTreinamento {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
}

.imageTreinamento img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media (max-width: 768px) {
    .treinamentos_pageNavMenu {
        flex-direction: column;
        align-items: center;
    }

    .headerSearch__container {
        flex-direction: column;
    }

    .titleBanner {
        font-size: 28px;
        text-align: center;
        margin-left: 0;
    }

    .imageTreinamento {
        display: none;
    }
}
