*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
    outline: none;
}
ul {
    padding: 0;
}
li {
    list-style: none;
}
html {
    scroll-behavior: smooth;
    font-size: 62.5%;
}
body {
    margin: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: #4f4f4f;
}
button:focus {
    outline: none;
}
a,
a:hover,
button {
    text-decoration: none !important;
    cursor: pointer !important;
    transition: 0.5s;
}

/* HEADER */
.header {
    padding: 2rem 0;
}

.navbar-brand img {
    transform: scale(1);
    transition: all 0.3s ease;
}

.header-social {
    margin-left: 2.2rem;
}

.header-social img:hover {
    transform: scale(1.1);
}

.header-link {
    text-decoration: none;
    color: var(--182551, #182551);
    font-size: 1.8rem;
    line-height: 3rem;
    margin-left: 3rem;
}

.header-link:hover {
    text-decoration: none;
    color: var(--182551, #182551);

    border-bottom: 2px solid #009b3a;
}

/* FOOTER */
.footer {
    background-color: #182551;
}

.footer-logo {
    background-color: #fff;
    padding: 1.6rem;
}

.footer-links-list {
    list-style: none;
    display: flex;
    align-items: center;
}

.footer-links-list__item {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 3rem;
    margin-left: 3rem;
}

.footer-links-list__item:hover {
    text-decoration: none;
    color: #fff;
    border-bottom: 2px solid #009b3a;
}

/* VITRINE */
.vitrine-interna {
    padding: 7.2rem 0;
    flex-shrink: 0;
    background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.4) 0%,
            rgba(0, 0, 0, 0) 100%
        ),
        #182551;
}

.heading-secondary {
    color: #fff;
    font-size: 6rem;
    font-weight: 700;
}

