/* =========================================================
   THAYS POSTRES - style.css (CORREGIDO / LIMPIO / ORDENADO)
   - Tokens + Light theme
   - Base/Reset
   - Header/Nav (activo + mobile)
   - Buttons + Social brand (data-*)
   - Hero/Banner
   - Sections/Cards/Images (hover fuerte)
   - Gallery
   - Carousel + Ribbon
   - Promos + Video
   - FAQ
   - Footer
   - Support Floating Panel
   - Lists/KV
   - Page hero (internas)
   - Forms/Filters
   - Menu grid
   - Chat widget
   - Responsive + Reduced motion
   ========================================================= */

/* =========================
   1) THEME TOKENS
   ========================= */
:root{
  --bg:#0b0b10;
  --panel:#101019;
  --card:#141424;
  --text:#f6f6fb;
  --muted:rgba(246,246,251,.72);
  --line:rgba(255,255,255,.10);
  --shadow:0 14px 50px rgba(0,0,0,.45);
  --shadow-soft:0 10px 24px rgba(0,0,0,.28);
  --radius:20px;
  --radius-sm:14px;
  --pad:16px;
  --max:1100px;
  --accent:#ff5fa6;
  --accent2:#8a5cff;
  --ok:#2de3a6;
  --g1: rgba(255,95,166,.18);
  --g2: rgba(138,92,255,.18);
  --g3: rgba(45,227,166,.10);

  /* Social Brand */
  --wa:#25D366;
  --fb:#1877F2;
  --ig1:#F58529;
  --ig2:#DD2A7B;
  --ig3:#8134AF;
  --tg:#26A5E4;

  /* Motion (✅ estable) */
  --ease: cubic-bezier(.2,.8,.2,1);
  --dur-fast: 160ms;
  --dur-mid: 240ms;
  --lift-1: translateY(-2px);
  --lift-2: translateY(-6px);

  /* Focus ring */
  --focus: 0 0 0 3px rgba(255,255,255,.16), 0 0 0 5px rgba(138,92,255,.22);
}

html[data-theme="light"]{
  --header-bg: rgba(250,250,255,.78);
  --nav-bg: rgba(250,250,255,.94);
  --float-bg: rgba(255,255,255,.72);
  --glass: rgba(255,255,255,.55);

  --bg:#fafaff;
  --panel:#ffffff;
  --card:#ffffff;
  --text:#0c0c12;
  --muted:rgba(12,12,18,.72);
  --line:rgba(12,12,18,.12);
  --shadow:0 14px 50px rgba(0,0,0,.12);
  --shadow-soft:0 10px 24px rgba(0,0,0,.10);
  --accent:#ff3b8d;
  --accent2:#6a4bff;
  --ok:#13b981;
  --g1: rgba(255,59,141,.16);
  --g2: rgba(106,75,255,.14);
  --g3: rgba(19,185,129,.10);
}

/* =========================
   2) BASE / RESET
   ========================= */
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:
    radial-gradient(1200px 600px at 20% -10%, var(--g1), transparent 60%),
    radial-gradient(900px 500px at 90% 0%, var(--g2), transparent 60%),
    radial-gradient(900px 500px at 60% 120%, var(--g3), transparent 60%),
    var(--bg);
  color:var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  line-height:1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
.wrapper{ width:min(100% - 32px, var(--max)); margin-inline:auto; }

::selection{
  background: rgba(255,95,166,.25);
  color: var(--text);
}

/* Focus */
:where(a,button,[role="button"],input,select,textarea):focus-visible{
  outline:none;
  box-shadow: var(--focus);
  border-radius: 14px;
}

/* =========================
   3) HEADER / NAV
   ========================= */
.site-header{
  position:sticky; top:0; z-index:1000;
  backdrop-filter: blur(10px);
  background: var(--header-bg, rgba(10,10,16,.55));
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:14px;
}

/* Desktop header layout */
.brand{ flex:0 0 auto; min-width: 240px; }
.nav{ flex:1 1 auto; justify-content:center; }
.nav-links{ flex-wrap:nowrap; justify-content:center; white-space:nowrap; overflow:hidden; }
.nav-link{ white-space:nowrap; }
.nav-cta{ flex:0 0 auto; flex-wrap:nowrap; }

.brand{ display:flex; align-items:center; gap:12px; }
.brand-mark{
  width:40px; height:40px; border-radius:999px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.7), transparent 35%),
    linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 10px 30px rgba(255,95,166,.18);
  border:1px solid rgba(255,255,255,.14);
}
.brand-logo{
  width:40px;height:40px;border-radius:999px;
  object-fit:cover;border:1px solid rgba(255,255,255,.14);
}
.brand-text{ display:flex; flex-direction:column; }
.brand-name{ font-weight:900; letter-spacing:.2px; }
.brand-sub{ font-size:12px; color:var(--muted); }

.nav{ display:flex; align-items:center; gap:16px; }
.nav-links{ display:flex; gap:10px; flex-wrap:wrap; align-items:center; }

.nav-link{
  display:inline-flex;
  align-items:center;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid transparent;
  color:var(--text);
  opacity:.86;
  font-weight:800;
  font-size:14px;
  transition:
    transform var(--dur-fast) var(--ease),
    background-color var(--dur-fast) var(--ease),
    border-color var(--dur-fast) var(--ease),
    box-shadow var(--dur-fast) var(--ease),
    opacity var(--dur-fast) var(--ease);
}
.nav-link:hover{
  opacity:1;
  transform: translateY(-1px);
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
  box-shadow: 0 12px 22px rgba(0,0,0,.18);
}

