/* ==============================
   ROOT / BASE
   ============================== */

:root {
    --gold: #b8860b;
    --gold-dark: #a57407;
    --black: #0b0b0b;
    --muted: #0d0d0e;
    --bg: #faf8f6;
    --card: #e4e4d9;
    --max-width: 1200px;
    --radius: 12px;
    --cursor: #671c0c;
    --click: #f6941e;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, Arial;
    background: var(--bg);
    color: var(--black);
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 22px;
}

/* TEXT / HELPERS */
.muted {
    color: var(--muted);
    opacity: .85;
}

.small {
    font-size: 13px;
}

.section {
    padding: 44px 0;
}

/* LIST */
.list-dot {
    padding-left: 18px;
}

.list-dot li {
    list-style: disc;
    margin-bottom: 8px;
    font-size: 15px;
    color: #333;
}

/* BUTTONS */
.btn {
    background: var(--black);
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-cta {
    background: var(--gold);
    color: #000;
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.06);
    color: var(--black);
}

/* ==============================
   CUSTOM CURSOR
   ============================== */

.cursor-dot {
    position: fixed;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--cursor);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 99999;
    transition: opacity .2s ease;
}

.click-effect {
    position: fixed;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--click);
    opacity: 0.45;
    transform: translate(-50%, -50%) scale(0);
    animation: clickBurst .35s ease-out forwards;
    pointer-events: none;
    z-index: 99998;
}

@keyframes clickBurst {
    to {
        transform: translate(-50%, -50%) scale(2.2);
        opacity: 0;
    }
}

/* ==============================
   WHATSAPP FLOAT
   ============================== */

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .3);
    z-index: 9999;
    cursor: pointer;
    transition: transform .2s ease-in-out;
}

.whatsapp-float:hover {
    transform: scale(1.08);
}

.whatsapp-icon {
    width: 45px;
    height: 45px;
    pointer-events: none;
}

@media (max-width: 480px) {
    .whatsapp-float {
        right: 20px;
        bottom: 14px;
        width: 48px;
        height: 48px;
    }
}