body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom,#d9e2ec, #f0f4f8);
    color: #333;
    line-height: 1.6;
    text-align: justify;
}


header {
    background-color: #0a3d62;
    background: linear-gradient(to bottom,#0a3d62 , #d9e2ec);
    padding: 20px 0;
    text-align: center;
}

.header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.foto-perfil {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid #0a3d62;
    object-fit: cover;
}


section {
    padding: 40px 20px;
    max-width: 1920px;
    margin: auto;
    background-color: #f0f4f8;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}
h1{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-bottom: 15px;
    color: #ffffff;
    transition: transform 0.4s ease;
}

h1:hover{
    transform: scale(1.1); 
    cursor: pointer; 
}

 h2 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-bottom: 15px;
    color: #0a3d62;
}


ul {
    padding-left: 20px;
}

ul li {
    margin-bottom: 10px;
}


a {
    color: #0077cc;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    color: #003d66;
    text-decoration: underline;
}


form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input[type="text"],
input[type="email"],
textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
}

button {
    background-color: #0a9396;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #005f73;
}


footer {
    background-color: #0a3d62;
    color: white;
    text-align: center;
    padding: 20px 0;
}
.foto-perfil {
    width: 200px;
    height: auto;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.foto-perfil:hover {
    transform: scale(1.1); 
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 600px) {
    .foto-perfil {
        width: 100px;
        height: 100px;
    }

    section {
        padding: 20px 10px;
    }
}
