/* =========================================================
   JM Decorações - Landing page
   Design system: dark sofisticado (rosa da marca + dourado)
   ========================================================= */

:root {
  /* Backgrounds */
  --bg: #150a10;
  --bg-2: #1c0e16;
  --surface: #241019;
  --surface-2: #2e1522;
  --surface-3: #3a1b2b;

  /* Brand */
  --wine: #a8476b;
  --pink: #e77aab;
  --pink-soft: #efa9cb;
  --gold: #e6bd7e;
  --gold-deep: #c99a4f;

  /* Text */
  --fg: #f7ebf1;
  --muted: #cbb0bd;
  --muted-2: #9d8290;

  /* Lines */
  --line: rgba(239, 169, 203, 0.14);
  --line-strong: rgba(239, 169, 203, 0.28);

  /* Utility */
  --grad-pink: linear-gradient(105deg, var(--pink) 0%, var(--gold) 100%);
  --grad-cta: linear-gradient(120deg, #d95f92 0%, #a8476b 100%);
  --radius: 18px;
  --radius-lg: 26px;
  --radius-sm: 12px;
  --shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.6);
  --shadow-soft: 0 12px 30px -14px rgba(0, 0, 0, 0.5);
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --wa: #25d366;
}

/* ------------------ Reset & base ------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: no-preference) { html.lenis { scroll-behavior: auto; } }

body {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--fg);
  background: var(--bg);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Ambient background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(60% 45% at 80% -5%, rgba(168, 71, 107, 0.35), transparent 60%),
    radial-gradient(50% 40% at 5% 15%, rgba(230, 189, 126, 0.12), transparent 55%),
    radial-gradient(70% 60% at 50% 110%, rgba(168, 71, 107, 0.22), transparent 60%),
    var(--bg);
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: "Playfair Display", Georgia, serif; font-weight: 600; line-height: 1.12; letter-spacing: -0.01em; }
ul, ol { list-style: none; }

::selection { background: var(--pink); color: #2a0d19; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 6px; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2.2rem); }

.grad {
  background: var(--grad-pink);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.ico { width: 1.15em; height: 1.15em; flex: 0 0 auto; }
.stars { color: var(--gold); letter-spacing: 2px; font-size: 0.95em; }

.skip-link {
  position: absolute; left: 50%; top: -60px; transform: translateX(-50%);
  background: var(--pink); color: #2a0d19; padding: 0.6rem 1.1rem; border-radius: 0 0 10px 10px;
  font-weight: 600; z-index: 200; transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 0; }

/* ------------------ Buttons ------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-family: inherit; font-weight: 600; font-size: 0.98rem;
  padding: 0.85rem 1.5rem; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; white-space: nowrap; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn-primary {
  background: var(--grad-cta); color: #fff;
  box-shadow: 0 12px 26px -10px rgba(217, 95, 146, 0.6);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -10px rgba(217, 95, 146, 0.75); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.03); color: var(--fg); border-color: var(--line-strong);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--pink-soft); background: rgba(239, 169, 203, 0.08); }
.btn-lg { padding: 1.05rem 1.9rem; font-size: 1.05rem; }
.btn-sm { padding: 0.6rem 1.1rem; font-size: 0.9rem; }
.btn-block { width: 100%; }

/* ------------------ Header ------------------ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 0.5rem 0;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), padding 0.3s var(--ease), border-color 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(21, 10, 16, 0.82);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -20px rgba(0, 0, 0, 0.8);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.brand { display: inline-flex; align-items: center; gap: 0.7rem; }
.brand-logo {
  width: 48px; height: auto; border-radius: 12px;
  background: #fff; padding: 4px; box-shadow: var(--shadow-soft);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-family: "Playfair Display", serif; font-size: 1.12rem; letter-spacing: 0.01em; }
.brand-text small { color: var(--muted-2); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 0.85rem; }
.nav > a[data-nav] {
  padding: 0.55rem 0.95rem; border-radius: 999px; color: var(--muted); font-size: 0.94rem; font-weight: 500;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.nav > a[data-nav]:hover, .nav > a[data-nav].active { color: var(--fg); background: rgba(239, 169, 203, 0.08); }
.nav-cta { margin-left: 0.3rem; }
.brand { cursor: pointer; }

.header-ig {
  display: inline-grid; place-items: center; width: 44px; height: 44px; flex: 0 0 auto;
  border-radius: 12px; border: 1px solid var(--line-strong); color: var(--pink-soft);
  transition: color 0.2s var(--ease), background 0.2s var(--ease), transform 0.2s var(--ease), border-color 0.2s var(--ease);
}
.header-ig:hover { color: #fff; background: var(--grad-cta); border-color: transparent; transform: translateY(-2px); }
.header-ig svg { width: 22px; height: 22px; }
.header-ig-label { display: none; }

.menu-toggle {
  display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px;
  align-items: center; justify-content: center; background: transparent; border: 1px solid var(--line-strong);
  border-radius: 12px; cursor: pointer;
}
.menu-toggle span { width: 20px; height: 2px; background: var(--fg); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.2s var(--ease); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ------------------ Hero ------------------ */
.hero { position: relative; padding: clamp(7rem, 16vh, 11rem) 0 clamp(3rem, 8vh, 5rem); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.glow { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5; }
.glow-1 { width: 480px; height: 480px; background: radial-gradient(circle, rgba(231, 122, 171, 0.55), transparent 65%); top: -120px; right: -80px; }
.glow-2 { width: 420px; height: 420px; background: radial-gradient(circle, rgba(230, 189, 126, 0.32), transparent 65%); bottom: -160px; left: -120px; }
.balloon { position: absolute; width: 46px; height: 58px; border-radius: 50% 50% 48% 48%; opacity: 0.5; }
.balloon::after { content: ""; position: absolute; bottom: -6px; left: 50%; width: 1px; height: 26px; background: rgba(239, 169, 203, 0.4); transform: translateX(-50%); }
.b1 { background: radial-gradient(circle at 35% 30%, #f4a9c8, #b1547b); top: 18%; left: 7%; }
.b2 { background: radial-gradient(circle at 35% 30%, #f4d29a, #c99a4f); top: 30%; left: 15%; width: 34px; height: 44px; opacity: 0.4; }
.b3 { background: radial-gradient(circle at 35% 30%, #f0b7d1, #a8476b); bottom: 16%; right: 9%; }
.b4 { background: radial-gradient(circle at 35% 30%, #f4d29a, #c99a4f); top: 11%; right: 24%; width: 40px; height: 50px; opacity: 0.32; }
.b5 { background: radial-gradient(circle at 35% 30%, #f0b7d1, #a8476b); top: 58%; left: 3%; width: 30px; height: 40px; opacity: 0.28; }
.b6 { background: radial-gradient(circle at 35% 30%, #f4a9c8, #b1547b); bottom: 30%; right: 30%; width: 26px; height: 34px; opacity: 0.26; }
.b7 { background: radial-gradient(circle at 35% 30%, #f4d29a, #c99a4f); top: 7%; left: 33%; width: 24px; height: 32px; opacity: 0.24; }
.b8 { background: radial-gradient(circle at 35% 30%, #f0b7d1, #a8476b); top: 44%; right: 5%; width: 44px; height: 56px; opacity: 0.28; }
.b9 { background: radial-gradient(circle at 35% 30%, #f4a9c8, #d95f92); bottom: 9%; left: 24%; width: 32px; height: 42px; opacity: 0.28; }

.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 9vw, 7rem); align-items: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--pink-soft);
  border: 1px solid var(--line-strong); border-radius: 999px; padding: 0.4rem 0.9rem;
  background: rgba(239, 169, 203, 0.06); margin-bottom: 1.4rem;
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--wa); box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.2); }

.hero-title { font-size: clamp(2.3rem, 6vw, 4rem); margin-bottom: 1.2rem; }
.hero-sub { font-size: clamp(1.02rem, 2.2vw, 1.18rem); color: var(--muted); max-width: 34ch; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 1.4rem; color: var(--muted); font-size: 0.92rem; }
.hero-badges li { display: inline-flex; align-items: center; gap: 0.45rem; }
.hero-badges .ico { color: var(--pink); }
.hero-badges strong { color: var(--fg); }

/* Hero media */
.hero-media { position: relative; }
.hero-frame { position: relative; border-radius: var(--radius-lg); overflow: visible; }
.hero-frame > picture > img,
.hero-frame > picture {
  border-radius: var(--radius-lg);
  display: block;
}
.hero-frame > picture > img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  box-shadow: var(--shadow); border: 1px solid var(--line);
}
.hero-chip {
  position: absolute; display: flex; align-items: center; gap: 0.6rem;
  background: rgba(36, 16, 25, 0.82); backdrop-filter: blur(10px);
  border: 1px solid var(--line-strong); border-radius: 14px; padding: 0.7rem 0.9rem;
  box-shadow: var(--shadow-soft); color: var(--fg);
}
.hero-chip small { display: block; color: var(--muted-2); font-size: 0.72rem; line-height: 1.2; }
.hero-chip strong { font-size: 0.88rem; font-weight: 600; }
.chip-emoji { color: var(--pink); display: inline-flex; }
.chip-emoji svg { width: 22px; height: 22px; }
.chip-a { left: -14px; bottom: 26px; }
.chip-b { right: -10px; top: 26px; }

/* ------------------ Marquee ------------------ */
.marquee { overflow: hidden; border-block: 1px solid var(--line); padding: 0.9rem 0; margin-top: 1rem; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: inline-flex; align-items: center; gap: 1.6rem; white-space: nowrap; font-family: "Playfair Display", serif; font-size: clamp(1.1rem, 2.6vw, 1.6rem); font-style: italic; color: var(--pink-soft); will-change: transform; animation: marquee 32s linear infinite; }
.marquee-track .sep { color: var(--gold); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ------------------ Sections ------------------ */
.section { padding: clamp(4rem, 10vh, 7rem) 0; }
.section-alt { background: linear-gradient(180deg, transparent, rgba(46, 21, 34, 0.4) 12%, rgba(46, 21, 34, 0.4) 88%, transparent); }
.section-head { max-width: 40rem; margin: 0 auto clamp(2.4rem, 5vw, 3.4rem); text-align: center; }
.section-head-left { text-align: left; margin-inline: 0; }
.kicker { text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.78rem; font-weight: 600; color: var(--gold); margin-bottom: 0.7rem; }
.section-title { font-size: clamp(1.9rem, 4.5vw, 2.9rem); margin-bottom: 0.9rem; }
.section-lead { color: var(--muted); font-size: 1.05rem; }

/* ------------------ Cards (Serviços) ------------------ */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.card {
  position: relative; background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem 1.7rem;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.card:hover { transform: translateY(-6px); border-color: var(--line-strong); box-shadow: var(--shadow); }
.card-featured { border-color: rgba(230, 189, 126, 0.4); background: linear-gradient(180deg, #2c1421, #241019); }
.card-featured::before { content: ""; position: absolute; inset: 0; border-radius: var(--radius-lg); padding: 1px; background: var(--grad-pink); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0.6; pointer-events: none; }
.card-tag { position: absolute; top: -12px; left: 1.7rem; background: var(--grad-pink); color: #2a0d19; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; padding: 0.3rem 0.75rem; border-radius: 999px; text-transform: uppercase; }
.card-ico {
  width: 56px; height: 56px; display: grid; place-items: center; border-radius: 16px;
  background: rgba(239, 169, 203, 0.1); border: 1px solid var(--line-strong); color: var(--pink);
  margin-bottom: 1.2rem;
}
.card-ico svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.35rem; margin-bottom: 0.6rem; }
.card p { color: var(--muted); font-size: 0.98rem; margin-bottom: 1.2rem; }
.card-link { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--pink-soft); font-weight: 600; font-size: 0.95rem; transition: gap 0.25s var(--ease), color 0.25s var(--ease); }
.card-link:hover { gap: 0.7rem; color: var(--pink); }

/* ------------------ Steps ------------------ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; counter-reset: step; margin-bottom: clamp(2.6rem, 6vw, 3.6rem); }
.step { position: relative; background: rgba(36, 16, 25, 0.5); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem 1.4rem; transition: transform 0.3s var(--ease), border-color 0.3s var(--ease); }
.step:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.step-num { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--grad-pink); color: #2a0d19; font-family: "Playfair Display", serif; font-weight: 700; font-size: 1.25rem; margin-bottom: 1rem; }
.step h3 { font-size: 1.18rem; margin-bottom: 0.4rem; }
.step p { color: var(--muted); font-size: 0.94rem; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.4rem, 4vw, 2.2rem); background: rgba(21, 10, 16, 0.4); }
.stat { text-align: center; }
.stat strong { display: block; font-family: "Playfair Display", serif; font-size: clamp(2rem, 5vw, 2.8rem); color: transparent; background: var(--grad-pink); -webkit-background-clip: text; background-clip: text; line-height: 1; }
.stat span { display: block; margin-top: 0.5rem; color: var(--muted); font-size: 0.85rem; }

/* ------------------ Galeria ------------------ */
.filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; margin-bottom: 2rem; }
.chip { font-family: inherit; font-size: 0.9rem; font-weight: 500; color: var(--muted); background: rgba(255, 255, 255, 0.03); border: 1px solid var(--line-strong); border-radius: 999px; padding: 0.55rem 1.15rem; cursor: pointer; transition: color 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease); }
.chip:hover { color: var(--fg); transform: translateY(-2px); }
.chip.is-active { color: #2a0d19; background: var(--grad-pink); border-color: transparent; font-weight: 600; }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.g-item { position: relative; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line); cursor: pointer; background: var(--surface); aspect-ratio: 4 / 5; }
.g-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s var(--ease); }
.g-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(21, 10, 16, 0.45)); opacity: 0; transition: opacity 0.35s var(--ease); }
.g-item::before {
  content: ""; position: absolute; z-index: 2; top: 50%; left: 50%; width: 46px; height: 46px; border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.8); opacity: 0; transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  background: rgba(21, 10, 16, 0.55) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m21 21-4.3-4.3M11 8v6M8 11h6'/%3E%3C/svg%3E") center / 22px no-repeat;
  backdrop-filter: blur(2px); border: 1px solid rgba(255, 255, 255, 0.25);
}
.g-item:hover img { transform: scale(1.06); }
.g-item:hover::after { opacity: 1; }
.g-item:hover::before { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.g-item.is-hidden { display: none; }

/* Paginação */
.pagination { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 0.5rem; margin-top: 2.4rem; }
.page-btn { min-width: 44px; height: 44px; padding: 0 0.85rem; display: inline-grid; place-items: center; border-radius: 12px; border: 1px solid var(--line-strong); background: rgba(255, 255, 255, 0.03); color: var(--muted); font-family: inherit; font-weight: 600; font-size: 0.98rem; cursor: pointer; transition: color 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease); }
.page-btn:hover:not(:disabled) { color: var(--fg); transform: translateY(-2px); border-color: var(--pink-soft); }
.page-btn.is-active { color: #2a0d19; background: var(--grad-pink); border-color: transparent; }
.page-btn:disabled { opacity: 0.4; cursor: not-allowed; }

.gallery-cta { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem; margin-top: 2.4rem; text-align: center; color: var(--muted); }

/* ------------------ Depoimentos ------------------ */
.g-badge { display: flex; align-items: center; gap: 0.6rem; width: max-content; max-width: 100%; margin: 0 auto 2.8rem; background: #fff; color: #1a1a1a; border-radius: 999px; padding: 0.65rem 1.3rem; box-shadow: 0 14px 34px -14px rgba(0, 0, 0, 0.7); transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.g-badge:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -14px rgba(0, 0, 0, 0.8); }
.g-badge strong { font-size: 1.3rem; font-weight: 700; color: #1a1a1a; }
.g-badge .stars { color: #f5b400; font-size: 1.05rem; letter-spacing: 1px; }
.g-badge-txt { color: #5f6368; font-size: 0.95rem; font-weight: 500; }
.gword { font-weight: 700; letter-spacing: -0.01em; margin-left: 0.15rem; }
.gword span:nth-child(1) { color: #4285F4; }
.gword span:nth-child(2) { color: #EA4335; }
.gword span:nth-child(3) { color: #FBBC05; }
.gword span:nth-child(4) { color: #4285F4; }
.gword span:nth-child(5) { color: #34A853; }
.gword span:nth-child(6) { color: #EA4335; }

.reviews { position: relative; overflow: hidden; width: 100%; padding: 0.6rem 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.reviews-track { display: flex; width: max-content; will-change: transform; animation: reviews-scroll 60s linear infinite; }
@keyframes reviews-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.review { flex: 0 0 auto; width: min(340px, 82vw); margin-right: 1.3rem; background: linear-gradient(180deg, var(--surface), var(--surface-2)); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.6rem 1.7rem; box-shadow: var(--shadow-soft); }
.review .stars { color: var(--gold); font-size: 1rem; letter-spacing: 1px; }
.review p { color: var(--fg); font-size: 0.98rem; margin: 0.7rem 0 1.3rem; }
.review footer { display: flex; align-items: center; gap: 0.75rem; }
.avatar { width: 46px; height: 46px; flex: 0 0 auto; border-radius: 50%; display: grid; place-items: center; font-family: "Playfair Display", serif; font-weight: 700; font-size: 1.15rem; color: #fff; background: var(--c, var(--wine)); }
.who { display: flex; flex-direction: column; line-height: 1.3; }
.who strong { font-weight: 600; }
.who small { color: var(--muted-2); font-size: 0.82rem; }

/* ------------------ FAQ ------------------ */
.faq-wrap { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.faq-wrap .section-head { margin-bottom: 0; position: sticky; top: 100px; }
.faq-wrap .btn { margin-top: 1.4rem; }
.faq { display: flex; flex-direction: column; gap: 0.8rem; }
.faq-item { background: rgba(36, 16, 25, 0.5); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color 0.25s var(--ease); }
.faq-item[open] { border-color: var(--line-strong); }
.faq-item summary { list-style: none; cursor: pointer; padding: 1.15rem 1.4rem; font-weight: 600; font-size: 1.02rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.5rem; font-weight: 400; color: var(--pink); transition: transform 0.3s var(--ease); line-height: 1; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 1.4rem 1.25rem; color: var(--muted); }

/* ------------------ CTA final ------------------ */
.cta-final { padding: clamp(3rem, 8vh, 6rem) 0; }
.cta-inner { position: relative; text-align: center; background: linear-gradient(135deg, #33172428, #2e152288); border: 1px solid var(--line-strong); border-radius: var(--radius-lg); padding: clamp(2.6rem, 7vw, 4.4rem) clamp(1.4rem, 5vw, 3rem); overflow: hidden; }
.cta-glow { position: absolute; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(231, 122, 171, 0.4), transparent 65%); top: -180px; left: 50%; transform: translateX(-50%); filter: blur(50px); z-index: 0; }
.cta-inner > * { position: relative; z-index: 1; }
.cta-inner h2 { font-size: clamp(1.8rem, 4.5vw, 2.8rem); margin-bottom: 0.8rem; }
.cta-inner p { color: var(--muted); max-width: 42ch; margin: 0 auto 1.8rem; font-size: 1.05rem; }

/* ------------------ Footer ------------------ */
.site-footer { border-top: 1px solid var(--line); background: rgba(21, 10, 16, 0.6); margin-top: 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 2rem; padding: clamp(2.6rem, 6vw, 4rem) clamp(1.1rem, 4vw, 2.2rem); }
.footer-brand img { width: 60px; height: auto; border-radius: 12px; background: #fff; padding: 5px; margin-bottom: 1rem; }
.footer-brand p { color: var(--muted); font-size: 0.92rem; max-width: 30ch; margin-bottom: 1.2rem; }
.socials { display: flex; gap: 0.6rem; }
.socials a { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; border: 1px solid var(--line-strong); color: var(--pink-soft); transition: color 0.25s var(--ease), background 0.25s var(--ease), transform 0.25s var(--ease); }
.socials a:hover { color: #fff; background: var(--grad-cta); transform: translateY(-3px); border-color: transparent; }
.socials svg { width: 20px; height: 20px; }
.footer-col h3 { font-family: "Poppins", sans-serif; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold); margin-bottom: 1rem; font-weight: 600; }
.footer-list { display: flex; flex-direction: column; gap: 0.7rem; color: var(--muted); font-size: 0.94rem; }
.footer-list a { transition: color 0.2s var(--ease); }
.footer-list a:hover { color: var(--pink-soft); }
.hours li { display: flex; justify-content: space-between; gap: 1rem; border-bottom: 1px dashed var(--line); padding-bottom: 0.5rem; }
.hours li:last-child { border-bottom: 0; }
.hours-note span:last-child { color: var(--pink-soft); }
.footer-cta p { color: var(--muted); font-size: 0.92rem; margin-bottom: 1rem; }
.footer-bottom { border-top: 1px solid var(--line); }
.footer-bottom .container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.6rem; padding-block: 1.3rem; }
.footer-bottom p { color: var(--muted-2); font-size: 0.85rem; }

/* ------------------ Floating WhatsApp ------------------ */
.wa-float {
  position: fixed; right: clamp(1rem, 4vw, 1.8rem); bottom: clamp(1rem, 4vw, 1.8rem); z-index: 90;
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: var(--wa); color: #fff; font-weight: 600; font-size: 0.95rem;
  padding: 0.7rem 1.2rem 0.7rem 0.85rem; border-radius: 999px;
  box-shadow: 0 14px 30px -10px rgba(37, 211, 102, 0.6);
  transform: translateY(120px); opacity: 0; pointer-events: none;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease), box-shadow 0.25s var(--ease);
}
.wa-float.show { transform: translateY(0); opacity: 1; pointer-events: auto; }
.wa-float:hover { box-shadow: 0 18px 38px -10px rgba(37, 211, 102, 0.85); transform: translateY(-3px); }
.wa-float svg { width: 26px; height: 26px; flex: 0 0 auto; display: block; }
.wa-float-label { line-height: 1; }
.wa-float::before {
  content: ""; position: absolute; left: 0.85rem; top: 50%; width: 26px; height: 26px; border-radius: 50%;
  transform: translateY(-50%); background: var(--wa); z-index: -1; animation: wa-pulse 2.4s ease-out infinite;
}
@keyframes wa-pulse { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); } 70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }

/* ------------------ Lightbox ------------------ */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  align-items: center; justify-content: center; padding: 1.2rem;
  background: rgba(12, 5, 9, 0.9); backdrop-filter: blur(8px);
}
.lightbox.open { display: flex; }
.lb-figure { max-width: min(1000px, 92vw); max-height: 86vh; display: flex; flex-direction: column; align-items: center; gap: 0.7rem; }
.lb-figure img { max-width: 100%; max-height: 80vh; border-radius: var(--radius); box-shadow: var(--shadow); object-fit: contain; }
.lb-figure figcaption { color: var(--fg); font-weight: 600; }
.lb-close, .lb-nav {
  position: absolute; background: rgba(255, 255, 255, 0.08); border: 1px solid var(--line-strong);
  color: #fff; cursor: pointer; border-radius: 50%; display: grid; place-items: center;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.lb-close { top: 1.2rem; right: 1.2rem; width: 46px; height: 46px; font-size: 1.8rem; line-height: 1; }
.lb-nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 2rem; line-height: 1; }
.lb-prev { left: 1.2rem; }
.lb-next { right: 1.2rem; }
.lb-close:hover, .lb-nav:hover { background: var(--grad-cta); border-color: transparent; }
.lb-nav:hover { transform: translateY(-50%) scale(1.06); }

/* ------------------ Reveal animations ------------------ */
[data-reveal] { opacity: 0; transform: translateY(28px); }
.reveal-ready [data-reveal] { will-change: opacity, transform; transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
/* Fallback when JS/GSAP is unavailable */
.no-js [data-reveal], html:not(.reveal-ready) [data-reveal] { opacity: 1; transform: none; }

/* ------------------ Responsive ------------------ */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .hero-media { order: -1; max-width: 520px; margin-inline: auto; }
  .hero-sub { max-width: none; }
  .cards { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .faq-wrap { grid-template-columns: 1fr; }
  .faq-wrap .section-head { position: static; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 82vw); flex-direction: column; align-items: stretch;
    justify-content: flex-start; gap: 0.3rem; padding: 5.5rem 1.4rem 2rem;
    background: rgba(28, 14, 22, 0.98); backdrop-filter: blur(16px); border-left: 1px solid var(--line-strong);
    transform: translateX(105%); transition: transform 0.35s var(--ease); box-shadow: -20px 0 60px -20px rgba(0,0,0,0.7);
  }
  .nav.open { transform: translateX(0); }
  .nav > a[data-nav] { padding: 0.85rem 1rem; font-size: 1.05rem; border-radius: 12px; }
  .nav-cta { margin: 0.6rem 0 0; justify-content: center; }
  .header-ig { display: inline-flex; align-items: center; gap: 0.7rem; width: auto; height: auto; padding: 0.85rem 1rem; border: 0; border-radius: 12px; color: var(--muted); font-size: 1.05rem; font-weight: 500; }
  .header-ig:hover { background: rgba(239, 169, 203, 0.08); color: var(--fg); transform: none; }
  .header-ig-label { display: inline; }
  .menu-toggle { display: flex; z-index: 101; }
  body.menu-open { overflow: hidden; }
}

@media (max-width: 560px) {
  .stats { grid-template-columns: repeat(2, 1fr); gap: 1.4rem 1rem; }
  .steps { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-chip { padding: 0.55rem 0.7rem; }
  .chip-a { left: 0; }
  .chip-b { right: 0; }
  .wa-float span { display: none; }
  .wa-float { padding: 0.9rem; }
  .brand-text small { display: none; }
}

/* ------------------ Reduced motion ------------------ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .marquee-track { animation: none; }
  .wa-float { transform: none; opacity: 1; }
}
