/* Resetando margem e padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilo do body */
body {
    background-color: #f4f4f4; /* Fundo cinza claro para melhor contraste */
    font-family: 'Arial', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    overflow-x: hidden; /* Evitar rolagem horizontal */
}

/* Faixa vermelha no topo */
.header-bar {
    width: 100%;
    background-color: #d32f2f; /* Vermelho forte */
    color: white;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

/* Imagem no topo */
.top-image {
    width: 100%;
}

.top-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Seção da imagem */
.image-section {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 70px; /* Espaçamento ajustado */
}

.image-section img {
    max-width: 100%;
    height: auto;
    border-radius: 10px; /* Borda arredondada opcional */
}

/* Container principal */
.container {
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin-top: 20px; /* Ajuste para não ficar sob a faixa */
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Título */
.title {
    font-size: 26px;
    margin-bottom: 20px;
    color: #333;
}

/* Contêiner para as duas colunas de botões */
.button-columns {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Estilo das colunas de botões */
.button-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 48%;
}

/* Estilo dos botões - largura fixa */
.button-column button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 15px 0;
    margin: 10px 0;
    cursor: pointer;
    font-size: 18px;
    border-radius: 8px;
    width: 100%; /* Garante que todos os botões ocupem a mesma largura */
    max-width: 200px; /* Define um tamanho máximo para evitar botões muito largos */
    height: 50px; /* Altura fixa para manter proporção */
    text-align: center;
    transition: all 0.3s ease;
    white-space: nowrap; /* Evita que o texto quebre em várias linhas */
}

.button-column button:hover {
    background-color: #388E3C;
    transform: scale(1.05);
}

.button-column button:focus {
    outline: none;
}
