:root {
  --primary: #d4af37;
  --primary-dark: #b5952f;
  --primary-light: #f3cf55;

  --bg-body: #050505;
  --bg-surface: #121212;
  --bg-card: #1a1a1a;

  --text-main: #ffffff;
  --text-secondary: #e0e0e0;
  --text-muted: #a0a0a0;

  --border-color: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(212, 175, 55, 0.5);

  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 20px rgba(212, 175, 55, 0.15);

  --font-body: 'Outfit', sans-serif;
  --font-heading: 'Outfit', sans-serif;

  --padding-container: 2rem;
  --border-radius: 12px;
  --transition: all 0.35s ease;
}


*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}


img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 1rem;
  margin: auto;
}

/* =========================
   WHATSAPP FLOAT BUTTON
   WARM GOLD + BLACK THEME
========================= */

.whatsapp-float {
    position: fixed;
    bottom: 85px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(145deg, #a8872a, #d4b04a); /* Warm matte gold */
    color: #111; /* Soft black (not pure black) */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 6px 18px rgba(168, 135, 42, 0.35);
    z-index: 2000;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Hover Effect */
.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 10px 24px rgba(168, 135, 42, 0.5);
}

/* Tooltip */
.wa-tooltip {
    position: absolute;
    right: 70px;
    background: #111; /* Soft black */
    color: #d4b04a; /* Warm gold text */
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

/* Tooltip Arrow */
.wa-tooltip::after {
    content: "";
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent #111;
}

/* Show Tooltip */
.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 80px;
        right: 20px;
        font-size: 1.4rem;
    }

    .wa-tooltip {
        display: none;
    }
}
