/* =========================================================
   PALETA DE COLORES — COSMOPOLIS SYSTEM
   ========================================================= */

:root {
    /* Gold */
    --royal-gold: #D4AF37;
    --gold-premium: rgba(212,175,55,1);
    --gold-soft: rgba(212,175,55,0.6);
    --gold-glow: rgba(212,175,55,0.9);

    /* Neutrals */
    --light-gold: #EED47A;
    --dark-blue: #0A1F44;
    --black-premium: #000000;
    --white-soft: #DCDCDC;
}

/* =========================================================
   RESET & BASE
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none !important;
}

body {
    background-color: var(--black-premium);
    color: var(--white-soft);
    font-family: 'Open Sans', sans-serif;
    overflow-x: hidden;
}

/* =========================================================
   TYPOGRAPHY
   ========================================================= */

h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold-premium);
    letter-spacing: 1px;
}

/* =========================================================
   REVEAL ANIMATION
   ========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
   FORMS
   ========================================================= */

input,
textarea {
    width: 100%;
    padding: 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.18);
    color: #E6E6E6;
    margin-bottom: 20px;
    font-family: 'Open Sans', sans-serif;
}

/* =========================================================
   BUTTONS — PREMIUM CTA
   ========================================================= */

button {
    background: var(--gold-premium);
    color: #000;
    padding: 14px 30px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: box-shadow 0.3s ease, background 0.3s ease;
    box-shadow: 0 0 18px var(--gold-soft);
}

button:hover {
    background: var(--light-gold);
    box-shadow: 0 0 28px var(--gold-glow);
}

/* =========================================================
   PWA SPLASH SCREEN — PREMIUM
   ========================================================= */

#pwa-splash {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: splashFadeOut 1s ease forwards;
    animation-delay: 1.8s;
}

.splash-logo {
    width: 140px;
    height: 140px;
    background: url('/img/favicon/icon-512.png') center / contain no-repeat;
    animation: logoGlow 1.8s ease-in-out;
}

/* =========================================================
   GOLD GLOW ANIMATION
   ========================================================= */

@keyframes logoGlow {
    0% {
        transform: scale(0.9);
        opacity: 0;
        filter: drop-shadow(0 0 0px rgba(212,175,55,0));
    }
    50% {
        opacity: 1;
        filter: drop-shadow(0 0 20px var(--gold-soft));
    }
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 35px var(--gold-glow));
    }
}

/* =========================================================
   SPLASH FADE OUT
   ========================================================= */

@keyframes splashFadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* ===============================
   CONSENT MODAL — ULTRA LUXURY
================================ */

.consent-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.consent-modal.show {
  opacity: 1;
  pointer-events: all;
}

.consent-box {
  max-width: 420px;
  padding: 40px;
  background: radial-gradient(circle at top, #111, #000);
  border: 1px solid rgba(212,175,55,0.4);
  box-shadow: 0 0 60px rgba(212,175,55,0.15);
  text-align: center;
}

.consent-box h3 {
  font-family: 'Cormorant Garamond', serif;
  color: #D4AF37;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.consent-box p {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 28px;
}

.consent-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.consent-actions button {
  padding: 10px 20px;
  border: 1px solid #D4AF37;
  background: transparent;
  color: #D4AF37;
  font-size: 13px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.consent-actions button:hover {
  background: #D4AF37;
  color: #000;
}