/* ACTIVE NAV (current page) */
.nav-link.is-active,
.nav-link[aria-current="page"]{
  opacity:1;
  border-color: rgba(255,255,255,.22);
  background:
    radial-gradient(140px 90px at 20% 20%, rgba(255,255,255,.12), transparent 65%),
    linear-gradient(135deg, rgba(255,95,166,.20), rgba(138,92,255,.18));
  box-shadow:
    0 18px 42px rgba(0,0,0,.28),
    0 0 0 1px rgba(255,95,166,.16),
    0 0 0 2px rgba(138,92,255,.10);
}

.nav-cta{ display:flex; gap:10px; align-items:center; }

/* Mobile nav toggle */
.nav-toggle{
  display:none;
  width:44px; height:44px; border-radius:14px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  cursor:pointer;
}
.nav-toggle span{
  display:block; height:2px; width:18px;
  background:rgba(255,255,255,.85);
  margin:5px auto;
  border-radius:2px;
}

html[data-theme="light"] .site-header{ background: rgba(250,250,255,.75); }

/* =========================
   4) BUTTONS (base)
   ========================= */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:11px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color:var(--text);
  font-weight:900;
  font-size:14px;
  cursor:pointer;
  transition:
    transform var(--dur-fast) var(--ease),
    box-shadow var(--dur-fast) var(--ease),
    border-color var(--dur-fast) var(--ease),
    background-color var(--dur-fast) var(--ease),
    filter var(--dur-fast) var(--ease);
}
.btn:hover{
  transform: var(--lift-1);
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.22);
  box-shadow: 0 14px 28px rgba(0,0,0,.22);
}
.btn:disabled{ opacity:.55; cursor:not-allowed; transform:none; box-shadow:none; }

.btn-primary{
  border-color: rgba(255,95,166,.45);
  background:
    radial-gradient(140px 90px at 20% 20%, rgba(255,255,255,.18), transparent 60%),
    linear-gradient(135deg, rgba(255,95,166,.85), rgba(138,92,255,.85));
  box-shadow: 0 12px 34px rgba(138,92,255,.18);
}
.btn-primary:hover{
  transform: var(--lift-1);
  filter: brightness(1.03);
  box-shadow: 0 18px 42px rgba(138,92,255,.22);
}
.btn-ghost{ background:transparent; }

.btn-icon{ gap:10px; }
.btn-icon svg{ width:18px; height:18px; display:block; opacity:.92; }
.btn-icon span{ display:inline-block; }

/* =========================
   5) SOCIAL BRAND BUTTONS (WA / IG / FB)
   ========================= */
a.btn[data-wa-link],
a.btn[data-ig-link],
a.btn[data-fb-link]{
  position:relative;
  overflow:hidden;
}

/* WhatsApp */
a.btn[data-wa-link]{
  border-color: rgba(37,211,102,.45);
  background:
    radial-gradient(140px 90px at 20% 20%, rgba(255,255,255,.12), transparent 65%),
    linear-gradient(135deg, rgba(37,211,102,.28), rgba(0,0,0,0));
}
a.btn[data-wa-link] svg{ color: var(--wa); }
a.btn[data-wa-link]:hover{
  background:
    radial-gradient(180px 110px at 20% 20%, rgba(255,255,255,.14), transparent 65%),
    linear-gradient(135deg, rgba(37,211,102,.35), rgba(37,211,102,.08));
  border-color: rgba(37,211,102,.70);
  box-shadow: 0 18px 44px rgba(37,211,102,.18), 0 14px 28px rgba(0,0,0,.20);
}

/* Facebook */
a.btn[data-fb-link]{
  border-color: rgba(24,119,242,.45);
  background:
    radial-gradient(140px 90px at 20% 20%, rgba(255,255,255,.12), transparent 65%),
    linear-gradient(135deg, rgba(24,119,242,.26), rgba(0,0,0,0));
}
a.btn[data-fb-link] svg{ color: var(--fb); }
a.btn[data-fb-link]:hover{
  background:
    radial-gradient(180px 110px at 20% 20%, rgba(255,255,255,.14), transparent 65%),
    linear-gradient(135deg, rgba(24,119,242,.34), rgba(24,119,242,.08));
  border-color: rgba(24,119,242,.72);
  box-shadow: 0 18px 44px rgba(24,119,242,.18), 0 14px 28px rgba(0,0,0,.20);
}

/* Instagram */
a.btn[data-ig-link]{
  border-color: rgba(221,42,123,.45);
  background:
    radial-gradient(140px 90px at 20% 20%, rgba(255,255,255,.12), transparent 65%),
    linear-gradient(90deg,
      rgba(245,133,41,.16),
      rgba(221,42,123,.16),
      rgba(129,52,175,.14)
    );
}
a.btn[data-ig-link] svg{ color: rgba(221,42,123,.95); }
a.btn[data-ig-link]:hover{
  background:
    radial-gradient(180px 110px at 20% 20%, rgba(255,255,255,.14), transparent 65%),
    linear-gradient(90deg,
      rgba(245,133,41,.22),
      rgba(221,42,123,.22),
      rgba(129,52,175,.20)
    );
  border-color: rgba(221,42,123,.70);
  box-shadow: 0 18px 44px rgba(221,42,123,.18), 0 14px 28px rgba(0,0,0,.20);
}

