@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body{
    height: 100%;
}
body {
    font-family: 'Montserrat', 'Roboto', sans-serif;
    background-color: #f5f5f5;
    color: #333;

    display: flex;
    flex-direction: column;
}

header {
    background: #10002B;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 50px;
}

main {
    flex: 1;
}

.corpo {
    padding: 50px 50px 100px 50px;
}

.corpo-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.corpo-content img {
    width: 50%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.corpo-text {
    width: 50%;
    line-height: 1.6;
}

.corpo-text p {
    margin-bottom: 30px;
}

footer {
    background: #10002B;
    color: white;
    text-align: center;
    padding: 45px;
}

