:root {
      --gold: #C9A84C;
      --gold-light: #E8C97A;
      --gold-dim: #8B6914;
      --black: #050505;
      --black-2: #0D0D0D;
      --black-3: #111111;
      --black-4: #1A1A1A;
      --white: #F5F0E8;
      --white-dim: rgba(245,240,232,0.6);
      --glass: rgba(201,168,76,0.05);
      --glass-border: rgba(201,168,76,0.18);
      --glow: rgba(201,168,76,0.25);
    }

    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      background: var(--black);
      color: var(--white);
      font-family: 'Montserrat', sans-serif;
      font-weight: 300;
      line-height: 1.8;
      overflow-x: hidden;
    }

    /* LOADER */
    #loader {
      position: fixed; inset: 0; z-index: 9999;
      background: var(--black);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      transition: opacity 0.8s ease, visibility 0.8s ease;
    }
    #loader.hidden { opacity: 0; visibility: hidden; }
    .loader-emblem {
      width: 80px; height: 80px;
      border: 1px solid var(--gold-dim);
      border-top-color: var(--gold);
      border-radius: 50%;
      animation: spin 1.2s linear infinite;
    }
    .loader-text {
      font-family: 'Cormorant Garamond', serif;
      color: var(--gold);
      font-size: 0.75rem;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      margin-top: 1.5rem;
      animation: pulse 1.5s ease-in-out infinite;
    }
    @keyframes spin { to { transform: rotate(360deg); } }
    @keyframes pulse { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }

    /* NAVBAR */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 999;
      padding: 0 5%;
      height: 80px;
      display: flex; align-items: center; justify-content: space-between;
      background: rgba(5,5,5,0.92);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--glass-border);
      transition: all 0.4s ease;
    }
    nav.scrolled { height: 64px; background: rgba(5,5,5,0.98); }

    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 500;
      color: var(--gold);
      text-decoration: none;
      letter-spacing: 0.05em;
    }
    .nav-logo span { font-style: italic; color: var(--gold-light); }

    .nav-links {
      display: flex; gap: 2.5rem; list-style: none;
    }
    .nav-links a {
      color: var(--white-dim);
      text-decoration: none;
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      transition: color 0.3s;
      position: relative;
    }
    .nav-links a::after {
      content: '';
      position: absolute; bottom: -4px; left: 0; right: 0;
      height: 1px; background: var(--gold);
      transform: scaleX(0); transition: transform 0.3s ease;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-links a:hover::after { transform: scaleX(1); }

    .nav-hamburger {
      display: none;
      flex-direction: column; gap: 5px; cursor: pointer; padding: 4px;
    }
    .nav-hamburger span {
      display: block; width: 24px; height: 1px;
      background: var(--gold); transition: all 0.3s ease;
    }

    .nav-mobile {
      display: none;
      position: fixed; top: 80px; left: 0; right: 0; bottom: 0;
      background: rgba(5,5,5,0.97);
      backdrop-filter: blur(20px);
      flex-direction: column; align-items: center; justify-content: center;
      gap: 2.5rem; z-index: 998;
    }
    .nav-mobile.open { display: flex; }
    .nav-mobile a {
      color: var(--white-dim);
      text-decoration: none;
      font-size: 1.2rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      font-family: 'Cormorant Garamond', serif;
      transition: color 0.3s;
    }
    .nav-mobile a:hover { color: var(--gold); }

    /* HERO */
    .page-hero {
      min-height: 50vh;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      text-align: center;
      padding: 140px 5% 80px;
      position: relative;
      overflow: hidden;
    }
    .page-hero::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(201,168,76,0.08) 0%, transparent 70%);
    }
    .hero-ornament {
      width: 1px; height: 60px;
      background: linear-gradient(to bottom, transparent, var(--gold), transparent);
      margin: 0 auto 2rem;
      animation: fadeInUp 1s ease 0.5s both;
    }
    .hero-badge {
      font-size: 0.65rem;
      letter-spacing: 0.5em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.2rem;
      animation: fadeInUp 1s ease 0.7s both;
    }
    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.8rem, 6vw, 5rem);
      font-weight: 300;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 1.5rem;
      animation: fadeInUp 1s ease 0.9s both;
    }
    .hero-title em { font-style: italic; color: var(--gold); }
    .hero-subtitle {
      font-size: 0.78rem;
      letter-spacing: 0.15em;
      color: var(--white-dim);
      animation: fadeInUp 1s ease 1.1s both;
    }
    .hero-line {
      width: 120px; height: 1px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
      margin: 2rem auto 0;
      animation: fadeInUp 1s ease 1.3s both;
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* CONTENT */
    .content-wrapper {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 5% 100px;
    }

    .policy-section {
      margin-bottom: 3rem;
      opacity: 0; transform: translateY(40px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .policy-section.visible { opacity: 1; transform: translateY(0); }

    .glass-card {
      background: var(--glass);
      border: 1px solid var(--glass-border);
      border-radius: 2px;
      padding: 2.5rem 3rem;
      position: relative;
      overflow: hidden;
      transition: border-color 0.4s ease, box-shadow 0.4s ease;
    }
    .glass-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
    }
    .glass-card:hover {
      border-color: rgba(201,168,76,0.35);
      box-shadow: 0 0 40px var(--glow);
    }

    .section-number {
      font-family: 'Cormorant Garamond', serif;
      font-size: 0.7rem;
      color: var(--gold-dim);
      letter-spacing: 0.4em;
      text-transform: uppercase;
      margin-bottom: 0.5rem;
    }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.7rem;
      font-weight: 400;
      color: var(--gold-light);
      margin-bottom: 1.5rem;
      line-height: 1.2;
    }
    .section-body {
      font-size: 0.85rem;
      color: var(--white-dim);
      line-height: 1.9;
    }
    .section-body p { margin-bottom: 1rem; }
    .section-body ul {
      list-style: none;
      margin: 1rem 0 1rem 0;
    }
    .section-body ul li {
      padding: 0.4rem 0 0.4rem 1.5rem;
      position: relative;
      border-bottom: 1px solid rgba(201,168,76,0.07);
    }
    .section-body ul li:last-child { border-bottom: none; }
    .section-body ul li::before {
      content: '◆';
      position: absolute; left: 0;
      color: var(--gold);
      font-size: 0.45rem;
      top: 0.65rem;
    }
    .section-body a {
      color: var(--gold);
      text-decoration: none;
      border-bottom: 1px solid var(--gold-dim);
      transition: border-color 0.3s, color 0.3s;
    }
    .section-body a:hover { color: var(--gold-light); border-color: var(--gold-light); }

    .update-bar {
      background: rgba(201,168,76,0.06);
      border-left: 2px solid var(--gold);
      padding: 1rem 1.5rem;
      margin-bottom: 3rem;
      font-size: 0.78rem;
      color: var(--white-dim);
      letter-spacing: 0.05em;
    }
    .update-bar strong { color: var(--gold); font-weight: 500; }

    /* FOOTER */
    footer {
      background: var(--black-2);
      border-top: 1px solid var(--glass-border);
      padding: 5rem 5% 2rem;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 4rem;
      max-width: 1100px;
      margin: 0 auto 4rem;
    }
    .footer-brand {}
    .footer-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem;
      color: var(--gold);
      font-weight: 500;
      margin-bottom: 1rem;
      display: block;
    }
    .footer-logo span { font-style: italic; color: var(--gold-light); }
    .footer-tagline {
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      color: var(--white-dim);
      text-transform: uppercase;
      margin-bottom: 1.5rem;
    }
    .footer-contact p {
      font-size: 0.8rem;
      color: var(--white-dim);
      margin-bottom: 0.6rem;
    }
    .footer-contact a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
    .footer-contact a:hover { color: var(--gold-light); }
    .footer-col-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1rem;
      color: var(--gold);
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-bottom: 1.5rem;
      position: relative;
      padding-bottom: 0.8rem;
    }
    .footer-col-title::after {
      content: '';
      position: absolute; bottom: 0; left: 0;
      width: 30px; height: 1px; background: var(--gold);
    }
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 0.8rem; }
    .footer-links a {
      color: var(--white-dim);
      text-decoration: none;
      font-size: 0.78rem;
      letter-spacing: 0.08em;
      transition: color 0.3s, padding-left 0.3s;
      display: inline-block;
    }
    .footer-links a:hover { color: var(--gold); padding-left: 6px; }
    .footer-divider {
      width: 100%; height: 1px;
      background: linear-gradient(to right, transparent, var(--glass-border), transparent);
      max-width: 1100px; margin: 0 auto 2rem;
    }
    .footer-bottom {
      max-width: 1100px;
      margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 1rem;
    }
    .footer-copy {
      font-size: 0.72rem;
      color: var(--white-dim);
      letter-spacing: 0.08em;
    }
    .footer-legal {
      display: flex; gap: 1.5rem;
    }
    .footer-legal a {
      font-size: 0.72rem;
      color: var(--white-dim);
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-legal a:hover { color: var(--gold); }

    /* WHATSAPP */
    .whatsapp-btn {
      position: fixed; bottom: 30px; right: 30px; z-index: 888;
      width: 58px; height: 58px;
      background: #25D366;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 20px rgba(37,211,102,0.4);
      text-decoration: none;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      animation: float 3s ease-in-out infinite;
    }
    .whatsapp-btn:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 30px rgba(37,211,102,0.6);
    }
    .whatsapp-btn svg { width: 28px; height: 28px; fill: white; }
    @keyframes float {
      0%,100% { transform: translateY(0); }
      50% { transform: translateY(-6px); }
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .nav-hamburger { display: flex; }
      .hero-title { font-size: 2.5rem; }
      .glass-card { padding: 2rem 1.5rem; }
      .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .footer-bottom { flex-direction: column; text-align: center; }
    }
    .mob-menu a:first-child,
    .nav-mobile a:first-child{
        color: #C9A84C !important;
        display: block !important;
    }