/* If a social button is also .btn-primary, keep primary look */
a.btn.btn-primary[data-wa-link],
a.btn.btn-primary[data-fb-link],
a.btn.btn-primary[data-ig-link]{
  background:
    radial-gradient(140px 90px at 20% 20%, rgba(255,255,255,.18), transparent 60%),
    linear-gradient(135deg, rgba(255,95,166,.85), rgba(138,92,255,.85));
  border-color: rgba(255,95,166,.45);
}
a.btn.btn-primary[data-wa-link] svg,
a.btn.btn-primary[data-fb-link] svg,
a.btn.btn-primary[data-ig-link] svg{
  color: rgba(255,255,255,.92);
}

/* Theme toggle */
.theme-toggle{
  width:44px; height:44px;
  border-radius:14px;
  background:rgba(26, 17, 0, 0.356);
  border:1px solid rgba(4, 255, 184, 0.973);
  color:var(--text);
  cursor:pointer;
  display:inline-flex; align-items:center; justify-content:center;
  gap:6px;
  transition:
    transform var(--dur-fast) var(--ease),
    background-color var(--dur-fast) var(--ease),
    border-color var(--dur-fast) var(--ease),
    box-shadow var(--dur-fast) var(--ease);
}
.theme-toggle:hover{ background:rgba(9, 201, 19, 0.918); transform: var(--lift-1); }
.theme-toggle svg{ width:18px;height:18px;display:block;opacity:.9; }

/* =========================
   6) HERO
   ========================= */
.hero{ padding:42px 0 22px; }

.card{
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.kicker{
  display:inline-flex; align-items:center; gap:8px;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: var(--glass, rgba(255, 255, 255, 0.829));
  color: rgba(246,246,251,.9);
  font-weight:800;
  font-size:12px;
}

.h1{
  margin:12px 0 10px;
  font-size: clamp(28px, 4vw, 44px);
  line-height:1.05;
  letter-spacing:-.3px;
  font-weight:900;
}

.lead{
  margin:0 0 16px;
  color: var(--muted);
  font-size: 16px;
  max-width: 62ch;
}

.hero-actions{ display:flex; gap:10px; flex-wrap:wrap; margin-top:14px; }

.pill{
  padding:9px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: var(--glass, rgba(255,255,255,.06));
  font-weight:800;
  font-size:12px;
  color: rgba(246,246,251,.86);
}

/* V2 banner */
.hero-banner{
  position:relative;
  overflow:hidden;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  box-shadow: var(--shadow-soft);
  min-height: 360px;
  transition:
    transform var(--dur-mid) var(--ease),
    box-shadow var(--dur-mid) var(--ease),
    border-color var(--dur-mid) var(--ease),
    filter var(--dur-mid) var(--ease);
}
.hero-banner .bg{
  position:absolute; inset:0;
  background:
    radial-gradient(800px 360px at 15% 20%, rgba(255,95,166,.24), transparent 60%),
    radial-gradient(700px 320px at 85% 25%, rgba(138,92,255,.22), transparent 60%),
    rgba(0,0,0,.18);
}
.hero-banner .media{
  position:absolute; inset:0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.06) contrast(1.03);
  transform: scale(1.02);
  transition:
    transform var(--dur-mid) var(--ease),
    filter var(--dur-mid) var(--ease);
}
.hero-banner:after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(10,10,16,.72) 0%, rgba(10,10,16,.40) 45%, rgba(10,10,16,.18) 100%);
}
.hero-banner .content{
  position:relative;
  z-index:2;
  padding: 26px;
  width:min(640px, 100%);
}
.banner-badges{ display:flex; gap:8px; flex-wrap:wrap; margin-top:12px; }
.banner-badges .pill{ background:rgba(0,0,0,.28); }
.banner-note{ color:var(--muted); font-weight:700; font-size:13px; margin-top:10px; }

.hero-banner:hover{
  transform: var(--lift-1);
  border-color: rgba(255,255,255,.22);
  box-shadow:
    0 22px 54px rgba(0,0,0,.32),
    0 0 0 1px rgba(255,95,166,.16),
    0 0 0 2px rgba(138,92,255,.10);
}
.hero-banner:hover .media{
  transform: scale(1.06);
  filter: saturate(1.12) contrast(1.06);
}

/* =========================
   7) SECTIONS + CARDS + IMAGES
   ========================= */
.section{ padding:18px 0; position:relative; }

.section::before{
  content:"";
  position:absolute;
  left:0;
  top:10px;
  height: calc(100% - 20px);
  width:2px;
  border-radius:999px;
  opacity:0;
  transform: translateX(-6px);
  transition:
    opacity var(--dur-mid) var(--ease),
    transform var(--dur-mid) var(--ease),
    background-color var(--dur-mid) var(--ease),
    box-shadow var(--dur-mid) var(--ease);
}
.section:hover::before{
  opacity:1;
  transform: translateX(0);
  background: linear-gradient(180deg,
    rgba(255,95,166,.00),
    rgba(255,95,166,.55),
    rgba(138,92,255,.55),
    rgba(45,227,166,.00)
  );
  box-shadow: 0 0 18px rgba(138,92,255,.22);
}

.section-head{
  display:flex; align-items:flex-end; justify-content:space-between; gap:12px;
  margin:12px 0 14px;
}

.section h2{
  margin:0;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight:900;
  letter-spacing:-.2px;
}
.section .sub{ margin:6px 0 0; color:var(--muted); max-width:70ch; }

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.card-pad{ padding:16px; }

.icon{
  width:42px; height:42px; border-radius:16px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.55), transparent 40%),
    linear-gradient(135deg, rgba(255,95,166,.85), rgba(138,92,255,.85));
  border:1px solid rgba(255,255,255,.14);
  box-shadow: 0 14px 40px rgba(255,95,166,.14);
  display:flex; align-items:center; justify-content:center;
  font-weight:900;
}

