body {
    font-family: 'Poppins', sans-serif; /* Usar Poppins como fonte principal */
    font-weight: 300; /* Peso light para o corpo */
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

h2, h4 {
    margin: 0;
}

#header {
    position: fixed;
    top: 0;
    left: 0; 
    right: 0; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    background: #fa70ee;
    color: #ffffff;
    padding: 10px 20px;
    z-index: 1000; 
}

header h1, h2 {
    margin: 0;
}

.articles-container {
    display: flex; 
    flex-direction: column;
    gap: 20px;
}

.image-container-reader{
    max-width: 100px;
    border-radius: 10px;
}

.image-container-news{
    max-width: 200px;
    border-radius: 10px;
}


.image-text-container {
    display: flex;
    align-items: center;
    gap: 5px;
    width: 100%;

}

.news {
    margin-top: 20vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}

.news_2 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.news_3 {
    margin-top: 10vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}

.news_4 {
    margin-top: 20vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}

.news_5 {
    margin-top: 20vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}

.news_6{
    margin-top: 20vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}

.news_7 {
    margin-top: 20vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-left: 300px;
    margin-right: 300px;
}

.news_7 h3{
    font-size: 16px;
}

.news_7 strong{
    font-size: 16px;
}

.container {
    width: 100%; 
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.news-item {
    display: flex;
    align-items: center;
}

.read-more {
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #ffffff; 
    transform: scale(1.1);
}

.read-more-reader {
    display: inline-block;
    text-decoration: none;
    color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.read-more-reader:hover {
    color: #ffffff; 
    transform: scale(1.1);
}
.footerDev {
    background: white;
    color: #fa70ee;
    text-align: center;
    padding: 5px 0;
    position: relative;
    bottom: 0;
    width: 100%;
    border: 1px solid #fa70ee;
}

.center, .left, .right {
    margin: 0 15px; 
}

.menu {
    display: none; 
    flex-direction: column; 
    position: absolute;
    top: 50px; 
    left: 0;
    background-color: #fa70ee;
    padding: 10px;
    border-radius: 5px;
    z-index: 1000; 
}

.menu.active {
    margin-top: 25px;
    margin-left: 80px;
    display: flex;
    border: 2px solid #ab71a6;
    border-radius: 5px;
}

.menu-toggle {
    margin-left: 20px;
    cursor: pointer;
}

.menu ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu ul li {
    margin: 10px 0;
}

.menu ul li a {
    color: #ffffff;
    text-decoration: none;
    padding: 10px; 
    transition: background-color 0.3s; 
}

/* Efeito hover */
.menu ul li a:hover {
    background-color: white; 
    color: #fa70ee; 
}

.search-container {
    position: relative;
    display: inline-block; 
}

.search-input {
    width: 200px;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 20px;
    border: none;
}

#searchButton {
    position: absolute;
    right: 5px; 
    top: 40%;
    transform: translateY(-50%); 
    border: none; 
    background: transparent; 
    cursor: pointer; 
}

.title{
    font-size: 15px;
    margin: 0;
    color: white;
    font-weight: bold;
}

.description {
    font-size: 14px;
    margin: 0;
    color: white;
    font-style: normal;
    font-weight: 1;
}


.div-resume-1 {
    position: relative;
    width: 600px;
    height: 150px;
    background: #fa70ee;
    border: 2px solid #dddddd;
    border-radius: 20px;
    margin: 20px;
    padding: 20px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-out;
    z-index: 1;
    cursor: pointer;
}

.div-resume-1:hover{
    background-color: #526197; 
    transform: scale(1.1);
}

.div-resume-1-clone {
    height: auto;
    position: fixed;
    display: none; 
    background: #fa70ee;
    border: 2px solid #dddddd;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease-out;
    z-index: 999;
    max-height: 80vh;
    overflow-y: auto;
    min-height: 500px;
    top: 10px;
    bottom: 10px;
}

.div-resume-1-clone:hover{
    background-color: #fa70ee; 
    cursor: auto;
}

/* Exemplo de efeito de transição */
.div-resume-1-clone {
    transition: all 0.3s ease-out;
}

.div-resume-1:hover + .div-resume-1-clone {
    height: auto;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.2); 
}

