body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: #0b0b0b;
    color: white;
}

h1, h2 {
    font-family: 'Playfair Display', serif;
}

/* HERO */
.hero {
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
    url('https://images.unsplash.com/photo-1493558103817-58b2924bce98') center/cover;
    padding: 70px 20px;
    text-align: center;
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

h1 {
    color: #d4af37;
    font-size: 32px;
}

/* BOTÓN VIP PREMIUM */
.vip-btn {
    background: linear-gradient(45deg, #d4af37, #f5d76e);
    padding: 10px 18px;
    color: black;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: 0.3s;
}

.vip-btn:hover {
    transform: scale(1.05);
}

/* HERO CONTENT */
.hero-content {
    margin-top: 70px;
}

.hero-content h2 {
    font-size: 40px;
    margin-bottom: 10px;
}

/* SERVICES */
.services {
    padding: 70px 20px;
    text-align: center;
}

.cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 40px;
}

.card {
    background: #1a1a1a;
    padding: 35px;
    width: 220px;
    border-radius: 12px;
    border: 1px solid #333;
    transition: 0.3s;
}

.card:hover {
    border-color: #d4af37;
    transform: translateY(-6px);
}

/* CONTACT */
.contact {
    background: #111;
    padding: 70px 20px;
    text-align: center;
}

form {
    max-width: 500px;
    margin: auto;
}

input, textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 18px;
    background: #000;
    border: 1px solid #333;
    color: white;
    border-radius: 6px;
}

button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(45deg, #d4af37, #f5d76e);
    border: none;
    font-weight: bold;
    cursor: pointer;
    border-radius: 6px;
    transition: 0.3s;
}

button:hover {
    transform: scale(1.03);
}

footer {
    text-align: center;
    padding: 25px;
    background: black;
    font-size: 14px;
    opacity: 0.7;
}