.card-title{ margin:12px 0 6px; font-weight:900; }
.card-text{ margin:0; color:var(--muted); font-size:14px; }

.card{
  position:relative;
  overflow:hidden;
  transition:
    transform var(--dur-mid) var(--ease),
    box-shadow var(--dur-mid) var(--ease),
    border-color var(--dur-mid) var(--ease),
    filter var(--dur-mid) var(--ease);
}
.card::after{
  content:"";
  position:absolute;
  inset:-2px;
  background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,.14) 50%, transparent 60%);
  opacity:0;
  transform: translateX(-18%);
  pointer-events:none;
  transition:
    opacity 220ms var(--ease),
    transform 460ms var(--ease);
}
.card:hover{
  transform: var(--lift-2);
  border-color: rgba(255,255,255,.22);
  filter: saturate(1.03);
  box-shadow:
    0 22px 54px rgba(0,0,0,.30),
    0 0 0 1px rgba(255,95,166,.16),
    0 0 0 2px rgba(138,92,255,.10);
}
.card:hover::after{
  opacity:1;
  transform: translateX(18%);
}

/* Image cards */
.img-card{ overflow:hidden; }
.img-card .img{
  height: 160px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background-size: cover;
  background-position: center;
  background-color: rgba(0,0,0,.20);
  transform: scale(1);
  filter: saturate(1.04) contrast(1.02);
  transition:
    transform var(--dur-mid) var(--ease),
    filter var(--dur-mid) var(--ease),
    border-color var(--dur-mid) var(--ease);
}
.img-card:hover .img{
  transform: scale(1.06);
  filter: saturate(1.14) contrast(1.06);
  border-color: rgba(255,255,255,.18);
}

/* =========================
   8) GALLERY
   ========================= */
.gallery{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:10px;
}

.ph{
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(240px 120px at 20% 20%, rgba(255,95,166,.22), transparent 60%),
    radial-gradient(240px 120px at 80% 20%, rgba(138,92,255,.20), transparent 60%),
    radial-gradient(220px 110px at 50% 90%, rgba(45,227,166,.12), transparent 60%),
    rgba(0,0,0,.22);
  overflow:hidden;
  min-height:140px;
  position:relative;
  transition:
    transform var(--dur-mid) var(--ease),
    box-shadow var(--dur-mid) var(--ease),
    border-color var(--dur-mid) var(--ease),
    filter var(--dur-mid) var(--ease);
}
.ph:after{
  content:"";
  position:absolute; inset:-2px;
  background: linear-gradient(135deg, rgba(255,255,255,.12), transparent 40%);
  opacity:.45;
  pointer-events:none;
}
.ph:hover{
  transform: var(--lift-2);
  border-color: rgba(255,255,255,.22);
  filter: saturate(1.06);
  box-shadow:
    0 22px 54px rgba(0,0,0,.30),
    0 0 0 1px rgba(255,95,166,.16),
    0 0 0 2px rgba(138,92,255,.10);
}
.ph .tag{
  position:absolute; left:10px; bottom:10px;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.14);
  font-size:12px;
  font-weight:900;
}

/* =========================
   9) CAROUSEL
   ========================= */
.carousel{
  position:relative;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.12);
  background: var(--glass, rgba(255,255,255,.06));
  overflow:hidden;
  box-shadow: var(--shadow-soft);
  transition:
    transform var(--dur-mid) var(--ease),
    box-shadow var(--dur-mid) var(--ease),
    border-color var(--dur-mid) var(--ease);
}
.carousel:hover{
  transform: var(--lift-1);
  border-color: rgba(255,255,255,.22);
  box-shadow:
    0 22px 54px rgba(0,0,0,.30),
    0 0 0 1px rgba(255,95,166,.16),
    0 0 0 2px rgba(138,92,255,.10);
}

.carousel-track{
  display:flex;
  transition: transform .45s var(--ease);
  will-change: transform;
}
.slide{ min-width:100%; padding:18px; }

.slide-inner{
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  padding:16px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  align-items:center;
  transition:
    border-color var(--dur-mid) var(--ease),
    box-shadow var(--dur-mid) var(--ease);
}
.slide-inner:hover{
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 18px 44px rgba(0,0,0,.22);
}

.slide h3{ margin:0 0 6px; font-weight:900; }
.slide p{ margin:0; color:var(--muted); }

.slide .preview{
  border-radius: 18px;
  min-height:160px;
  border:1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(260px 130px at 20% 20%, rgba(255,95,166,.26), transparent 60%),
    radial-gradient(260px 130px at 80% 20%, rgba(138,92,255,.22), transparent 60%),
    rgba(0,0,0,.25);
  position:relative;
  transform: scale(1);
  transition:
    transform var(--dur-mid) var(--ease),
    filter var(--dur-mid) var(--ease);
}
.slide-inner:hover .preview{
  transform: scale(1.04);
  filter: saturate(1.10);
}
.slide .preview:before{
  content:"";
  position:absolute; inset:10px;
  border-radius: 14px;
  border:1px dashed rgba(255,255,255,.22);
}

.carousel-controls{
  position:absolute; inset:auto 10px 10px 10px;
  display:flex; gap:10px; justify-content:space-between; align-items:center;
}

.carousel-btn{
  width:44px; height:44px;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  color:var(--text);
  cursor:pointer;
  display:inline-flex; align-items:center; justify-content:center;
  font-weight:900;
  transition:
    transform var(--dur-fast) var(--ease),
    box-shadow var(--dur-fast) var(--ease),
    border-color var(--dur-fast) var(--ease),
    background-color var(--dur-fast) var(--ease);
}
.carousel-btn:hover{
  transform: var(--lift-1);
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.22);
  box-shadow: 0 14px 28px rgba(0,0,0,.22);
}

