/* Reset de Estilos */
body, h1, h2, h3, ul, li {
    margin: 0;
    padding: 0;

}

body {
    font-family: Arial, sans-serif;
    background-color: #f3f3f3;
}

/* Cabeçalho */
header {
    background-color: #87b2d4;
    color: white;
    padding: 10px 0;
    text-align: center;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav li {
    display: inline;
    margin-right: 20px;
    p {
        text-align: justify;
    }
}

nav a {
    text-decoration: none;
    color: white;
    p {
        text-align: justify;
    }
}

/* Seções */
section {
    padding: 40px;
    text-align: justify;
    
}

/* Layout de Colunas */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 20px;
    p {
        text-align: justify;
    }
}

.column {
    flex: 50%;
    padding: 0 10px;
    box-sizing: border-box;
    text-align: justify;

}

/* Imagens */

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #4e92c9;
    p {
        text-align: justify;
    }
}

.item {
    flex: 1;
    text-align: center;
    margin: 0 10px;
}

.item img {
    max-width: 100%;
    height: auto;
    border: 1px solid #ccc;
    width: 100%; 
    max-height: 200px; 
    object-fit: cover; 
}    

.item p {
    font-size: 16px;
    text-align: justify;
    line-height: 1.5;
}

/* Rodapé */
footer {
    text-align: center;
    padding: 20px;
    background-color: #87b2d4;
    color: white;
    font-size: 14px;
}

