* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
html {
    scroll-behavior: smooth;
}

body {
    background-color: #f5f7fa;
}

.header {
    background: linear-gradient(135deg, #e9f1f7, #cfdff0);
    padding: 40px;
    position: relative;
}

.header-logo img {
    width: 80px;
}

.header-menu {
    position: absolute;
    top: 30px;
    right: 40px;
}

.header-menu ul {
    display: inline-block;
    margin-left: 20px;
    cursor: pointer;
    font-weight: 500;
}

.texts {
    margin-top: 40px;
    max-width: 500px;
}

.texts h1 {
    font-size: 38px;
    color: #0a3d62;
    margin-bottom: 15px;
}

.texts p {
    margin-bottom: 20px;
    color: #555;
}

.texts button {
    padding: 12px 25px;
    background: #0a3d62;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.texts button:hover {
    background: #074173;
}

.servicos {
    padding: 60px 40px;
    text-align: center;
}

.servicos h2 {
    margin-bottom: 40px;
    color: #0a3d62;
}

.cards {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.card img {
    width: 50px;
    margin-bottom: 10px;
}

.card h3 {
    font-size: 16px;
}

.sobre-mim {
    padding: 60px 40px;
    background: white;
    text-align: center;
}

.sobre-mim h2 {
    margin-bottom: 20px;
    color: #0a3d62;
}

.sobre-mim p {
    max-width: 700px;
    margin: auto;
    line-height: 1.6;
    color: #444;
}

.contato {
    padding: 60px 40px;
    text-align: center;
    color: #e9f1f7;
}

.contato h2 {
    color: #0a3d62;
}

.footer {
    background: #0a3d62;
    padding: 20px;
    text-align: center;
    color: white;
}