.dots{ display:flex; gap:6px; align-items:center; }
.dot{
  width:10px; height:10px; border-radius:999px;
  border:1px solid rgba(255,255,255,.20);
  background: rgba(255,255,255,.08);
  cursor:pointer;
  transition:
    transform var(--dur-fast) var(--ease),
    background-color var(--dur-fast) var(--ease),
    border-color var(--dur-fast) var(--ease),
    box-shadow var(--dur-fast) var(--ease);
}
.dot:hover{ transform: scale(1.15); border-color: rgba(255,255,255,.32); }
.dot.is-active{
  background: linear-gradient(135deg, rgba(255,95,166,.85), rgba(138,92,255,.85));
  border-color: rgba(255,255,255,.30);
  box-shadow: 0 10px 26px rgba(138,92,255,.14);
}

/* =========================
   10) RIBBON (destacados)
   ========================= */
.ribbon{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  overflow:hidden;
  box-shadow: var(--shadow-soft);
  transition:
    transform var(--dur-mid) var(--ease),
    box-shadow var(--dur-mid) var(--ease),
    border-color var(--dur-mid) var(--ease);
}
.ribbon:hover{
  transform: var(--lift-1);
  border-color: rgba(255,255,255,.22);
  box-shadow:
    0 22px 54px rgba(0,0,0,.30),
    0 0 0 1px rgba(255,95,166,.16),
    0 0 0 2px rgba(138,92,255,.10);
}

.ribbon-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:12px;
  padding:14px 16px 8px;
}
.ribbon-head h3{ margin:0; font-weight:900; }
.ribbon-head p{ margin:6px 0 0; color:var(--muted); font-size:13px; }

.ribbon-controls{ display:flex; gap:8px; align-items:center; }

.ribbon-btn{
  width:44px; height:44px;
  border-radius:14px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  color:var(--text);
  cursor:pointer;
  display:inline-flex; align-items:center; justify-content:center;
  font-weight:900;
  transition:
    transform var(--dur-fast) var(--ease),
    box-shadow var(--dur-fast) var(--ease),
    border-color var(--dur-fast) var(--ease),
    background-color var(--dur-fast) var(--ease);
}
.ribbon-btn:hover{
  transform: var(--lift-1);
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.22);
  box-shadow: 0 14px 28px rgba(0,0,0,.22);
}

.ribbon-track{
  display:flex;
  gap:12px;
  padding: 10px 16px 16px;
  overflow:auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.ribbon-track::-webkit-scrollbar{ height:10px; }
.ribbon-track::-webkit-scrollbar-thumb{ background:rgba(255,255,255,.14); border-radius:999px; }

.ritem{
  scroll-snap-align: start;
  min-width: 240px;
  max-width: 240px;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  overflow:hidden;
  transition:
    transform var(--dur-mid) var(--ease),
    box-shadow var(--dur-mid) var(--ease),
    border-color var(--dur-mid) var(--ease);
}
.ritem:hover{
  transform: var(--lift-2);
  border-color: rgba(255,255,255,.22);
  box-shadow:
    0 22px 54px rgba(0,0,0,.28),
    0 0 0 1px rgba(255,95,166,.14),
    0 0 0 2px rgba(138,92,255,.10);
}
.rimg{
  height: 150px;
  background: rgba(0,0,0,.18);
  border-bottom:1px solid rgba(255,255,255,.10);
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition:
    transform var(--dur-mid) var(--ease),
    filter var(--dur-mid) var(--ease);
}
.ritem:hover .rimg{
  transform: scale(1.07);
  filter: saturate(1.14) contrast(1.06);
}
.rbody{ padding:12px; }
.rtitle{ margin:0; font-weight:900; }
.rsub{ margin:6px 0 0; color:var(--muted); font-size:13px; }
.rprice{ margin:10px 0 0; font-weight:900; }

.tagline{
  display:inline-flex; gap:8px; align-items:center;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: var(--glass, rgba(255,255,255,.06));
  color: rgba(246,246,251,.86);
  font-weight:900;
  font-size:12px;
}

/* =========================
   11) PROMOS + VIDEO
   ========================= */
.promo-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:12px;
}
.promo{
  padding:16px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(420px 220px at 20% 20%, rgba(255,95,166,.22), transparent 60%),
    radial-gradient(420px 220px at 80% 20%, rgba(138,92,255,.18), transparent 60%),
    rgba(0,0,0,.20);
  transition:
    transform var(--dur-mid) var(--ease),
    box-shadow var(--dur-mid) var(--ease),
    border-color var(--dur-mid) var(--ease);
}
.promo:hover{
  transform: var(--lift-2);
  border-color: rgba(255,255,255,.22);
  box-shadow:
    0 22px 54px rgba(0,0,0,.30),
    0 0 0 1px rgba(255,95,166,.16),
    0 0 0 2px rgba(138,92,255,.10);
}
.promo h3{ margin:0 0 6px; font-weight:900; }
.promo p{ margin:0; color:var(--muted); }

