@font-face {
    font-family: 'Unimed Ex';
    src: url('../fonts/UnimedSlab-ExtraBold.otf') format('opentype');
}
@font-face {
    font-family: 'Unimed B';
    src: url('../fonts/UnimedSlab-Bold.otf') format('opentype');
}
@font-face {
    font-family: 'Unimed SB';
    src: url('../fonts/UnimedSlab-SemiBold.otf') format('opentype');
}
@font-face {
    font-family: 'Unimed R';
    src: url('../fonts/UnimedSlab-Regular.otf') format('opentype');
}

html {
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: 'Unimed SB';
    font-weight: 400;
    line-height: 22px;
    font-size: 16px;
    overflow-x: hidden;
    color: #333;
}

hr {
    margin: 100px 0;
    color: #999;
}

h1,
h2,a
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}
.btn-whatsapp-flutuante {
    position: fixed;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 64px;
    height: 64px;
    background-color: #35D56D;
    border-radius: 50%;
    right: 70px;
    bottom: 70px;
}
.btn-whatsapp-flutuante img {
    width: 42px;
}

.box-social .btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    background-color: #fff;
    width: 48px;
    height: 48px;
}
.box-social .btn-social svg {
    width: auto;
    max-height: 20px;
}

.btn-primario,
.btn-secundario {
    font-size: 16px;
    text-decoration: none;
    padding: 20px 32px;
    border-radius: 6px;
    font-family: 'Unimed R';
    text-transform: uppercase;
    transition: all .3s;
    cursor: pointer;
    z-index: 2;
}
.btn-primario {
    background-color: #E86339;
    border: solid 1px #d34b21;
    color: #fff;
}
.btn-primario:hover {
    background-color: #d34b21;
    color: #fff;
}
.btn-secundario {
    background-color: #fff;
    border: solid 1px #DFE3EB;
    color: #0A1931;
}
.btn-secundario:hover {
    background-color: #fff;
    border: solid 1px #E86339;
    color: #0A1931;
}

.logo img {
    max-width: 120px;
}

header {
    background-color: transparent;
    padding: 24px 0;
    position: relative;
    z-index: 2;
    border-bottom: solid 1px #EEEEEE;
}
header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header ul {
    list-style: none;
    display: flex;
    margin: 0;
}
header ul li {
    margin: 0 20px;
}
header ul li:last-child {
    margin-right: 0;
}
header ul li a {
    font-size: 16px;
    text-transform: uppercase;
    color: #0A1931;
    text-decoration: none;
    z-index: 2;
    border-bottom: solid 2px transparent;
    transition: all .3s;
    padding-bottom: 4px;
}
header ul li a:hover {
    color: #0A1931;
    border-bottom: solid 2px #E86339;
}

.titulo-secao h2 {
    font-family: 'Unimed B';
    font-size: 48px;
    color: #0A1931;
    margin-bottom: 70px;
}



.conteudos {
    padding: 80px 0;
}

.card-post,
.card-evento {
    border-radius: 8px;
    padding: 22px;
    background-color: #ffffff;
    text-decoration: none;
    border: solid 1px #DDDDDD;
    display: flex;
    flex-direction: column;
}
.card-post h3,
.card-evento h3 {
    font-family: 'Unimed R';
    font-size: 21px;
    color: #0A1931;
    margin-bottom: 15px;
}
.card-post img {
    width: 100%;
    max-width: 100%;
    height: 265px;
    object-fit: cover;
    border-radius: 5px;
}
.card-post p,
.card-evento p {
    font-family: 'Unimed SB';
    font-size: 14px;
    margin-bottom: 0;
    text-transform: uppercase;
    color: #E86339;
    position: relative;
}
.card-post p span {
    opacity: 0;
    transition: all .3s;
    display: inline-block;
    
}
.card-post p svg {
    transition: all .3s;
    position: absolute;
    z-index: 2;
    left: 0;
}
.card-post:hover p span {
    opacity: 1;
}
.card-post:hover p svg {
    left: 90px;
}
.card-post .info-post,
.card-evento .info-post {
    font-family: 'Unimed R';
    font-size: 14px;
    color: #737D8C;
    margin-top: 22px;
    margin-bottom: 5px;
}

.card-post.post-list {
    border-radius: 0;
    border: 0;
    border-bottom: solid 1px #DDDDDD;
    padding: 22px 0 12px 0;
}
.card-post.post-list .info-post {
    margin-top: 0px;
}

