body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    background-color: #f5f5f5;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

h1 {
    text-align: center;
    color: #333;
}

.passo {
    margin: 20px 0;
}

.imagem-container {
    text-align: center;
    margin: 20px 0;
}

.imagem-container img {
    max-width: 100%;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.controles {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

button {
    padding: 10px 20px;
    background: #007BFF;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:disabled {
    background: #cccccc;
    cursor: not-allowed;
}
/* Estilos para o cabeçalho com logos */
.header-logos {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: white;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo {
    height: 50px; /* Ajuste conforme necessário */
    width: auto;
}

.logo-esquerda {
    margin-right: auto; /* Alinha à esquerda */
}

.logo-direita {
    margin-left: auto; /* Alinha à direita */
}

/* Ajuste o container principal para não ficar sob o cabeçalho */
.container {
    margin-top: 80px; /* Deve ser maior que a altura do cabeçalho */
}