.video-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.video{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  overflow:hidden;
  transition:
    transform var(--dur-mid) var(--ease),
    box-shadow var(--dur-mid) var(--ease),
    border-color var(--dur-mid) var(--ease);
}
.video:hover{
  transform: var(--lift-2);
  border-color: rgba(255,255,255,.22);
  box-shadow:
    0 22px 54px rgba(0,0,0,.28),
    0 0 0 1px rgba(255,95,166,.14),
    0 0 0 2px rgba(138,92,255,.10);
}
.video .thumb{
  height: 200px;
  background: rgba(0,0,0,.20);
  background-size: cover;
  background-position: center;
  position:relative;
  transform: scale(1);
  transition:
    transform var(--dur-mid) var(--ease),
    filter var(--dur-mid) var(--ease);
}
.video:hover .thumb{
  transform: scale(1.06);
  filter: saturate(1.14) contrast(1.06);
}
.video .thumb:after{
  content:"▶";
  position:absolute;
  inset:auto auto 14px 14px;
  width:44px; height:44px;
  border-radius: 14px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.16);
  font-weight:900;
}
.video .body{ padding:12px; }
.video .title{ margin:0; font-weight:900; }
.video .desc{ margin:6px 0 0; color:var(--muted); font-size:13px; }

/* =========================
   12) FAQ
   ========================= */
.faq{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.qa{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  overflow:hidden;
  transition:
    transform var(--dur-mid) var(--ease),
    box-shadow var(--dur-mid) var(--ease),
    border-color var(--dur-mid) var(--ease);
}
.qa:hover{
  transform: var(--lift-1);
  border-color: rgba(228, 12, 12, 0.2);
  box-shadow: 0 18px 44px rgba(0,0,0,.22);
}
.qa button{
  width:100%;
  text-align:left;
  padding:14px 16px;
  background: transparent;
  border:0;
  color: var(--text);
  cursor:pointer;
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  font-weight:900;
}
.qa button:hover{ background: rgba(255,255,255,.06); }
.qa .a{
  padding:0 16px 14px;
  color: var(--muted);
  display:none;
}
.qa.is-open .a{ display:block; }
.chev{
  width:34px; height:34px; border-radius: 12px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.20);
  display:flex; align-items:center; justify-content:center;
}

/* =========================
   13) FOOTER
   ========================= */
.site-footer{
  margin-top: 22px;
  padding: 22px 0 40px;
  border-top: 1px solid var(--line);
  background: rgba(10,10,16,.35);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap:14px;
}
.footer-title{ font-weight:900; font-size:18px; margin-bottom:6px; }
.footer-col-title{ font-weight:900; margin-bottom:10px; }

.footer-links{ display:grid; gap:8px; color: rgba(246,246,251,.86); }
.footer-links a{ color: rgba(246,246,251,.86); }
.footer-links a:hover{ color: var(--text); text-decoration:underline; }

.footer-badges{ display:flex; gap:8px; flex-wrap:wrap; margin-top:12px; }
.badge{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  font-weight:900;
  font-size:12px;
  color: rgba(246,246,251,.86);
}

.footer-bottom{
  grid-column: 1 / -1;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.muted{ color:var(--muted); }

.footer-assistant-btn{ width:100%; justify-content:center; }

/* =========================
   14) SUPPORT FLOATING (panel)
   ========================= */
.support-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.45);
  opacity:0;
  pointer-events:none;
  transition: opacity var(--dur-fast) var(--ease);
  z-index:9997;
}
.support-overlay.is-open{ opacity:1; pointer-events:auto; }

.support-fab{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:9999;
  width:54px;
  height:54px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.06));
  backdrop-filter: blur(10px);
  display:grid;
  place-items:center;
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
  cursor:pointer;
  transition:
    transform var(--dur-fast) var(--ease),
    box-shadow var(--dur-fast) var(--ease),
    border-color var(--dur-fast) var(--ease),
    background-color var(--dur-fast) var(--ease);
}
.support-fab:hover{
  transform: var(--lift-1);
  border-color: rgba(255,255,255,.28);
  box-shadow: 0 18px 52px rgba(0,0,0,.45);
}
.support-fab svg{ width:26px; height:26px; opacity:.92; fill: currentColor; color: var(--text); }

.support-panel{
  position:fixed;
  right:18px;
  bottom:82px;
  z-index:9998;
  width:min(320px, calc(100vw - 36px));
  border-radius:18px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(18,18,24,.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 60px rgba(0,0,0,.45);
  padding:14px;
  transform: translateY(8px) scale(.98);
  opacity:0;
  pointer-events:none;
  transition:
    opacity var(--dur-fast) var(--ease),
    transform var(--dur-fast) var(--ease);
}
.support-panel.is-open{
  opacity:1;
  pointer-events:auto;
  transform: translateY(0) scale(1);
}
.support-panel .support-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:12px;
}
.support-panel .support-title{
  font-weight:800;
  letter-spacing:.2px;
  font-size:14px;
}
.support-panel .support-close{
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  border-radius:10px;
  padding:8px 10px;
  cursor:pointer;
  transition:
    transform var(--dur-fast) var(--ease),
    background-color var(--dur-fast) var(--ease),
    border-color var(--dur-fast) var(--ease);
}
.support-panel .support-close:hover{
  transform: var(--lift-1);
  background:rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.22);
}

.support-actions{ display:grid; gap:10px; }

.social-btn{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  text-decoration:none;
  border-radius:14px;
  padding:12px 12px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  transition:
    transform var(--dur-fast) var(--ease),
    border-color var(--dur-fast) var(--ease),
    box-shadow var(--dur-fast) var(--ease),
    background-color var(--dur-fast) var(--ease),
    filter var(--dur-fast) var(--ease);
  position:relative;
  overflow:hidden;
}
.social-btn::after{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius:16px;
  opacity:0;
  pointer-events:none;
  transition: opacity var(--dur-fast) var(--ease);
}
.social-btn:hover{
  transform: var(--lift-1);
  filter: saturate(1.05);
  box-shadow: 0 10px 30px rgba(226, 10, 10, 0.35);
}
.social-btn:hover::after{ opacity:1; }

