@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap");

:root {
    --bs-font-sans-serif: "Nunito Sans", system-ui, -apple-system, "Segoe UI",
        Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial,
        sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
        "Noto Color Emoji";

    --cor-0: #f5f3ee;
    --cor-1: #405b8d;
    --cor-2: #ea5e71;
    --cor-3: #4f84bf;
}

body {
    background-color: var(--cor-0);
}
body.active,
html.active {
    overflow: hidden;
}
a {
    text-decoration: none;
}
.site {
    overflow-x: hidden;
}

header {
    position: fixed;
    width: 100%;
    z-index: 10;
    padding: 25px 0;
    transition: 0.3s;
}
header .logo {
    gap: 18px;
    text-align: center;
}
header h1 span,
header h1 a {
    margin-bottom: 0;
    color: white;
    font-size: 22px;
    font-weight: 700;
}
header h1 strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--cor-2);
}
header small, footer small {
    font-size: 12px;
    font-weight: 300;
    color: white;
    margin-left: 18px;
    line-height: 32px;
}

/*remove margin-left for first small element in header*/
header small:first-child {
    margin-left: 0;
}

header ul {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 40px;
}
header li a {
    font-size: 17.3px;
    color: white;
    font-weight: 700;
}
header li a:hover,
header li a.active {
    color: var(--cor-2);
}
header.scroll {
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
    background-color: var(--cor-1);
}

/**/
.banner {
    background: url("../imagens/banner-01-bg.png") top center no-repeat;
    background-size: cover;
    height: 785px;
}
.banner .info {
    gap: 40px;
    height: 600px;
    padding-top: 100px;
}
.banner .titulo {
    font-size: 50px;
    font-weight: 700;
    color: white;
    line-height: 58px;
}
.banner .frase {
    font-size: 35px;
    font-weight: 400;
    color: white;
    line-height: 42px;
}
.banner .imagem {
    gap: 40px;
    height: 600px;
    padding-top: 100px;
    position: relative;
}
.banner .imagem::before {
    content: "";
    display: block;
    width: 300px;
    height: 35px;
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
    border-radius: 50%;
    background-color: #1c0d5c;
    filter: blur(15px);
}
.banner .mascote {
    position: absolute;
    animation: mymove 3s infinite;
}

@keyframes mymove {
    0% {
        transform: rotate(0deg);
    }
    5% {
        transform: rotate(3deg);
    }
    6% {
        transform: rotate(-3deg);
    }
    7% {
        transform: rotate(0deg);
    }
    8% {
        transform: rotate(3deg);
    }
    9% {
        transform: rotate(-3deg);
    }
    10% {
        transform: rotate(0deg);
    }
    100% {
    }
}

/**/
.sobre h3 {
    color: var(--cor-1);
}
.sobre .texto {
    color: var(--cor-1);
}
.sobre .info {
    height: 100%;
}

/**/
.video h3 {
    color: var(--cor-1);
}

/**/
.blog {
    background-color: var(--cor-3);
}
.blog h3 {
    color: white;
}
.blog .box {
    width: 285px;
    height: auto;
    padding: 30px;
    border-radius: 15px;
    background-color: white;
    overflow: hidden;
    gap: 20px;
    line-height: 20px;
    margin: 0 auto;
}
.blog .box .imagem {
    width: 100%;
    height: 145px;
    overflow: hidden;
}
.blog .box .imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog .box strong {
    font-size: 18px;
    color: var(--cor-1);
    display: inline-block;
    height: 40px;
    overflow: hidden;
}
.blog .box .texto {
    color: black;
    line-height: 18px;
    height: 225px;
    overflow: hidden;
    font-size: 14px;
}
.blog .box .area-link a,
.link {
    display: inline-block;
    font-size: 16px;
    line-height: 16px;
    font-weight: 800;
    color: var(--cor-1);
    padding: 0 0 10px 40px;
    border-bottom: 2px solid #ea5e7163;
    border-left: 2px solid #ea5e7163;
    border-bottom-left-radius: 34px;
}
.blog .box .area-link a:hover,
.link:hover {
    color: var(--cor-3);
}
.blog 

