* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f2f4f7;
    color: #4a4a4a;
}

.container {
    max-width: 900px;
    margin: auto;
    padding: 16px;
}

/* TÍTULOS */
h1,
h2,
h3 {
    color: #0b3c5d;
    margin-top: 0;
}

/* TEXTO */
p {
    line-height: 1.6;
    font-size: 15px;
}

/* BOTÕES PRINCIPAIS */
.buttons {
    display: grid;
    gap: 14px;
    margin: 20px 0;
}

button {
    padding: 10px;
    border: none;
    border-radius: 6px;
    background: #0b3c5d;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    width: 100%;
}

/* BOTÕES DE NAVEGAÇÃO (PEQUENOS) */
.nav-inline {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin: 25px 0 10px;
}

.nav-inline button {
    padding: 8px 12px;
    font-size: 13px;
    width: auto;
}

/* ETAPAS */
.step {
    display: none;
}

.step.active {
    display: block;
}

img {
    width: 100%;
    max-height: 60vh;
    /* limita a altura a 60% da tela */
    object-fit: contain;
    /* mantém proporção sem cortar */
    height: auto;
    margin-top: 16px;
    border-radius: 8px;
}

/* FUNDO HOME */
.home-fundo {
    display: block;
    margin: 30px auto 0;
    max-width: 320px;
    opacity: 1;
    /* imagem totalmente visível */
}

/* BOTÃO WHATSAPP */
.help-btn {
    position: fixed;
    right: 16px;
    bottom: 70px;
    /* sobe o botão acima do rodapé */
    background: #25d366;
    color: #fff;
    padding: 10px 14px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    z-index: 999;
}

/* MOBILE */
@media (max-width: 600px) {
    h1 {
        font-size: 22px;
    }

    h2 {
        font-size: 20px;
    }

    .nav-inline {
        flex-wrap: wrap;
    }
}

footer {
    margin-top: 50px;
    padding: 20px 16px;
    text-align: center;
    font-size: 13px;
    color: #555;
    background: #e9edf2;
    /* fundo claro e neutro */
    border-top: 1px solid #d0d6dc;
}

footer a {
    color: #0b3c5d;
    text-decoration: none;
    font-weight: bold;
}