body {
    background-color: var(--tert-brand);
}

main {
    margin: 2.5%;
    display: flex;
    flex-direction: column;
    background-color: var(--highlight);
    border-radius: 50px;
}

.curso-header {
    position: relative;
    display: inline-block;
    z-index: 0;;
}

.curso-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, var(--main-brand), transparent, transparent);
    pointer-events: none;
}

.curso-header img {
    max-width: 100%;
    z-index: inherit;
}

.curso-content {
    padding: 2em;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.curso-title h1 {
    font-size: 2em;
    color: var(--main-brand);
    border-bottom: 3px solid var(--main-brand);
}

.curso-title > h2 {
    color: var(--aux-brand-dark) !important;
}

.curso-content > p {
    color: var(--aux-text);
    font-size: 1.5em;
    font-weight: bold;
}

.curso-content h2 {
    color: var(--main-brand);
    font-size: 1.5em;
}

.turmas-agosto p {
    font-weight: bold;
}

.turmas-desconto, .obs {
    color: var(--aux-text);
    font-weight: normal !important;
    font-size: 0.9em;
}

.investimento-popup-trigger {
    color: var(--aux-brand-dark);
    text-decoration: underline;
    border-radius: 5px;
    cursor: pointer;
}

.investimento-popup-trigger:hover {
    color: var(--main-brand);
}

.card-whatsapp2 {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    font-size: 1em;
    align-items: center;
    gap: 10px;
    background-color: var(--highlight);
}

.wpp-icon2 {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--whatsapp);
    color: var(--highlight);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 2em; 
}

.wpp-text2 {
    color: #198a42;
}


@media (max-width: 700px) {
    .menu-container {
        flex-direction: column;
        gap: 10px;
    }

    .card-whatsapp2 {
        flex-direction: column;
        align-items: flex-start;
    }

}