/* HTML e body ocupam no mínimo 100% da tela */
html, body {
    min-height: 100%;   /* permite que o body cresça se houver mais conteúdo */
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    color: #fff;
    text-align: center;
}

/* Fundo e centralização */
body {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* alinha ao topo */
    padding-top: 50px;           /* distância do topo */
    box-sizing: border-box;       /* garante que padding não quebre layout */
}

/* Título principal */
h1 {
    font-size: 2rem;
    margin-bottom: 30px;
}

/* Container da logo */
.logo-container {
    text-align: center;
    margin-bottom: 10px; /* distância entre logo e botões */
}

/* Logo responsiva */
.logo {
    width: 300px;           /* tamanho base desktop */
    max-width: 80vw;        /* não ultrapassa 80% da tela em mobile */
    height: auto;           /* mantém proporção */
}

/* Texto de fallback caso a imagem não carregue */
.fallback-text {
    color: #d4af37 !important;
    font-size: 2rem;
    font-weight: bold;
    display: none;
}

/* Media query para dispositivos móveis */
@media (max-width: 600px) {
    .logo {
        width: 70vw;       /* ocupa maior parte da tela */
        max-width: 250px;  /* não fica gigante */
    }
    .fallback-text {
        font-size: 1.5rem;
    }
}

/* Container dos botões */
.buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Botões principais */
.btn {
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    background: #0078d7;
    min-width: 120px;
    text-align: center;
}

.btn:hover {
    background: #005ea6;
    transform: translateY(-3px);
}

/* Estilo alternativo */
.btn-secondary {
    background: #00b894;
}
.btn-secondary:hover {
    background: #009973;
}
.btn-tertiary {
    background: #e67e22;
}
.btn-tertiary:hover {
    background: #cf711f;
}