.close-button {
    margin-bottom: 20px;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    background: white;
    color: black;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.close-button:hover {
    background: #ff0000;
}

/* barra de rolagem */
.div-resume-1-clone::-webkit-scrollbar {
    width: 10px;
}

.div-resume-1-clone::-webkit-scrollbar-thumb {
    background-color: #8392c9; 
    border-radius: 20px; 
    border: 3px solid #F4F4F4; 
}

.div-resume-1-clone::-webkit-scrollbar-thumb:hover {
    background-color: #667bca;
}

.div-resume-1-clone::-webkit-scrollbar-track {
    background-color: #F4F4F4; 
    border-radius: 20px; 
}

.div-resume-1-clone::-webkit-scrollbar-track:hover {
    background-color: #E0E0E0;
}

.div-resume-1-clone::-webkit-scrollbar-button {
    background-color: transparent; /* Cor dos botões de rolagem */
}

.div-resume-1-clone::-webkit-scrollbar-corner {
    background-color: transparent; /* Cor do canto onde as barras se encontram */
}

.image-container-resume {
    display: flex; /* alinhar horizontalmente */
    align-items: center;
    justify-content: flex-start;
    gap: 10px; 
}

.image-container-resume img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
}

.image-container-resume h3,
.image-container-resume h5 {
    margin: 0;
    padding: 0;
    color: white;
}

.image-container-resume hr {
    border: none;
    border-top: 1px solid #fff;
    flex-grow: 1; /* Faz a linha se esticar */
    margin: 0;
}

.section-resume {
    margin-top: 5vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}


