/* ══════════════════════════════════════
   GLOBAL CSS — Golden Paradise
   Variables, reset, navbar, footer,
   WhatsApp sticky, reveal, mobile menu
══════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --teal:         #01C1CA;
  --teal-dark:    #014F55;
  --teal-light:   #E0F7F8;
  --dorado:       #C9982A;
  --dorado-claro: #E8B84B;
  --dorado-suave: #F5E6C0;
  --crema:        #FAF6EF;
  --crema-oscura: #F0E8D8;
  --blanco:       #FFFFFF;
  --texto:        #0A2D30;
  --texto-medio:  #1A4A4F;
  --texto-suave:  #5A8A8F;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;
  --radio:        12px;
  --radio-grande: 20px;
  --sombra:       0 8px 40px rgba(1,79,85,0.14);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--texto); background: var(--blanco); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(1,193,202,0.12);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(1,79,85,0.10); }
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 44px; width: auto; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-text span:first-child { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--teal-dark); }
.nav-logo-text span:last-child { font-size: 10px; color: var(--texto-suave); letter-spacing: 1px; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { font-size: 13px; font-weight: 500; color: var(--texto-medio); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-cta {
  background: var(--teal) !important; color: #fff !important;
  padding: 10px 22px; border-radius: 30px;
  font-size: 13px !important; font-weight: 600 !important;
  transition: background 0.2s, transform 0.15s !important;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--teal-dark) !important; transform: translateY(-1px); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--teal-dark);
  border-radius: 2px;
  transition: 0.3s;
}

/* ── FOOTER ── */
.footer { background: #020e10; padding: 32px; text-align: center; }
.footer p { font-size: 13px; color: rgba(255,255,255,0.25); }
.footer a { color: rgba(255,255,255,0.4); }

/* ── WHATSAPP STICKY ── */
.whatsapp-sticky {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  display: flex; flex-direction: column; align-items: flex-end; gap: 8px;
}
.whatsapp-sticky a {
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: transform 0.25s, box-shadow 0.25s; text-decoration: none; position: relative;
}
.whatsapp-sticky a:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.65); }
.whatsapp-sticky a::before {
  content: ''; position: absolute; width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; animation: pulse 2s ease-out infinite;
}
@keyframes pulse { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(1.7); opacity: 0; } }
.whatsapp-sticky svg { width: 30px; height: 30px; position: relative; z-index: 1; }
.wa-tooltip {
  background: var(--teal-dark); color: var(--crema);
  font-size: 12px; font-weight: 600; padding: 6px 14px;
  border-radius: 20px; white-space: nowrap;
  opacity: 0; transform: translateX(8px); transition: all 0.25s; pointer-events: none;
}
.whatsapp-sticky:hover .wa-tooltip { opacity: 1; transform: translateX(0); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── MOBILE MENU ── */
@media (max-width: 768px) {
  .nav-hamburger { display: flex !important; }
  .nav-links {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 16px 0 24px;
    box-shadow: 0 8px 32px rgba(1,79,85,0.15);
    border-bottom: 2px solid rgba(1,193,202,0.15);
    z-index: 999;
    gap: 0;
  }
  .nav-links.mobile-open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 14px 28px;
    font-size: 15px;
    color: #1A4A4F;
    border-bottom: 1px solid rgba(1,193,202,0.08);
    transition: background 0.2s, color 0.2s;
  }
  .nav-links a:hover { background: #E0F7F8; color: #01C1CA; }
  .nav-links .nav-cta {
    margin: 16px 28px 0;
    text-align: center;
    border-radius: 30px !important;
    border-bottom: none !important;
    padding: 14px 28px !important;
  }
  .nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-hamburger.active span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
  .nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
}
