body {
    margin: 0;
    font-family: system-ui, sans-serif;
    color: #222;
}

.header {
    padding: 14px 0;
    border-bottom: 1px solid #eaeaea;
    background: #fff;
}

.header strong {
    font-size: 1.2rem;
    letter-spacing: 0.5px;
}
.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.container {
    max-width: 1000px;
    margin: auto;
    display: flex;
    justify-content: space-between;
}

nav a {
    margin-left: 28px;
    font-size: 0.95rem;
}

nav a.active {
    font-weight: 600;
}

main section {
    max-width: 860px;
    margin: 80px auto;
    padding: 0 20px;
}

.footer {
    border-top: 1px solid #eaeaea;
    padding: 30px 20px;
    text-align: center;
    font-size: 0.85rem;
    color: #666;
}


.btn {
    display: inline-block;
    margin-top: 24px;
    padding: 14px 28px;
    border: 1px solid #222;
    border-radius: 6px;
    text-decoration: none;
    color: #222;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.btn:hover {
    background: #222;
    color: #fff;
}

.btn-primary {
    background: #1f1f1f;
    color: white;
    padding: 14px 26px;
    border-radius: 6px;
    text-decoration: none;
    margin-right: 10px;
}
.btn-secondary
{
    border: 1px solid #1f1f1f;
    color: #1f1f1f;
    padding: 14px 26px;
    border-radius: 6px;
    text-decoration: none;
}

h1 {
    font-size: 2.4rem;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 14px;
}

h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

p {
    line-height: 1.6;
    color: #444;
}
.hero {
    text-align: center;
    padding-top: 40px;
}

.hero p {
    max-width: 600px;
    margin: 0 auto;
}
.hero-actions {
    margin-top: 30px;
}
ul {
    padding-left: 20px;
}

ul li {
    margin-bottom: 10px;
}
{  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue",
    Arial, sans-serif;  
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 38px; /* ajuste fino aqui */
    width: auto;
}

.logo span {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.4px;
}

@media (max-width: 600px) {
    .logo span {
        display: none;
    }
}

@media (max-width: 768px) {

    .header {
        padding: 10px 0;
    }

    .header .container {
        align-items: center;
    }

    .logo img {
        height: 32px;
    }

    nav {
        white-space: nowrap;
    }

    nav a {
        margin-left: 16px;
        font-size: 0.9rem;
    }

    main section {
        margin: 48px auto;
        padding: 0 18px;
    }

    h1 {
        font-size: 1.9rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    ul li {
        margin-bottom: 12px;
    }
}
