/* ============================================================
   COCINEXPRES — PREMIUM EFFECTS LAYER
   ============================================================ */

/* ========================
   CUSTOM SCROLLBAR
   ======================== */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #1a1a1a; }
::-webkit-scrollbar-thumb { background: #FFC107; border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: #FFD54F; }

/* ========================
   CUSTOM CURSOR (desktop only)
   ======================== */
@media (pointer: fine) {
  * { cursor: none !important; }

  .cursor-dot {
    position: fixed; top: 0; left: 0; z-index: 9999;
    width: 8px; height: 8px; border-radius: 50%;
    background: #FFC107;
    pointer-events: none;
    transform: translate(-50%, -50%);
    will-change: left, top;
    transition: width .15s ease, height .15s ease, background .15s ease, opacity .3s;
  }

  .cursor-ring {
    position: fixed; top: 0; left: 0; z-index: 9998;
    width: 34px; height: 34px; border-radius: 50%;
    border: 1.5px solid rgba(255,193,7,.5);
    pointer-events: none;
    transform: translate(-50%, -50%);
    will-change: left, top;
    transition: width .45s cubic-bezier(.165,.84,.44,1),
                height .45s cubic-bezier(.165,.84,.44,1),
                border-color .3s, background .3s;
  }

  .cursor-ring.hovering {
    width: 56px; height: 56px;
    border-color: rgba(255,193,7,.8);
    background: rgba(255,193,7,.06);
  }

  .cursor-ring.clicking {
    width: 22px; height: 22px;
    background: rgba(255,193,7,.2);
  }
}

/* ========================
   NOISE / GRAIN TEXTURE
   ======================== */
.grain::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='.055'/%3E%3C/svg%3E");
  pointer-events: none; mix-blend-mode: overlay;
}

/* ========================
   PREMIUM REVEAL SYSTEM
   ======================== */
[data-reveal] {
  opacity: 0;
  transition: opacity .9s cubic-bezier(.165,.84,.44,1),
              transform .9s cubic-bezier(.165,.84,.44,1);
}
[data-reveal]:not([data-reveal="left"]):not([data-reveal="right"]):not([data-reveal="scale"]) {
  transform: translateY(50px);
}
[data-reveal="left"]  { transform: translateX(-50px); }
[data-reveal="right"] { transform: translateX(50px); }
[data-reveal="scale"] { transform: scale(.93); }

[data-reveal].is-visible {
  opacity: 1;
  transform: none !important;
}

/* Stagger children */
[data-stagger] > * {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity .7s cubic-bezier(.165,.84,.44,1),
              transform .7s cubic-bezier(.165,.84,.44,1);
}
[data-stagger].is-staggered > * { opacity: 1; transform: none; }
[data-stagger].is-staggered > *:nth-child(1) { transition-delay:   0ms; }
[data-stagger].is-staggered > *:nth-child(2) { transition-delay: 100ms; }
[data-stagger].is-staggered > *:nth-child(3) { transition-delay: 200ms; }
[data-stagger].is-staggered > *:nth-child(4) { transition-delay: 300ms; }
[data-stagger].is-staggered > *:nth-child(5) { transition-delay: 400ms; }
[data-stagger].is-staggered > *:nth-child(6) { transition-delay: 500ms; }
[data-stagger].is-staggered > *:nth-child(7) { transition-delay: 600ms; }
[data-stagger].is-staggered > *:nth-child(8) { transition-delay: 700ms; }
[data-stagger].is-staggered > *:nth-child(9) { transition-delay: 800ms; }

/* ========================
   GLOW BUTTONS
   ======================== */
.btn-glow {
  position: relative;
  transition: box-shadow .4s ease, transform .25s ease, background .25s ease !important;
}
.btn-glow::after {
  content: '';
  position: absolute; inset: -2px;
  border-radius: inherit;
  background: radial-gradient(ellipse at center, rgba(255,193,7,.5), transparent 70%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none; z-index: -1;
  filter: blur(8px);
}
.btn-glow:hover {
  box-shadow: 0 0 30px rgba(255,193,7,.45), 0 0 60px rgba(255,193,7,.15), 0 6px 20px rgba(0,0,0,.2) !important;
  transform: translateY(-3px) !important;
}
.btn-glow:hover::after { opacity: 1; }
.btn-glow:active { transform: translateY(-1px) !important; }

/* ========================
   STATS STRIP
   ======================== */
.stats-strip {
  background: #111111;
  border-top: 1px solid rgba(255,193,7,.18);
  border-bottom: 1px solid rgba(255,193,7,.18);
  padding: 32px 0;
  position: relative; overflow: hidden;
}

.stat-item {
  text-align: center;
  padding: 12px 16px;
  position: relative;
  transition: transform .3s ease;
}
.stat-item:hover { transform: translateY(-4px); }

.stat-item + .stat-item::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  height: 40px; width: 1px;
  background: rgba(255,193,7,.2);
}

.stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  color: #FFC107;
  line-height: 1;
  display: block;
  letter-spacing: -.01em;
}

.stat-label {
  font-size: .7rem;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-top: 6px;
  display: block;
}

/* ========================
   MARQUEE ZONES STRIP
   ======================== */
.marquee-strip {
  background: #FFC107;
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.marquee-track {
  display: inline-flex;
  animation: marquee-scroll 28s linear infinite;
}
.marquee-strip:hover .marquee-track { animation-play-state: paused; }

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-item {
  display: inline-flex; align-items: center; gap: 18px;
  padding: 0 28px;
  font-weight: 700; font-size: .72rem;
  color: #1a1a1a;
  text-transform: uppercase; letter-spacing: .12em;
  font-family: 'Oswald', sans-serif;
}
.marquee-sep {
  color: rgba(0,0,0,.3);
  font-size: 1rem;
}

/* ========================
   3D CARD TILT
   ======================== */
.tilt-card {
  transform-style: preserve-3d;
  transform: perspective(1000px) rotateX(0) rotateY(0);
  will-change: transform;
}
.tilt-card:hover {
  box-shadow: 0 28px 60px rgba(0,0,0,.18), 0 0 0 1px rgba(255,193,7,.12) !important;
}
.tilt-shine {
  position: absolute; inset: 0; z-index: 20;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,.1), transparent 65%);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.tilt-card:hover .tilt-shine { opacity: 1; }

/* ========================
   FLOATING WHATSAPP
   ======================== */
.whatsapp-float {
  position: fixed; bottom: 30px; right: 28px; z-index: 500;
  display: flex; flex-direction: column; align-items: flex-end; gap: 8px;
}

.whatsapp-label {
  background: #111; color: rgba(255,255,255,.85);
  font-size: .72rem; font-weight: 600;
  padding: 5px 12px; border-radius: 999px;
  opacity: 0; transform: translateX(8px);
  transition: opacity .3s ease, transform .3s ease;
  pointer-events: none; white-space: nowrap;
  border: 1px solid rgba(255,255,255,.08);
  letter-spacing: .04em;
}
.whatsapp-float:hover .whatsapp-label { opacity: 1; transform: translateX(0); }

.whatsapp-btn {
  position: relative;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  transition: transform .3s cubic-bezier(.165,.84,.44,1), box-shadow .3s ease;
  text-decoration: none;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,.55);
}
.whatsapp-btn svg { width: 26px; height: 26px; fill: white; }

.whatsapp-pulse {
  position: absolute; inset: -7px; border-radius: 50%;
  border: 2px solid rgba(37,211,102,.45);
  animation: wa-pulse 2.2s ease-out infinite;
}
.whatsapp-pulse-2 {
  position: absolute; inset: -14px; border-radius: 50%;
  border: 1.5px solid rgba(37,211,102,.2);
  animation: wa-pulse 2.2s ease-out infinite .7s;
}

@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ========================
   HERO ENHANCEMENTS
   ======================== */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,193,7,.12);
  border: 1px solid rgba(255,193,7,.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 6px 16px; margin-bottom: 28px;
  font-size: .72rem; font-weight: 700;
  color: #FFC107; letter-spacing: .12em;
  text-transform: uppercase;
  animation: badge-in 1s cubic-bezier(.165,.84,.44,1) .3s both;
}
.hero-badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #FFC107;
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: .3; }
}
@keyframes badge-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero title lines reveal */
.hero-line {
  display: block; overflow: hidden;
}
.hero-line-inner {
  display: block;
  animation: line-in 1s cubic-bezier(.165,.84,.44,1) both;
}
.hero-line:nth-child(1) .hero-line-inner { animation-delay: .5s; }
.hero-line:nth-child(2) .hero-line-inner { animation-delay: .7s; }

@keyframes line-in {
  from { transform: translateY(105%); }
  to   { transform: translateY(0); }
}

/* CTA buttons hero */
.hero-ctas {
  animation: fade-up-in 1s cubic-bezier(.165,.84,.44,1) 1s both;
}
@keyframes fade-up-in {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ========================
   HERO PARALLAX CONTAINER
   ======================== */
.hero-parallax-container { overflow: hidden; }
.hero-parallax-img { will-change: transform; }

/* ========================
   SECTION EYEBROW TAG
   ======================== */
.eyebrow-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .68rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: #FFC107; margin-bottom: 12px;
}
.eyebrow-tag::before {
  content: '';
  display: block; width: 20px; height: 2px;
  background: #FFC107;
  border-radius: 1px;
}

/* ========================
   PREMIUM CARD BASE
   ======================== */
.premium-card {
  transition: transform .4s cubic-bezier(.165,.84,.44,1), box-shadow .4s ease !important;
}
.premium-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 50px rgba(0,0,0,.12) !important;
}

/* ========================
   MAGNETIC BUTTON EFFECT
   ======================== */
