body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #254160;
    color: #fff;
}

header {
    background-color: #254160;
    width: 100%;
    padding: 30px 0;
    text-align: center;
}

.header-content {
    max-width: 900px;
    margin: 0 auto;
}

.title {
    font-size: 3em;
    font-weight: 700;
    color: #ffc400;
    margin: 0;
    text-transform: uppercase;
}

.subtitle {
    font-size: 1.5em;
    font-weight: 400;
    color: #fff;
    margin-top: 10px;
}

.intro-section {
    background-color: #243850;
    color: #ebebeb;
    padding: 20px 40px;
    width: 100%;
    text-align: center;
    font-size: 1.1em;
    font-weight: 700;
    margin-bottom: 30px;
}

main {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.step-section {
    margin-bottom: 20px;
}

.step-toggle {
    background-color: #243850;
    color: #ffc400;
    border: none;
    padding: 20px;
    font-size: 1.5em;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    text-align: left;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;

    /* Novas propriedades para ocupar a largura total */
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.step-toggle:after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.step-toggle.active:after {
    content: '−';
    transform: rotate(180deg);
}

.step-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.5, 0, 0.1, 1), padding 0.5s ease;
    background-color: #1a2a44;
    border-radius: 8px;
    margin-top: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.step-content.active {
    /* Faz o conteúdo ocupar toda a largura da tela */
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;

    max-height: 2000px; /* Valor um pouquinho grande para comportar todo o conteúdo */
    padding: 20px;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.step-content p {
    margin: 0 0 10px 0;
    color: #e0e0e0;
}

.step-content img {
    max-width: 100%;
    height: auto;
    margin-top: 15px;
    border: 1px solid #254160;
    border-radius: 5px;
}

.step-content ul {
    list-style-type: none;
    padding-left: 0;
}

.step-content li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 5px;
}

.step-content li::before {
    content: "•";
    color: #ffc400;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

footer {
    background-color: #254160;
    color: #fff;
    text-align: center;
    padding: 25px;
    width: 100%;
    font-size: 0.9em;
    margin-top: 40px;
}
a {
    color: #ffc400; /* Define a cor do link para o amarelo da cartilha */
    text-decoration: none; /* Remove o sublinhado padrão */
    font-weight: bold; /* Deixa o texto em negrito, como em outras partes da cartilha */
    transition: color 0.3s ease; /* Adiciona uma transição suave para o efeito de hover */
}

a:hover {
    color: #02e1ffe5; /* Cor ao passar o mouse por cima do link dos sites*/
}

.logo {
    width: 150px; /* tamanho da logo */
    height: auto;
    margin-bottom: 20px;
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}