.article_primary {
    position: relative;
    background: #fa70ee;
    border: 2px solid #dddddd;
    border-radius: 20px;
    margin: 20px;
    padding: 50px;
    width: 1000px;
    height: 150px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.article_primary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.article_primary h6, h2, h4 {
    position: absolute; 
    z-index: 2; 
    color: white; 
    padding: 10px;
    max-width: 90%;
    border-radius: 5px;
}

.article_primary h6 {
    margin-left: 30px;
    top: 2%;
    left: 20px;
    font-size: 8px;
}
.article_primary h4 {
    margin-left: 30px;
    top: 70%;
    left: 20px;
    font-size: 12px;
}

.article_primary h2 {
    margin-left: 30px;
    top: 60%; 
    left: 20px;
    font-size: 20px;
    transform: translateY(-50%);
    width: 80%;
}

.article_secundary h4 {
    top: 90%;
    left: 20px;
    font-size: 10px;
    transform: translateY(-50%);
    width: 80%;
}

.image-container {
    position: absolute; /* A imagem vai ocupar toda a div */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    max-width: 100%;
    display: flex;
    justify-content: center;
}

.text-info-img{
    margin-left: 10px;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.article_secundary {
    position: relative;
    background: #fa70ee;
    border: 2px solid #dddddd;
    border-radius: 20px;
    padding: 0;
    width: 400px;
    height: 450px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}


.article_secundary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.article_secundary h6, h2, h4 {
    position: absolute; 
    z-index: 2; 
    color: white; 
    padding: 10px;
    max-width: 90%;
    border-radius: 5px;
}

.article_secundary h6 {
    top: 5%;
    left: 20px;
    font-size: 8px;
}

.article_secundary h2 {
    top: 50%; 
    left: 20px;
    font-size: 20px;
    transform: translateY(-50%);
    width: 80%;
}

.article_secundary h4 {
    top: 80%;
    left: 20px;
    font-size: 10px;
    transform: translateY(-50%);
    width: 80%;
}

.article_tertiary {
    position: relative;
    background: #fa70ee;
    border: 2px solid #dddddd;
    border-radius: 20px;
    padding: 0;
    width: 400px;
    height: 200px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.article_tertiary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.article_tertiary h6, h2 {
    position: absolute; 
    z-index: 2; 
    color: white; 
    padding: 10px;
    max-width: 90%;
    border-radius: 5px;
}

.article_tertiary h6 {
    top: 5%;
    left: 20px;
    font-size: 8px;
}

.article_tertiary h2 {
    top: 80%; 
    left: 20px;
    font-size: 20px;
    transform: translateY(-50%);
    width: 80%;
}

.article_quaternary {
    background: white;
    border: 2px solid #fa70ee;
    border-radius: 20px;
    padding: 50px;
    width: 200px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.article_quaternary_h1{
    margin-left: -10px;
    font-size: 15px;
    color: #fa70ee;
}

.article_quaternary_h{
    font-size: 10px;
    color: #fa70ee;
}

.article_quaternary_h2{
    max-width: 1000px;
    font-size: 18px;
    color: #fa70ee;
}

.article_quaternary_h3{
    font-size: 13px;
    color: grey;
}

.container-div-news_2{
    margin-top: 40px;
    margin-left: 10px;
}


.content-container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
}

.text-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 60%;
    padding-right: 20px;
}

.footerMenu {
    min-height: 45vh;
    display: flex; 
    justify-content: center;
    align-items: center; 
    background: #fa70ee;
    color: #ffffff;
}

.div-footerMenu {
    max-width: 80%;
    display: flex; 
    justify-content: space-between;
    align-items: start;
}

.margin {
    margin: 0 50px;
}

.margin2{
    margin: 0 150px;
}

.margin3 {
    margin: 2 50px;
}

.noticia1{
    align-items: center;
    width: 1100px;
}

.noticia1 h1 {
    margin: 0 0px;
    color: #fa70ee;
    font-size: 35px;
}

.noticia1 h3 {
    color: #5f5f5f;
    font-size: 15px;
}

.article_primary_noticia {
    margin-left: 10%;
    position: relative;
    background: #fa70ee;
    border: 2px solid #dddddd;
    border-radius: 20px;
    padding: 50px;
    width: 700px;
    height: 400px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.article_primary_noticia img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.article_primary_noticia video {
    border-radius: 20px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.article_quaternary_2{
    margin-top: 40vh;
    background: white;
    border: 2px solid #fa70ee;
    border-radius: 20px;
    padding: 50px;
    width: 200px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.highlight {
    color:white;
    background-color: #ab71a6;
    transition: background-color 0.3s ease; /* Transição suave */
}

.popup {
    display: none; /* Escondido */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.popup-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 2px solid #fa70ee;
    border-radius: 20px;
    width: 80%;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.highlight_buscar {
    background-color: #1f2c58;
}

.hidden {
    display: none;
}

.strong-info{
    font-weight: 600;
    font-size: 20px;
    color: #fa70ee;
}

.strong-info2{
    font-weight: 1200;
    font-weight: bold; 
    color: black;
}

@media screen and (max-width: 1620px) and (max-height: 9200px){
    .div-resume-1-clone {
        position: absolute; /* ou relative, conforme necessário */
        max-height: 100px;
        margin-top: 10vh;
        margin-left: -5px;
    }
}

@media screen and (max-width: 1460px) and (max-height: 920px){
    .div-resume-1-clone {
        position: absolute; /* ou relative, conforme necessário */
        max-height: 100px;
        margin-top: 10vh;
        margin-left: -5px;
    }
}

@media screen and (max-width: 1370px) and (max-height: 770px){
    .article_quaternary_2{
        margin-top: 12vh;
    }

    .div-resume-1-clone {
        position: absolute; /* ou relative, conforme necessário */
        bottom: 20px;
        margin-top: 25vh;
        margin-left: -5px;
    }

    .news_7 {
        margin-left: 200px;
        margin-right: 200px;
    }
}

@media(max-width:850px){

    .header{
        max-width: 100%;
    }

    .margin {
        margin: 0 0px; 
    }
    
    .margin2{
        margin: 0 0px;
    }

    .legend{
        display: none;
    }

    .div-footerMenu {
        max-width: 80%;
        display: flex; 
        justify-content: space-between;
        align-items: start;
    }
    .search-input {
        width: 100px;
    }

    .button-search-input{
        display: none;
    }

    .article_primary_noticia{
        margin-left: 0px;
        background: #fa70ee;
        border: 2px solid #dddddd;
        border-radius: 20px;
        padding: 50px;
        width: 250px;
        height: 200px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .popup{
        margin-top: 14vh;
    }

    body {
        margin-left: 2vh;
        max-width: 90%;
    }

    .news{
        max-width: 80%;
    }
    
    .news_2 {
        max-width: 80%;
    }

    .news_6{
        margin-top: 8vh;
        margin-left: 20px;
        max-width: 80%;
    }
    
    .article_primary{
        align-items: center;
        max-width: 350px; 
        width: 80%; 
    }

    .article_tertiary{
        margin-left: 20px;
        align-items: center;
        max-width: 300px; 
        width: 80%; 
    }

    .article_quaternary{
        margin-left: 80px;
        align-items: center;
        max-width: 300px; 
        width: 80%; 
    }

    .article_quaternary_2{
        margin-top: 12vh;
    }

    .footerMenu{
        margin-left: -2vh;
        min-width: 115%;
    }

    .footerDev {
        margin-left: -2vh;
        min-width: 115%;
    }

    .menu.active {
        margin-top: 40px;
        margin-left: 30px;
        display: flex;
        border: 2px solid #ab71a6;
        border-radius: 5px;
    }

    .article_primary {
        margin-left: 7vh;
        width: 280px;
        height: 100px; 
    }

    .article_primary h4, .article_primary h6,
    .article_tertiary h4, .article_tertiary h6,
    .article_secundary h4, .article_secundary h6 {
        display: none;
    }

    .article_quaternary_h3{
        display: none;
    }

    .content-container{
        margin-bottom: 10vh;
    }

    .article_quaternary_h2{
        font-size: 14px;
    }

    .article_secundary,
    .article_tertiary {
        margin-left: 10vh;
        width: 300px; 
        height: 250px; 
    }

    .article_secundary h6 {
        top: 5%;
        left: 5px;
        font-size: 10px; 
    }

    .article_secundary h2 {
        top: 35%;
        left: 5px;
        font-size: 16px;
        width: 90%;
    }

    .article_secundary h4 {
        top: 55%;
        left: 5px;
        font-size: 10px;
        width: 90%;
    }

    .read-more {
        bottom: 10px;
        left: 5px;
        padding: 6px 12px;
    }

    .div-resume-1 {
        max-width: 300px;
    }

    .div-resume-1 h3{
        font-size: 12px;
    }

    .div-resume-1 h5{
        font-size: 10px;
    }

    .div-resume-1 p{
        font-size: 10px;
    }
    
    .div-resume-1-clone {
        position: fixed;
        top: 10%;
        left: 50%;
        max-width: 250px;
        margin-bottom: 100px !important;
    }

    .bottom{
        margin-top: 40px;
    }

    .image-container-resume {
        gap: 5px; 
    }
    
    .image-container-resume img {
        width: 35px;
        height: 35px;
        object-fit: cover;
        border-radius: 50%;
    }
    
    .image-container-resume h3,
    .image-container-resume h5 {
        font-size: 12px;
        color: white;
    }
    
    .image-container-resume hr {
        border: none;
        border-top: 1px solid #fff;
        flex-grow: 1; /* Faz a linha se esticar */
        margin: 0;
    }

    .close-button {
        right: 10px;
        width: 15px;
        height: 15px;
        font-size: 10px;
    }

    .news_7 {
        text-align: center;
        margin-left: 0px;
        margin-right: 0px;
    }
    
}