:root {
    --black: #0A0A0A;
    --black-2: #111111;
    --black-3: #171717;
    --gold: #D4AF37;
    --gold-light: #F5D06F;
    --gold-soft: rgba(212, 175, 55, .16);
    --white: #FFFFFF;
    --muted: #B9B9B9;
    --border-gold: rgba(212, 175, 55, .32);
    --border-soft: rgba(255, 255, 255, .08);
    --shadow-gold: 0 24px 80px rgba(212, 175, 55, .10);
    --radius-lg: 24px;
    --radius-md: 18px;
    --transition: all .28s ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 15% 15%, rgba(212, 175, 55, .10), transparent 24rem),
        radial-gradient(circle at 85% 10%, rgba(245, 208, 111, .08), transparent 22rem),
        var(--black);
    color: var(--white);
    font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

.site-bg-glow {
    position: fixed;
    width: 28rem;
    height: 28rem;
    border-radius: 999px;
    filter: blur(60px);
    opacity: .12;
    pointer-events: none;
    z-index: -1;
}

.site-bg-glow-1 {
    top: 12%;
    left: -10rem;
    background: var(--gold);
}

.site-bg-glow-2 {
    right: -12rem;
    bottom: 10%;
    background: var(--gold-light);
}

/* NAVBAR */
.nav-luxury {
    background: rgba(10, 10, 10, .86);
    border-bottom: 1px solid var(--border-soft);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: .9rem 0;
}

.brand-luxury {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #15110A;
    font-weight: 900;
    letter-spacing: -.04em;
    box-shadow: 0 12px 30px rgba(212, 175, 55, .22);
}

.brand-text,
.footer-brand span,
.gold-text {
    background: linear-gradient(120deg, var(--gold), var(--gold-light), #FFF2B0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-text {
    font-weight: 800;
    letter-spacing: -.03em;
    font-size: 1.22rem;
}

.navbar .nav-link {
    color: rgba(255, 255, 255, .72);
    font-weight: 600;
    font-size: .95rem;
    transition: var(--transition);
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--gold-light);
}

.navbar-toggler-icon {
    filter: invert(1) sepia(1) saturate(3) hue-rotate(5deg);
}

/* BUTTONS */
.btn-gold,
.btn-whatsapp {
    border: 0;
    color: #141006;
    font-weight: 800;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    box-shadow: 0 15px 38px rgba(212, 175, 55, .25);
    transition: var(--transition);
}

.btn-gold:hover,
.btn-whatsapp:hover {
    color: #141006;
    transform: translateY(-2px);
    box-shadow: 0 20px 52px rgba(212, 175, 55, .34);
    filter: brightness(1.04);
}

.btn-outline-gold,
.btn-ghost {
    border: 1px solid var(--border-gold);
    color: var(--gold-light);
    font-weight: 700;
    border-radius: 999px;
    background: rgba(212, 175, 55, .04);
    transition: var(--transition);
}

.btn-outline-gold:hover,
.btn-ghost:hover {
    color: var(--black);
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
}

.btn-sm-lg {
    padding: .55rem 1rem;
}

/* HERO */
.hero-luxury {
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    padding: 5.5rem 0 4rem;
    position: relative;
}

.hero-badge,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    color: var(--gold-light);
    background: rgba(212, 175, 55, .09);
    border: 1px solid var(--border-gold);
    border-radius: 999px;
    padding: .42rem .9rem;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.hero h1 {
    margin-top: 1.4rem;
    font-size: clamp(2.35rem, 6vw, 5rem);
    line-height: .98;
    letter-spacing: -.07em;
    font-weight: 900;
    max-width: 820px;
}

.hero .lead {
    color: var(--muted);
    max-width: 660px;
    font-size: clamp(1rem, 2vw, 1.18rem);
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.trust-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .9rem;
    max-width: 700px;
}

.trust-item {
    padding: 1rem;
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    background: rgba(255, 255, 255, .03);
}

.trust-item strong,
.trust-item span {
    display: block;
}

.trust-item strong {
    color: var(--gold-light);
    font-size: .98rem;
}

.trust-item span {
    color: var(--muted);
    font-size: .86rem;
    margin-top: .15rem;
}

/* CARDS */
.luxury-card {
    position: relative;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .025)),
        var(--black-2);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-gold);
    overflow: hidden;
}

.luxury-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(245, 208, 111, .13), transparent 32%, transparent 72%, rgba(212, 175, 55, .07));
    opacity: .75;
    pointer-events: none;
}

.hero-panel {
    padding: 2rem;
    max-width: 440px;
    margin-left: auto;
}

.panel-topline {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), transparent);
    position: absolute;
    top: 0;
    left: 0;
}

.panel-icon,
.icon-gold,
.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #15110A;
    box-shadow: 0 12px 28px rgba(212, 175, 55, .22);
}

.panel-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.hero-panel h2,
.hero-panel .eyebrow,
.hero-panel .check-list,
.hero-panel .mini-cta,
.service-card > *,
.benefit-item > *,
.about-box > *,
.contact-card > * {
    position: relative;
    z-index: 1;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
}

.check-list li {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    color: rgba(255, 255, 255, .82);
}

.check-list i {
    color: var(--gold-light);
    margin-top: .25rem;
}

