:root {
    --black: #050505;
    --dark: #101010;
    --dark-soft: #181818;
    --gold: #c6a15b;
    --gold-dark: #9f7730;
    --white: #ffffff;
    --muted-white: rgba(255,255,255,.78);
}

* {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: var(--black);
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
}

.hero-premium {
    position: relative;
    min-height: 100vh;
    padding: 40px 0 70px;
    color: #fff;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(0,0,0,.97), rgba(0,0,0,.88), rgba(0,0,0,.76)),
        url('https://images.unsplash.com/photo-1602524206684-5c0f9f59578a?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
}

.hero-layer {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 40%, rgba(198,161,91,.22), transparent 28%),
        radial-gradient(circle at 80% 18%, rgba(198,161,91,.12), transparent 24%),
        linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.78));
}

.hero-premium .container {
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    border: 1px solid rgba(198,161,91,.85);
    color: #fff;
    border-radius: 100px;
    padding: .75rem 1.5rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .82rem;
    font-weight: 700;
    background: rgba(0,0,0,.35);
}

.hero-badge i {
    color: var(--gold);
}

.hero-title {
    color: #fff;
    font-size: clamp(2.4rem, 4.4vw, 4.5rem);
    line-height: 1.05;
    font-weight: 800;
    margin-top: 2rem;
}

.hero-title span {
    display: block;
    color: var(--gold);
}

.gold-divider {
    width: 330px;
    max-width: 100%;
    height: 1px;
    margin: 2rem 0;
    background: linear-gradient(90deg, var(--gold), transparent);
    position: relative;
}

.gold-divider::after {
    content: "✦";
    position: absolute;
    top: -13px;
    left: 45%;
    color: var(--gold);
    background: #050505;
    padding: 0 .55rem;
}

.hero-text {
    max-width: 650px;
    color: var(--muted-white);
    font-size: 1.12rem;
    line-height: 1.9;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.3rem;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    border: none;
    font-weight: 700;
}

.btn-gold:hover {
    color: #fff;
    filter: brightness(1.08);
}

.btn-outline-gold {
    border: 1px solid var(--gold);
    color: #fff;
    background: rgba(0,0,0,.22);
    font-weight: 700;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: #fff;
}

.hero-card {
    max-width: 520px;
    margin-left: auto;
    padding: 2.1rem;
    border-radius: 34px;
    background: rgba(15,15,15,.90);
    border: 1px solid rgba(198,161,91,.62);
    box-shadow: 0 35px 90px rgba(0,0,0,.58);
    backdrop-filter: blur(10px);
}

.hero-logo {
    display: block;
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,.45);
}

.card-divider {
    width: 70%;
    height: 1px;
    margin: 1.8rem auto;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    position: relative;
}

.card-divider::after {
    content: "✦";
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    background: #101010;
    padding: 0 .55rem;
}

.hero-info {
    display: flex;
    align-items: center;
    gap: 1.15rem;
    padding: 1.05rem 0;
    border-bottom: 1px solid rgba(198,161,91,.28);
}

.hero-info-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
}

.hero-info small {
    display: block;
    color: rgba(255,255,255,.68);
    margin-bottom: .2rem;
}

.hero-info strong {
    display: block;
    color: #fff;
    font-size: 1.1rem;
}

.hero-benefits {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(14,14,14,.98);
    border-radius: 34px;
    padding: 2.2rem 1.5rem;
    box-shadow: 0 25px 70px rgba(0,0,0,.5);
    border-top: 2px solid rgba(198,161,91,.78);
}

.hero-benefit {
    text-align: center;
    padding: 0 1.6rem;
    border-right: 1px solid rgba(255,255,255,.10);
}

.hero-benefit:last-child {
    border-right: none;
}

.hero-benefit i {
    width: 66px;
    height: 66px;
    margin: 0 auto 1rem;
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
}

.hero-benefit h5 {
    color: var(--gold);
    font-weight: 800;
    margin-bottom: .5rem;
}

.hero-benefit p {
    color: rgba(255,255,255,.76);
    margin: 0;
    font-size: .94rem;
}

.btn-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 16px 36px rgba(0,0,0,.35);
    font-size: 2rem;
}

.btn-whatsapp:hover {
    color: #fff;
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .hero-premium {
        text-align: center;
        padding: 60px 0 40px;
    }

    .gold-divider {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-card {
        margin: 0 auto;
    }

    .hero-benefits {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        margin-top: 3rem;
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-benefit {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,.10);
        padding: 1.5rem;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 2.35rem;
    }

    .hero-benefits {
        grid-template-columns: 1fr;
    }

    .hero-info strong {
        font-size: .95rem;
    }
}