/**/
.embed {
    display: flex;
    justify-content: center;
}
.embed iframe {
    overflow: hidden;
    border-radius: 20px;
    max-width: 810px;
    width: 100%;
    height: 475px;
}
.botao {
    display: table-cell;
    vertical-align: middle;
    background-color: var(--cor-2);
    color: white;
    font-size: 16px;
    line-height: 16px;
    font-weight: 800;
    width: 285px;
    height: 56px;
    border-radius: 18px;
    text-align: center;
}

/**/
.teleconsultas .info h3 {
    color: var(--cor-1);
}
.teleconsultas .info .texto {
    color: var(--cor-1);
}
.teleconsultas .info .texto a {
    color: var(--cor-1);
    font-weight: 700;
}

/**/
footer {
    padding-top: 210px;
}
footer .contatos {
    gap: 45px;
}
footer .contato {
    gap: 12px;
}
footer .logo strong {
    font-size: 24px;
    font-weight: 700;
    color: white;
}
footer .logo span {
    font-size: 16px;
    font-weight: 700;
    color: white;
}
footer address {
    color: white;
    margin-bottom: 0;
}
footer a {
    color: white;
}
footer .social strong {
    font-size: 16px;
    font-weight: 700;
    color: white;
}
footer .bg {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    width: 100%;
}

footer .social {
    gap: 20px;
}

/**/
h2 {
    font-size: 17.3px;
    color: var(--cor-2);
    font-weight: 700;
}
h3 {
    font-size: 52px;
    line-height: 58px;
    font-weight: 700;
}
.texto {
    font-size: 16px;
    font-weight: 300;
    line-height: 26px;
}

/*-xl*/
@media (max-width: 1399.98px) {
}

/*-lg*/
@media (max-width: 1199.98px) {
    footer .bg img {
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        position: absolute;
    }
}

/*-md*/
@media (max-width: 991.98px) {
    footer {
        padding-top: 106px;
    }
    footer .social {
        justify-content: center;
    }
}

/*-sm*/
@media (max-width: 767.98px) {
    #bt-menu {
        border: none;
        background-color: var(--cor-2);
        color: var(--cor-1);
        width: 40px;
        height: 40px;
        font-size: 28px;
    }
    #bt-menu .bi-x {
        display: none;
    }
    #bt-menu.active .bi-x {
        display: inline;
    }
    #bt-menu.active .bi-list {
        display: none;
    }
    header li a {
        font-size: 28px;
    }
    .banner .info {
        height: 220px;
        gap: 15px;
    }
    .banner .titulo {
        font-size: 36px;
        line-height: 40px;
    }
    .banner .frase {
        font-size: 25px;
        line-height: 32px;
    }
    .banner .imagem {
        padding-top: 40px;
        height: auto;
    }
    .banner .mascote {
        position: static;
    }
    .banner .mascote img {
        max-width: 100%;
    }

    .sobre .imagem img {
        max-width: 100%;
    }
    .blog .box .texto {
        height: auto;
        margin-bottom: 20px;
    }

    .teleconsultas .imagem img {
        max-width: 100%;
    }

    .teleconsultas .cta {
        text-align: center;
    }
    .teleconsultas .cta a {
        width: 100%;
        display: block;
        line-height: 56px;
    }

    footer {
        padding-top: 0;
        padding-top: 50px;
        background: var(--cor-1);
    }

    h3 {
        font-size: 38px;
        line-height: 46px;
    }

    .embed iframe {
        height: 300px;
    }
}

/*-xs*/
@media (max-width: 575.98px) {
    header .logo {
        text-align: left;
    }
    header .logo small {
        margin-left: 0;
        line-height: 18px;
        display: block;
        width: 100%;
    }
    header ul {
        position: fixed;
        z-index: -1;
        top: 0;
        left: -101vw;
        height: 100vh;
        width: 100vw;
        flex-direction: column;
        background: var(--cor-1);
        justify-content: center;
        transition: 0.3s;
    }
    header ul.active {
        left: 0;
    }

    .banner {
        height: 795px;
    }
    .banner .info {
        height: auto;
        padding-top: 125px;
    }
    .banner .imagem {
        padding-top: 0;
    }
    .embed iframe {
        height: 210px;
    }
}