.social-btn .left{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
}
.social-btn .label{
  font-weight:900;
  font-size:13px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.social-btn .sub{ font-size:12px; opacity:.78; }
.social-btn .meta{
  display:flex;
  flex-direction:column;
  min-width:0;
}
.social-btn svg{
  width:22px;
  height:22px;
  flex:0 0 auto;
  opacity:.95;
  fill: currentColor;
}

/* Network colors + glow */
.social-btn.is-wa{ border-left:4px solid var(--wa); }
.social-btn.is-wa svg{ color: var(--wa); }
.social-btn.is-wa::after{ background: radial-gradient(600px 120px at 10% 50%, rgba(37,211,102,.22), transparent 60%); }
.social-btn.is-wa:hover{ border-color: rgba(37,211,102,.55); background: rgba(37,211,102,.10); box-shadow: 0 12px 38px rgba(37,211,102,.18); }

.social-btn.is-fb{ border-left:4px solid var(--fb); }
.social-btn.is-fb svg{ color: var(--fb); }
.social-btn.is-fb::after{ background: radial-gradient(600px 120px at 10% 50%, rgba(24,119,242,.22), transparent 60%); }
.social-btn.is-fb:hover{ border-color: rgba(24,119,242,.55); background: rgba(24,119,242,.10); box-shadow: 0 12px 38px rgba(24,119,242,.18); }

.social-btn.is-ig{ border-left:4px solid rgba(221,42,123,.92); }
.social-btn.is-ig svg{ color: rgba(221,42,123,.92); }
.social-btn.is-ig::after{
  background: radial-gradient(600px 120px at 10% 50%,
    rgba(221,42,123,.20),
    rgba(245,133,41,.10) 35%,
    rgba(129,52,175,.14) 60%,
    transparent 72%
  );
}
.social-btn.is-ig:hover{
  border-color: rgba(221,42,123,.55);
  background: linear-gradient(90deg, rgba(245,133,41,.12), rgba(221,42,123,.12), rgba(129,52,175,.12));
  box-shadow: 0 12px 38px rgba(221,42,123,.18);
}

/* =========================
   15) LISTS / KV
   ========================= */
.list{ display:grid; gap:10px; }

.list-item{
  padding:14px 16px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  transition:
    transform var(--dur-mid) var(--ease),
    box-shadow var(--dur-mid) var(--ease),
    border-color var(--dur-mid) var(--ease);
}
.list-item:hover{
  transform: var(--lift-1);
  border-color: rgba(255,255,255,.20);
  box-shadow: 0 18px 44px rgba(0,0,0,.22);
}
.list-item b{ display:block; font-weight:900; }
.list-item span{ display:block; color:var(--muted); margin-top:4px; }

.kv{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.kv .list-item{ min-height: 96px; }

/* =========================
   16) PAGE HERO (internal pages)
   ========================= */
.page-hero{ padding:32px 0 14px; }
.page-hero .card{ padding:18px; }
.page-title{
  margin:0 0 6px;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height:1.12;
  font-weight:900;
}
.breadcrumb{ display:flex; gap:8px; flex-wrap:wrap; color:var(--muted); font-weight:800; font-size:13px; }
.breadcrumb a{ text-decoration:underline; text-underline-offset:3px; }
.breadcrumb .sep{ opacity:.5; }

/* =========================
   17) FORMS / FILTERS
   ========================= */
.filters{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  margin-top:12px;
}
.field{ display:flex; flex-direction:column; gap:6px; min-width: 220px; flex:1 1 220px; }
.label{ font-weight:900; font-size:12px; color: rgba(246,246,251,.86); }

.input, .select, .textarea{
  width:100%;
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-weight:700;
  outline:none;
  transition:
    transform var(--dur-fast) var(--ease),
    border-color var(--dur-fast) var(--ease),
    background-color var(--dur-fast) var(--ease),
    box-shadow var(--dur-fast) var(--ease);
}
.textarea{ min-height: 120px; resize: vertical; }
.input::placeholder, .textarea::placeholder{ color: rgba(246,246,251,.55); }
.input:focus, .select:focus, .textarea:focus{
  border-color: rgba(255,255,255,.22);
  box-shadow: var(--focus);
}

/* =========================
   18) MENU GRID
   ========================= */
.menu-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.menu-card{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  overflow:hidden;
  transition:
    transform var(--dur-mid) var(--ease),
    box-shadow var(--dur-mid) var(--ease),
    border-color var(--dur-mid) var(--ease);
}
.menu-card:hover{
  transform: var(--lift-2);
  border-color: rgba(255,255,255,.22);
  box-shadow:
    0 22px 54px rgba(0,0,0,.30),
    0 0 0 1px rgba(255,95,166,.16),
    0 0 0 2px rgba(138,92,255,.10);
}
.menu-media{
  height: 170px;
  background-size: cover;
  background-position:center;
  background-color: rgba(0,0,0,.20);
  border-bottom:1px solid rgba(255,255,255,.10);
  transform: scale(1);
  transition:
    transform var(--dur-mid) var(--ease),
    filter var(--dur-mid) var(--ease);
}
.menu-card:hover .menu-media{ transform: scale(1.06); filter: saturate(1.12) contrast(1.06); }
.menu-body{ padding:14px; }
.menu-name{ margin:0; font-weight:900; }
.menu-desc{ margin:6px 0 0; color:var(--muted); font-size:13px; }
.menu-meta{
  margin-top:12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.price{ font-weight:900; }
.chips{ display:flex; gap:6px; flex-wrap:wrap; }
.chip{
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  font-weight:900;
  font-size:12px;
  color: rgba(246,246,251,.86);
}

/* =========================
   19) CHAT WIDGET (local)
   ========================= */
.tp-chat-btn{
  position:fixed;
  right:18px;
  bottom:92px;
  z-index:9999;
  width:54px; height:54px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background: linear-gradient(135deg, rgba(255,95,166,.75), rgba(138,92,255,.75));
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
  cursor:pointer;
  display:grid;
  place-items:center;
  transition:
    transform var(--dur-fast) var(--ease),
    filter var(--dur-fast) var(--ease),
    box-shadow var(--dur-fast) var(--ease);
}
.tp-chat-btn:hover{ transform: var(--lift-1); filter: brightness(1.05); box-shadow: 0 18px 52px rgba(0,0,0,.45); }
.tp-chat-btn svg{ width:26px; height:26px; fill: currentColor; color: rgba(255,255,255,.95); }

.tp-chat{
  position:fixed;
  right:18px;
  bottom:152px;
  z-index:9998;
  width:min(360px, calc(100vw - 36px));
  border-radius:18px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(18,18,24,.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 60px rgba(0,0,0,.45);
  overflow:hidden;
  opacity:0;
  pointer-events:none;
  transform: translateY(10px) scale(.98);
  transition:
    opacity var(--dur-fast) var(--ease),
    transform var(--dur-fast) var(--ease);
}
.tp-chat.is-open{
  opacity:1;
  pointer-events:auto;
  transform: translateY(0) scale(1);
}
.tp-chat-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 12px;
  border-bottom:1px solid rgba(255,255,255,.10);
}
.tp-chat-title{ font-weight:900; letter-spacing:.2px; }
.tp-chat-close{
  width:36px; height:36px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: var(--text);
  cursor:pointer;
  font-size: 18px;
  line-height: 1;
}
.tp-chat-body{ padding:12px; display:grid; gap:10px; }
.tp-chat-bubble{
  padding:10px 12px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  font-weight:800;
}
.tp-chat-chips{ display:flex; flex-wrap:wrap; gap:8px; }

.tp-chip{
  padding:9px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.22);
  color: var(--text);
  cursor:pointer;
  font-weight:900;
  font-size:12px;
  transition:
    transform var(--dur-fast) var(--ease),
    background-color var(--dur-fast) var(--ease),
    border-color var(--dur-fast) var(--ease);
}
.tp-chip:hover{
  transform: var(--lift-1);
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.22);
}
.tp-chat-note{ color: var(--muted); font-weight:700; font-size:12px; }
.tp-chat-foot{ padding:12px; border-top:1px solid rgba(255,255,255,.10); }

/* =========================
   20) RESPONSIVE
   ========================= */
@media (max-width: 1180px){
  .cards{ grid-template-columns:1fr; }
  .gallery{ grid-template-columns: 1fr 1fr; }
  .footer-grid{ grid-template-columns:1fr; }
  .faq{ grid-template-columns:1fr; }
  .nav-toggle{ display:inline-flex; }
  .brand{ min-width:0; }

  .nav{
    position:absolute;
    right:16px;
    top:68px;
    width:min(460px, calc(100vw - 32px));
    padding:12px;
    border-radius: 18px;
    border:1px solid rgba(255,255,255,.14);
    background: var(--nav-bg, rgba(10,10,16,.92));
    box-shadow: var(--shadow);
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:12px;
  }
  .nav.is-open{ display:flex; }
  .nav-links{ flex-direction:column; align-items:stretch; }
  .nav-link{ width:100%; }
  .nav-cta{ justify-content:stretch; flex-direction:column; }
}

@media (max-width: 960px){
  .promo-grid{ grid-template-columns: 1fr; }
  .video-grid{ grid-template-columns: 1fr; }
  .hero-banner{ min-height: 420px; }
  .hero-banner:after{
    background: linear-gradient(180deg, rgba(10,10,16,.70) 0%, rgba(10,10,16,.40) 55%, rgba(10,10,16,.22) 100%);
  }
  .menu-grid{ grid-template-columns: 1fr; }
}

@media (max-width:520px){
  .btn-icon span{ display:none; }
  .btn-icon{ padding:11px 12px; }
}

/* =========================
   21) LIGHT THEME TUNING
   ========================= */
html[data-theme="light"] body{
  background:
    radial-gradient(1200px 600px at 20% -10%, var(--g1), transparent 60%),
    radial-gradient(900px 500px at 90% 0%, var(--g2), transparent 60%),
    radial-gradient(900px 500px at 60% 120%, var(--g3), transparent 60%),
    var(--bg);
}
html[data-theme="light"] .card,
html[data-theme="light"] .qa,
html[data-theme="light"] .list-item,
html[data-theme="light"] .ritem,
html[data-theme="light"] .video,
html[data-theme="light"] .promo,
html[data-theme="light"] .carousel,
html[data-theme="light"] .ribbon{
  background: rgba(255,255,255,.78);
  border-color: rgba(12,12,18,.12);
}
html[data-theme="light"] .nav-link:hover,
html[data-theme="light"] .btn:hover{
  box-shadow: 0 16px 34px rgba(0,0,0,.10);
}
html[data-theme="light"] .brand-sub{ color: var(--muted); }

/* =========================
   22) REDUCED MOTION
   ========================= */
@media (prefers-reduced-motion: reduce){
  *{ transition:none !important; }
  html{ scroll-behavior:auto !important; }
}
