body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(160deg, #0a0f1c, #0d1b2a);
    color: white;
}

.container {
    max-width: 420px;
    margin: auto;
    padding: 20px;
}

/* HERO */
.hero {
    text-align: center;
    margin-bottom: 20px;
}

.logo {
    width: 110px;
    margin-bottom: 10px;
}

.hero h1 {
    margin: 5px 0;
    font-size: 26px;
}

.hero h2 {
    color: #d4af37;
    letter-spacing: 2px;
    font-size: 14px;
}

.hero p {
    font-size: 14px;
    color: #ccc;
}

/* CARDS */
.menu {
    margin-top: 20px;
}

.card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 15px;
    margin: 12px 0;
    text-decoration: none;
    color: white;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}

.card div {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.card i:first-child {
    margin-bottom: 5px;
}

.card span {
    font-weight: bold;
}

.card small {
    font-size: 12px;
    color: #bbb;
}

.card:hover {
    transform: translateY(-3px);
}

/* GOLD */
.gold {
    background: linear-gradient(90deg, #d4af37, #f1c40f);
    color: black;
}

/* WHATSAPP */
.whatsapp {
    margin-top: 20px;
}

.whatsapp a {
    display: block;
    text-align: center;
    background: #25D366;
    padding: 15px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    font-weight: bold;
}

/* FRASE */
.frase {
    text-align: center;
    margin-top: 20px;
    font-style: italic;
    color: #d4af37;
}