body {
    font-family: Roboto, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #333;
}

header {
    background-color: #00336F;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    margin: 10px;
    border-radius: 15px;

    color: #fff;
    padding: 10px 0;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5em;
}

header::before{
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: #fff;
    z-index: -1;
    border-radius: 10px;
}

/* Breackpoints */
@media (max-width: 768px) {
    header {
        padding: 0 1em;
    }

    nav ul li {
        display: block;
        margin: 10px 0;
    }
}


.logo h1 {
    margin: 0;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

nav ul li a:hover {
    color: #ccc;
}

section {
    padding: 20px;
    margin: 10px 10px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

footer {
    text-align: center;
    padding: 10px 0;
    background-color: #333;
    color: #fff;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo_icon {
    width: 70px;
    height: 70px;
    margin-right: 10px;
}

.logo_text {
    height: 50px;
    display: flex;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    padding: 20px;
    margin: 10px 10px;
}

.banner {
    width: auto;
    height: 150px;
}

.ufpr {
    width: auto;
    height: 65px;
}

.image_container {
    width: 100%;
    height: auto;
    display: flex;    
    justify-self: center;
    align-items: center;
    justify-content: center;
}

.text_image {
    width: 35em;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

.video-text-container {
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: space-between;
    padding: 0;
    margin: 0;
}

/* Estilos para o parágrafo */
.video-text-container p {
    max-width: 80%;
}

/* Responsivo para mobile */
@media (max-width: 768px) {
    .video-text-container {
        flex-direction: column;
        text-align: center;
    }
}