<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@font-face {
    font-family: 'poppinsb';
    src: url('../assets/fonts/Poppins-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'poppins';
    src: url('../assets/fonts/Poppins-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'poppinsm';
    src: url('../assets/fonts/Poppins-Medium.ttf') format('truetype');
}


/* estilo desktop */

.titulo_container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 180px;
}

.titulo_container h1 {
    font-family: 'poppinsb';
    text-align: center;
    font-size: 50px;
    color: #000000;
}


/* pesquisa */

.search-container {
    display: flex;
    flex-direction: column;
    align-items: end;
    max-height: 0;
}

.search-container .pesquisa_index {
    font-family: 'poppins';
    display: flex;
    align-items: center;
    justify-content: right;
    position: relative;
    top: -105px;
    margin-right: 30px;
    width: 300px;
    height: 40px;
}

.search-container .pesquisa_index input {
    font-family: 'poppins';
    padding: 5px;
    width: auto;
    height: 20px;
    border: solid 1px #21456e;
    border-radius: 5px;
    margin-right: 20px;
}

.search-container .pesquisa_index button {
    background-color: #21456e;
    align-items: center;
    height: 30px;
    color: #fff;
    width: 100px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-container .pesquisa_index button:hover {
    background-color: #386191;
}


/* blog saude */

.blog-cards {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
}

.card_blog {
    font-family: 'poppins';
    display: flex;
    position: relative;
    justify-content: center;
    width: 400px;
    height: auto;
    padding: 10px;
    overflow: hidden;
    margin: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.card_blog .card {
    height: auto;
    align-items: center;
    justify-content: center;
    position: relative;
}

.card_blog .card .imagem {
    margin: 0;
    top: -10px;
    position: relative;
    width: 420px;
    height: auto;
    transition: transform 1s ease;
}

.card_blog .card:hover .imagem {
    transform: scale(1.1);
}

.card_blog .card .tituloblog {
    font-family: 'poppinsb';
    margin: 10px;
    text-align: center;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card_blog .card .info_cad {
    font-family: 'poppins';
    font-size: 14px;
    display: flex;
    justify-content: center;
    margin: 10px;
}

.card_blog .card .info_cad p {
    margin-left: 10px;
}

.card_blog .card .farmattext {
    text-align: justify;
    margin: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 12;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* paginacao */

.pagination {
    font-family: 'poppins';
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    padding-bottom: 30px;
}

.pagination a {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 5px;
    background-color: #f2f2f2;
    color: #21456e;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.pagination a:hover {
    color: #fff;
    background-color: #386191;
}

.pagination .active {
    background-color: #21456e;
    color: #ffffff;
}

.pagination .disabled {
    opacity: 0.5;
    pointer-events: none;
}

.pagination .previous,
.pagination .next {
    padding: 8px 12px;
    background-color: #21456e;
    color: #ffff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.pagination .previous:hover,
.pagination .next:hover {
    background-color: #386191;
}


/* estilo mobile */

@media screen and (max-width:1100px) {
    .container-blogsaude {
        width: 100%;
    }
}

@media screen and (max-width:990px) {
    /* pesquisa */
    .search-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-height: 0;
    }
    .search-container .pesquisa_index {
        font-family: 'poppins';
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        top: -160px;
        margin-right: 0;
        width: 300px;
        height: 40px;
    }
}

@media screen and (max-width:880px) {
    .card_blog {
        width: 300px;
    }
    .card_blog .card .imagem {
        width: 320px;
    }
}

@media screen and (max-width:680px) {
    .card_blog {
        width: 395px;
    }
    .card_blog .card .imagem {
        width: 415px;
    }
}

@media screen and (max-width:500px) {
    .titulo_container h1 {
        font-size: 40px;
        margin-top: 80px;
    }
}

@media screen and (max-width:440px) {
    .card_blog {
        width: 300px;
    }
    .card_blog .card .imagem {
        width: 320px;
    }
}

@media screen and (max-width:330px) {
    .card_blog {
        width: 100%;
    }
    .card_blog .card .imagem {
        width: 100%;
    }
}</pre></body></html>