* {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

@keyframes surgir {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.context .containt{
    width: 50em;
}
.context .containt h4{
    font-size: 40px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.context .containt p{
    font-size: 1.5em;
    color: #5f5e5e;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.context{
    display: flex;
    justify-content: center;
    height: 25em; 
    align-items: center;
}

.menu-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    background-color: #fff;
    margin: 10px;
}

.menu-content .logo_ribeirao_bonito {
    width: 220px;
}

.menu-content .logo_pongeluppe {
    width: 180px;
}

.menu-middle {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 15px 30px;
    width: 100%;
}

.menu-content h2 {
    padding: 5px 15px;
    font-size: 20px;
    cursor: pointer;
}

.menu-content h2 a {
    color: #5f5e5e;
    text-decoration: none;
}

.menu-content h2 a:hover {
    color: #de9090;
    transition: 0.2s;
    font-size: 105%;
}

.capa img {
    width: 100%;
    position: relative;
    filter: blur(2px);
    object-fit: cover;
    animation-name: surgir;
    height: 600px;
    animation: surgir 1s ease-in-out;

}

.msg-portal {
    display: flex;
    flex-direction: column;
    font-size: 55px;
    color: #fff;
    animation: surgir 2s ease-in-out;
    text-shadow: 0.1em 0.1em 0.2em black;

}

.msg-portal p {
    font-size: 25px;
    color: #ff0000;
    animation-name: anime;
    animation-duration: 2s;
    animation-iteration-count: 1;
    text-shadow: 0.1em 0.1em 0.2em black;
}    
    


.position-msg {
    position: absolute;
    top: 320px;
    left: 10px;
    animation-name: anime;
    animation-duration: 2s;
    animation-iteration-count: 1;
}

.info {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: surgir 1s ease-in-out;
    padding: 35px;
    background-color: #eb3636;
}

.info p {
    font-size: 20px;
    color: #fff;
}

.portal {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: 35px;
    background-color: #fff;
}

.portal h1 {
    margin-bottom: 25px;
}

.portal-display {
    display: flex;
    flex-direction: column;
}
.portal-display div  {
    flex-wrap: wrap;
    max-width: 1000px;
}

.portal-display button{
    width: 300px;
}

.portal-card {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    margin: 10px;
    border: 2px solid #5f5e5e;
    border-radius: 8px;
    font-weight: bold;
    color: #5f5e5e;

}

.portal-card img {
    margin-right: 10px;
}

.portal-card:hover {
    transition: 0.5s;
    transform: scale(1.1) translateZ(0);
    cursor: pointer;
}

.file-input {
    display: none;
}

.row {
    display: flex;
    flex-direction: row;
}

@keyframes anime {
    0% {
        left: -320px;
    }

    100% {
        left: 0px;
    }
}


.menu-bottom{
    width: 100%;
    min-height: 20em;
    background-color: #00000e;
    border-radius: 15px 15px 0px 0px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;

}


.menu-bottom .menu-parte svg{
    margin-right: 9px;
    cursor: pointer;
}

.menu-bottom .menu-parte{
    color: #fff;
    width: 400px;
    display: flex;
    flex-direction: column;
    margin: 25px;
    font-size: 1.2em;
}
.menu-bottom .menu-parte img{
    width: 13em;
    border-radius: 15px;
}
.menu-bottom .menu-parte .title{
    font-size: 30px;
    font-weight: bold;
}
.direitos{
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: #00000e;
    justify-content: center;
    color: #fff;
}
.center{
    display: flex;
    justify-content: center;
    align-items: center;
}
.row{
    flex-direction: row;
}
.mt-10{
    margin-top: 10px;
}
.sb{
    justify-content: space-between;
}