.btn-vitrine {
    display: inline-block;
    border-radius: 5rem;
    padding: 16px 40px;
    background: #fbdd00;

    color: var(--182551, #182551);
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 3rem;
    text-transform: uppercase;
    text-decoration: none;
}

.btn-vitrine:hover {
    text-decoration: none;
}

/* COURSE CARDS */

.course-card {
    border-radius: 0.5rem;
    background: var(--gray-6, #f2f2f2);
    height: 100%;
}

.course-card__header {
    border-radius: 0.5rem 0.5rem 0rem 0rem;
    padding: 1rem;
    background: #ef5da8;
}
.curso-juridico .course-card__header {
    background: var(--orange, #f2994a);
}
.curso-lideranca .course-card__header {
    background: var(--green-2, #27ae60);
}
.curso-educacao .course-card__header {
    background: var(--blue-2, #2d9cdb);
}
.curso-turismo .course-card__header {
    background: #c058ff;
}
.curso-saude .course-card__header {
    background: #ff3c11;
}
.curso-rh .course-card__header {
    background: #c4b000;
}
.curso-assistencia-social .course-card__header {
    background: #1b00c4;
}
.curso-comunicacao .course-card__header {
    background: #bf7300;
}

.course-card__header-title {
    color: #fff;
    font-size: 1.6rem;
    line-height: 3rem;
    text-transform: uppercase;
    margin: 0;
}

.course-card__body {
    padding: 1.6rem 2.4rem;
}

.course-card__body-title {
    color: var(--182551, #182551);
    font-size: 2rem;
    font-weight: 700;
    line-height: 2.4rem;
    margin-bottom: 1.5rem;
}

.course-card__body ul {
    list-style: none;
}

.course-card__body ul li {
    font-size: 1.4rem;
    line-height: 1.8rem;
    margin-bottom: 1rem;
}

.course-card__body ul li::before {
    content: "";
    display: inline-block;
    background-image: url("../img/icons/list-before.svg");
    height: 1rem;
    width: 0.7rem;
    margin-right: 0.8rem;
}

/* HOME SECTION */

.home-section {
    padding: 4rem 0;
}

.btn-incricao-curso {
    color: var(--182551, #182551);
    font-size: 12px;
    font-family: Inter;
    font-style: normal;
    font-weight: 600;
    line-height: 16px;
    border-radius: 50px;
    border: 1px solid var(--182551, #182551);
    padding: 10px 30px;
    margin-top: 20px;
}
.btn-incricao-curso:hover {
    color: var(--gray-6, #f2f2f2);
    background: var(--182551, #182551);
}

.modal-header {
    background-color: #182551;
    padding: 1.6rem;
}

.modal-header .close {
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
}

/* PROGRAMAÇÃO SECTION */

.programacao-section {
    background: var(--gray-6, #f2f2f2);
    padding: 6rem 0;
}

.heading-tertiary {
    color: var(--182551, #182551);
    font-size: 3rem;
    font-weight: 700;
    line-height: 6rem;
    text-transform: uppercase;
    text-align: center;
}

.heading-tertiary::after {
    content: "";
    display: block;
    width: 6.4rem;
    height: 2px;
    border-radius: 15px;
    background: #009b3a;
    margin: 0 auto;
}

.programacao-card {
    border-radius: 5px;
    background: #fff;
    box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.1);
    padding: 4rem 3.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.programacao-card__date-box {
    border-radius: 5px;
    border: 1px solid var(--gray-4, #bdbdbd);
    padding: 0 0.8rem;
    margin-right: 2rem;
}

.programacao-card__date {
    color: var(--orange, #f2994a);
    font-size: 5.4rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
}

.programacao-card__date span {
    display: block;
    font-size: 3rem;
}

.programacao-card__text {
    color: var(--182551, #182551);
    font-size: 20px;
}

@media (max-width: 767px) {
    /* HEADER */
    .header {
        padding: 1rem 0;
    }
    .navbar-collapse.header-links-list {
        position: absolute;
        right: -2rem;
        top: 2rem;
        padding: 6rem 7.2rem;
        border-radius: 1rem;
        background: var(--182551, #182551);
    }
    .navbar-closer {
        position: absolute;
        top: 0;
        left: 0;
        padding: 1rem 1.6rem;
        border-radius: 1rem 0rem;
        background: #009b3a;
        border: none;
        color: #fff;
        font-size: 3rem;
        font-weight: 700;
        line-height: 3rem;
    }
    .header-link {
        color: #fff;
        font-weight: 700;
    }
    .header-link:hover {
        color: #fff;
    }

    .vitrine-interna,
    .home-section {
        padding: 3rem 0;
    }
    section.vitrine-interna img {
        width: 6rem;
    }
    .heading-secondary {
        font-size: 2.2rem;
        margin: 15px 0 !important;
    }
    .btn-vitrine {
        padding: 1rem 3rem;
        font-size: 14px;
        font-weight: 700;
        line-height: 14px;
    }

    /* FOOTER */
    .footer-links-list {
        flex-direction: column;
        padding: 2.4rem 0;
        margin: 0;
    }
    .footer-links-list__item {
        margin-left: 0;
        margin-top: 1.6rem;
    }

    .col-6.col-md-4.mb-5 {
        padding: 0 5px 0 10px;
        margin-bottom: 10px !important;
    }
    .col-6.col-md-4.mb-5:nth-child(even) {
        padding: 0 10px 0 5px;
    }
    .course-card__header {
        padding: 0.8rem 3px;
    }
    .course-card__header-title {
        font-size: 12px;
        line-height: 14px;
    }
    .course-card__body {
        padding: 1rem 5px;
    }
    .course-card__body-title {
        font-size: 12px;
        line-height: 14px;
        margin-bottom: 1rem;
    }
    .course-card__body ul li {
        font-size: 11px;
        line-height: 13px;
        margin-bottom: 0.5rem;
    }
    .btn-incricao-curso {
        padding: 7px 20px;
        margin: 10px auto 0;
        line-height: 11px;
        font-size: 11px;
    }
}