.card-evento {
    flex-direction: row;
    align-items: center;
}
.card-evento img {
    width: 420px !important;
    height: 420px;
    max-width: 100%;
    object-fit: cover;
}
.card-evento .box-info {
    width: calc(100% - 435px);
    display: flex;
    flex-direction: column;
    margin-left: 15px;
}
.card-evento .info-post {
    margin-top: 0;
}
footer {
    background-color: #F0AEA0;
    padding: 45px 0;
}
footer ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding-left: 0;
    margin-left: 0;
}
footer ul li {
    margin: 0 20px;
    margin-bottom: 0;
}
footer ul li:last-child {
    margin-right: 0;
}
footer ul li a {
    font-size: 18px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    z-index: 2;
    border-bottom: solid 2px transparent;
    transition: all .3s;
    padding-bottom: 4px;
}
footer ul li a:hover {
    color: #fff;
    border-bottom: solid 2px #E86339;
}
footer .box-social .btn-social {
    border: solid 1px #E86339;
    margin-right: 12px;
}
footer .box-social .btn-social img {
    max-width: 25px;
    max-height: 25px;
}
.bg-footer {
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    height: 25px;
}

@media (max-width: 1400px) {
    body::after {
        height: 85vh;
    }

    .hero {
        height: calc(85vh - 156px);
    }
    .hero .box-info h1 {
        font-size: 68px;
    }

    .sobre::before {
        width: 900px;
        height: 900px;
    }

    .card-curso img {
        height: 370px;
    }
}
@media (max-width: 1200px) {
    body::after {
        height: 756px;
    }

    hr {
        margin: 60px 0;
    }

    .btn-primario,
    .btn-secundario {
        padding: 15px 27px;
    }

    .titulo-secao h2 {
        font-size: 38px;
        margin-bottom: 35px;
    }
    
    .hero {
        height: 600px;
    }
    .hero::before {
        width: 520px;
        height: 600px;
        left: -200px;
    }
    .hero .box-info h1 {
        font-size: 50px;
    }
    .hero .box-info p {
        font-size: 18px;
    }

    .sobre::before {
        width: 700px;
        height: 700px;
    }

    .cursos {
        padding: 40px 0;
    }
    .card-curso img {
        height: 310px;
    }
    .card-curso .box-info h3 {
        font-size: 20px;
    }
    .card-curso .box-info p {
        font-size: 13px;
    }

    .btn-whatsapp-flutuante {
        bottom: 3rem;
        right: 3rem;
        width: 54px;
        height: 54px;
    }
    .btn-whatsapp-flutuante img {
        width: 37px;
    }
}
@media (max-width: 992px) {
    .btn-primario,
    .btn-secundario {
        padding: 15px 24px;
        font-size: 15px;
    }

    header ul {
        display: none;
        flex-direction: column;
        position: fixed;
        background: #fff;
        width: 100%;
        height: 100%;
        z-index: 3;
        left: 0;
        top: 0;
    }

    header ul.active {
        display: flex;
    }

    .hero {
        height: 600px;
        background-position: right bottom;
        background-repeat: no-repeat;
        background-size: 55%;
        position: relative;
    }
    .hero::before {
        width: 430px;
        height: 430px;
        left: -165px;
    }
    .hero .box-img {
        background-size: 0;
    }

    .sobre .numero h3 {
        font-size: 48px;
    }
    .sobre .numero p {
        font-size: 17px;
        line-height: 20px;
        margin-bottom: 0;
    }

    .card-evento {
        flex-direction: column;
    }
    .card-evento img {
        width: 100%;
        height: 275px;
    }
    .card-evento .box-info {
        width: 100%;
    }
    .card-evento .info-post {
        margin-top: 22px;
    }
}
@media (max-width: 768px) {
    body::after {
        width: 16.6%;
        display: none;
    }

    .btn-primario,
    .btn-secundario {
        padding: 12px 21px;
        font-size: 14px;
    }

    .sobre .box-info p {
        font-size: 16px;
        padding-right: 0;
        line-height: 21px;
    }
    .sobre .numero h3 {
        font-size: 32px;
    }
    .sobre .numero p {
        font-size: 15px;
        line-height: 18px;
        padding-left: 7px;
    }

    .card-curso img {
        height: 390px;
    }

    footer ul {
        flex-direction: column;
        text-align: center;
        margin: 50px 0;
    }
    footer ul li {
        margin: 10px 0;
    }
    
}