.mini-cta {
    padding: 1rem;
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    background: rgba(0, 0, 0, .22);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.mini-cta small,
.contact-note {
    color: var(--muted);
}

.mini-cta strong {
    display: block;
    color: var(--gold-light);
}

.btn-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex-shrink: 0;
}

.mini-cta .btn-icon {
    animation: cta-ring 2.8s ease-in-out infinite;
    transform-origin: top center;
}

@keyframes cta-ring {
    0%,  55%, 100% { transform: rotate(0deg) scale(1);   box-shadow: 0 0 0 0 rgba(37,211,102,.55); }
    5%             { transform: rotate(14deg) scale(1);  }
    10%            { transform: rotate(-10deg) scale(1); }
    15%            { transform: rotate(12deg) scale(1);  }
    20%            { transform: rotate(-8deg) scale(1);  }
    25%            { transform: rotate(0deg) scale(1);   }
    40%            { transform: rotate(0deg) scale(1.08); box-shadow: 0 0 0 10px rgba(37,211,102,0); }
    50%            { transform: rotate(0deg) scale(1);   box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* SECTIONS */
.section-space {
    padding: 6rem 0;
}

.section-soft {
    background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(212,175,55,.035));
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 2rem;
}

.section-heading h2,
.section-title-left,
.about-box h2,
.privacy-box h2 {
    font-size: clamp(2rem, 4vw, 3.15rem);
    font-weight: 900;
    letter-spacing: -.055em;
    line-height: 1.08;
    margin-top: 1rem;
}

.section-heading p,
.text-muted-gold,
.about-box p,
.privacy-box p {
    color: var(--muted);
    line-height: 1.8;
}

.service-card {
    padding: 2rem;
    transition: var(--transition);
}

.service-card:hover,
.benefit-item:hover,
.contact-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 208, 111, .65);
    box-shadow: 0 28px 90px rgba(212, 175, 55, .15);
}

.icon-gold {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    font-size: 1.35rem;
    margin-bottom: 1.4rem;
}

.service-card h3,
.benefit-item h3 {
    font-size: 1.18rem;
    font-weight: 850;
    margin-bottom: .75rem;
}

.service-card p,
.benefit-item p {
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

.benefit-item {
    padding: 1.5rem;
    height: 100%;
    transition: var(--transition);
}

.benefit-item i {
    color: var(--gold-light);
    font-size: 1.55rem;
    margin-bottom: 1rem;
}

.about-box {
    padding: 3rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.about-stats div {
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    padding: 1rem;
    background: rgba(0, 0, 0, .20);
}

.about-stats strong,
.about-stats span {
    display: block;
}

.about-stats strong {
    color: var(--gold-light);
}

.about-stats span {
    color: var(--muted);
    font-size: .88rem;
}

/* CONTACT */
.section-contact {
    position: relative;
}

.contact-card {
    padding: 2rem;
    transition: var(--transition);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.4rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    flex-shrink: 0;
}

.contact-item span {
    display: block;
    color: var(--muted);
    font-size: .84rem;
    margin-bottom: .2rem;
}

.contact-item strong {
    display: block;
    color: var(--white);
    overflow-wrap: anywhere;
}

/* PRIVACY */
.privacy-box {
    color: rgba(255, 255, 255, .86);
}

.privacy-box h3 {
    margin-top: 2rem;
    font-size: 1.05rem;
    color: var(--gold-light);
}

.privacy-box strong {
    color: var(--white);
}

/* FLOAT WHATSAPP */
.floating-whatsapp {
    position: fixed;
    right: 1.2rem;
    bottom: 1.2rem;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .9rem 1.1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #20D466, #25D366);
    color: #031107;
    font-weight: 900;
    box-shadow: 0 18px 42px rgba(37, 211, 102, .32);
    transition: var(--transition);
}

.floating-whatsapp:hover {
    color: #031107;
    transform: translateY(-3px) scale(1.02);
}

.floating-whatsapp i {
    font-size: 1.35rem;
}

/* FOOTER */
.footer-luxury {
    padding: 2rem 0;
    background: rgba(0, 0, 0, .72);
    border-top: 1px solid var(--border-soft);
}

.footer-brand {
    font-weight: 900;
    font-size: 1.2rem;
    letter-spacing: -.03em;
}

.footer-luxury small,
.footer-luxury a {
    color: var(--muted);
}

.footer-luxury a:hover {
    color: var(--gold-light);
}

/* ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .75s ease, transform .75s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .22s; }
.reveal-delay-3 { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .001ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* RESPONSIVE */
@media (max-width: 991.98px) {
    .nav-luxury .navbar-collapse {
        padding-top: 1rem;
    }

    .hero-luxury {
        min-height: auto;
        padding-top: 4rem;
    }

    .hero-panel {
        max-width: 100%;
        margin: 0;
    }

    .trust-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .section-space {
        padding: 4.5rem 0;
    }

    .hero h1 {
        letter-spacing: -.055em;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
        display: inline-flex;
        align-items: center;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .about-box,
    .contact-card,
    .hero-panel {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .floating-whatsapp {
        right: .85rem;
        bottom: .85rem;
        padding: .85rem;
    }

    .floating-whatsapp span {
        display: none;
    }
}
