body {
    margin: 0;
    padding: 0;
    background-color: black;
    font-family: Arial, sans-serif;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
    padding: 20px;
    width: 100%;
}

.logo {
    margin-bottom: 20px;
    width: 90px; /* Tamanho da logo */
}

.content-box {
    background-color: #141414;
    border-radius: 15px;
    width: 100%;
    max-width: 500px;
    height: 150px; /* Altura ajustada */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
}

h1 {
    margin: 0;
    font-size: 20px; /* Tamanho de fonte ajustado */
    text-align: center;
    margin-bottom: 10px; /* Reduzida a distância entre o título e os botões */
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.option-button {
    background-color: #f9b234; /* Nova cor dos botões */
    color: #000;
    border: none;
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: background-color 0.3s ease;
}

.option-button i {
    margin-left: 5px;
}

.option-button:hover {
    background-color: #d29c45;
}

/* Estilos responsivos */
@media (max-width: 600px) {
    .option-button {
        padding: 8px 15px;
        font-size: 14px;
    }

    .logo {
        width: 120px; /* Reduz ainda mais o tamanho da logo para dispositivos móveis */
    }

    .content-box {
        height: auto; /* Permite que a altura seja ajustada automaticamente */
        max-width: 90%; /* Largura responsiva */
    }
}
