body {
    background-color: #4682B4;
}

section {
    background-color: #4682B4;
}

header {
    width: 100%;
    height: 30px;
    background-color: yellowgreen;
}

.row {
    background-color: yellowgreen;
}

.roboto-thin {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.roboto-thin-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.container-md {
    background-color: yellowgreen;
    border-radius: 30px;
    font-family: 'Roboto', sans-serif;
    text-align: center;
    padding: 20px;
}

footer {
    width: 100%;
    background-color: white;
    padding: 20px 0; /* Reduzido de 100px para 20px como padrão */
    min-height: 50px; /* Altura mínima inicial, ajustável */
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.footer-item {
    display: flex;
    align-items: center;
    margin: 10px;
}

.footer-item svg {
    margin-right: 8px;
}

h1 {
    color: white;
}

h2 {
    font-size: 36px;
    font-weight: bold;
    color: #333;
}

h3 {
    font-size: 28px;
    color: #007bff;
}

.passo {
    margin-bottom: 20px;
}

p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
}

h3, p {
    margin-bottom: 15px;
}

/* Ajustes para telas menores */
@media (max-width: 768px) {
    header {
        height: 20px;
    }

    .container-md {
        padding: 10px;
        border-radius: 15px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 20px;
    }

    p {
        font-size: 16px;
        line-height: 1.4;
    }

    footer {
        height: auto;
        padding: 10px 0;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-item {
        justify-content: center;
        margin: 5px 0;
    }

    .footer-item svg {
        margin-right: 5px;
    }
}

/* Ajustes para telas maiores (notebooks e PCs) */
@media (min-width: 769px) {
    footer {
        padding: 20px 0; /* Mantém padding padrão ou ajusta para um valor menor, ex.: 10px 0 */
        min-height: 50px; /* Ajuste conforme necessário, pode ser reduzido para 30px ou 40px */
    }
}