.btn-magnetic {
  position: relative;
  display: inline-flex;
  transition: transform .3s cubic-bezier(.165,.84,.44,1);
}

/* ========================
   ACCENT LINE ANIMATIONS
   ======================== */
.underline-anim {
  position: relative;
  display: inline-block;
}
.underline-anim::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: #FFC107;
  transition: width .4s cubic-bezier(.165,.84,.44,1);
}
.underline-anim:hover::after { width: 100%; }

/* ========================
   TRUST BADGE STRIP
   ======================== */
.trust-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  transition: border-color .3s, background .3s;
}
.trust-badge:hover {
  border-color: rgba(255,193,7,.3);
  background: rgba(255,193,7,.04);
}

/* ========================
   PREMIUM TESTIMONIAL
   ======================== */
.testimonial-quote {
  font-size: 4rem; line-height: 1;
  color: rgba(255,193,7,.15);
  font-family: 'Oswald', serif;
  font-weight: 700;
  position: absolute; top: 12px; right: 20px;
  pointer-events: none; user-select: none;
}

/* ========================
   SMOOTH SECTION BORDERS
   ======================== */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,193,7,.3), transparent);
  border: none; margin: 0;
}

/* ========================
   FLOATING NUMBERS (hero overlay)
   ======================== */
.hero-stat-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  padding: 8px 16px;
  animation: pill-float 4s ease-in-out infinite;
}
@keyframes pill-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}
.hero-stat-pill:nth-child(2) { animation-delay: 1.5s; }

/* ========================
   PROCESS STEP PULSE
   ======================== */
.step-number-glow {
  transition: box-shadow .3s ease !important;
}
.step-number-glow:hover {
  box-shadow: 0 0 20px rgba(255,193,7,.6), 0 0 40px rgba(255,193,7,.2) !important;
}

/* ========================
   GALLERY CARD PREMIUM
   ======================== */
.gallery-card-badge {
  position: absolute; top: 12px; left: 12px; z-index: 10;
  background: rgba(255,193,7,.95);
  color: #1a1a1a; font-weight: 700; font-size: .65rem;
  text-transform: uppercase; letter-spacing: .1em;
  padding: 4px 10px; border-radius: 4px;
  transform: translateY(-4px); opacity: 0;
  transition: transform .3s ease, opacity .3s ease;
}
.group\/card:hover .gallery-card-badge {
  transform: translateY(0); opacity: 1;
}

/* ========================
   BLOB DECORATIONS
   ======================== */
.blob-deco {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
  animation: blob-drift 8s ease-in-out infinite alternate;
}
@keyframes blob-drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(20px, -20px) scale(1.05); }
}

/* ========================
   NAVBAR PREMIUM ACTIVE
   ======================== */
#navbar a[href].active-nav {
  color: #FFC107 !important;
}

/* ========================
   LOAD ANIMATION
   ======================== */
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.page-fade-in { animation: fade-in .6s ease both; }

/* ========================
   TESTIMONIALS (CLUBNATURA)
   ======================== */
.testi-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.25); border: none; cursor: pointer;
  transition: all .35s ease; padding: 0; flex-shrink: 0;
}
.testi-dot--active {
  width: 36px; background: #FFC107; border-radius: 5px;
}
.testi-cards {
  position: relative;
  height: 380px;
}
@media (max-width: 1023px) {
  .testi-cards { height: 340px; }
}
.testi-card {
  position: absolute; inset: 0;
  background: #1e1e1e; border: 1px solid rgba(255,255,255,0.07);
  border-radius: 24px; padding: 36px;
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden;
  transform: translateX(40px) scale(0.95);
  transition: all .55s cubic-bezier(.4,0,.2,1);
  z-index: 1;
}
.testi-card--active {
  opacity: 1; visibility: visible;
  transform: translateX(0) scale(1);
  z-index: 2;
}

/* ========================
   CONTACT METHOD TOGGLE
   ======================== */
.cm-method-toggle {
  display: flex; gap: 8px;
}
.cm-method-btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 7px;
  padding: 10px 14px; border-radius: 999px; font-size: .76rem; font-weight: 700;
  border: 1.5px solid #e5e7eb; background: #f9fafb; color: #9ca3af;
  cursor: pointer;
  transition: all .22s ease;
  letter-spacing: .02em;
}
.cm-method-btn:hover:not(.active) {
  border-color: #FFC107; color: #1a1a1a; background: #fffbeb;
}
.cm-method-btn.active {
  background: #FFC107; border-color: #FFC107; color: #1a1a1a;
}
/* dark-card variant */
.bg-dark .cm-method-btn {
  background: #2d2d2d; border-color: #374151; color: #6b7280;
}
.bg-dark .cm-method-btn:hover:not(.active) {
  border-color: #FFC107; color: #FFC107; background: rgba(255,193,7,.08);
}
.bg-dark .cm-method-btn.active {
  background: #FFC107; border-color: #FFC107; color: #1a1a1a;
}
