/* Configurações globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #333333;
    color: #FF5500;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 10px;
}

.wrapper {
    width: 100%;
    max-width: 450px; /* Ajuste para celular */
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    text-align: center;
}

/* Header */
header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 30px;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 200px; /* Tamanho ajustado para dispositivos móveis */
    height: auto;
}

/* Main content */
main {
    margin-bottom: 40px;
}

main h2 {
    font-size: 1.8em;
    color: #0a0a0a;
    margin-bottom: 15px;
}

main p {
    font-size: 1.1em;
    color: #0f0f0f;
    margin-bottom: 5px;
}

/* Botões de catálogo */
.catalog-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn {
    padding: 12px;
    background-color: #FF5500;
    color: #ffffff;
    font-size: 1.1em;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn:hover {
    background-color: #000000;
    transform: translateY(-5px);
}

/* Footer */
footer {
    font-size: 0.9em;
    color: #000000;
    margin-top: 40px;
}
