/* Configurações Gerais */
body {
    background-color: #000000; /* Preto absoluto */
    color: #FFFFFF;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    margin: 0;
    padding-top: 50px;
}

.container {
    width: 90%;
    max-width: 450px;
    text-align: center;
}

header h1 {
    color: #D4AF37; /* Dourado Clássico */
    font-size: 1.8rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

header p {
    color: #888;
    margin-bottom: 40px;
    font-size: 1rem;
}

/* Container dos Botões */
.links-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Estilo do Botão */
.link {
    background-color: transparent;
    border: 1px solid #D4AF37; /* Borda dourada fina */
    color: #D4AF37;
    padding: 18px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: block;
}

/* Efeito Hover (ao passar o mouse ou tocar) */
.link:hover {
    background-color: #D4AF37;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Destaque para o iPhone 17 */
.highlight {
    background-color: #D4AF37;
    color: #000;
    border: none;
    animation: pulse 2s infinite;
}

/* Botão do WhatsApp com borda mais discreta */
.whatsapp-btn {
    margin-top: 10px;
    border-style: dashed; /* Diferencia por ser comunidade */
    opacity: 0.8;
}

/* Animação de pulso para o item principal */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}