* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #111;
    color: #fff;
}

/* HERO */
.hero-section {
    height: 100vh;
    background-size: cover;
    background-position: center;
}

/* TEXTO DOURADO */
.gold-text {
    color: #d4af37;
    font-family: 'Playfair Display', serif;
}

/* BOTÃO */
.btn-gold {
    background-color: #d4af37;
    color: #000;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-gold:hover {
    background-color: #b8962e;
    color: #000;
}

/* NAVBAR */
.bg-black {
    background-color: #000;
}

/* CARDS */
.card {
    border: none;
}

.card img {
    height: 250px;
    object-fit: cover;
}

/* AJUSTE PARA NAVBAR FIXA */
section {
    scroll-margin-top: 80px;
}