/* ============================================================
   Super Clean · Lavandaria — Identidade SCApp (tipo + polimento)
   Paleta própria: aqua + sol-amarelo + navy
   ============================================================ */

:root {
  /* Surfaces */
  --bg:           #F4F8FB;
  --bg-soft:      #ECF3F8;
  --bg-deep:      #E1EBF2;
  --surface:      #FFFFFF;
  --surface-2:    #F7FBFD;

  /* Ink (navy lavandaria) */
  --ink:          #0E1F33;
  --ink-2:        #1F3551;
  --mute:         #5C7088;
  --mute-2:       #94A7BC;

  /* Borders */
  --line:         rgba(14, 31, 51, 0.08);
  --line-2:       rgba(14, 31, 51, 0.16);

  /* Accent palette — água, espuma, sol */
  --aqua:         #2DB8C8;
  --aqua-2:       #58D2DF;
  --aqua-deep:    #157A86;
  --aqua-soft:    #DEF5F8;
  --foam:         #B9E6EC;

  --sun:          #FFC94B;
  --sun-2:        #FFB22B;
  --sun-soft:     #FFF1CE;

  --indigo:       #3A4FB3;
  --indigo-soft:  #E2E7FB;

  --rose:         #FF7E8E;
  --rose-soft:    #FFE3E8;

  --mint:         #5CE5C0;

  /* Gradients */
  --grad-hero:    radial-gradient(ellipse 95% 80% at 80% 0%, rgba(45,184,200,0.28), transparent 60%),
                  radial-gradient(ellipse 80% 60% at 0% 35%, rgba(58,79,179,0.22), transparent 65%),
                  radial-gradient(ellipse 70% 65% at 60% 100%, rgba(255,201,75,0.22), transparent 70%);
  --grad-aqua:    linear-gradient(135deg, #2DB8C8 0%, #58D2DF 60%, #B9E6EC 100%);
  --grad-deep:    linear-gradient(160deg, #0E1F33 0%, #14304F 45%, #1A5572 100%);
  --grad-sun:     linear-gradient(135deg, #FFC94B 0%, #FFB22B 100%);

  /* Type */
  --display: "Bricolage Grotesque", "Plus Jakarta Sans", system-ui, sans-serif;
  --body:    "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Geometry */
  --r-card:    28px;
  --r-card-lg: 36px;
  --r-pill:    100px;
  --r-chip:    14px;
  --r-input:   16px;

  /* Shadows */
  --sh-soft:  0 1px 2px rgba(14,31,51,0.04), 0 8px 24px -12px rgba(14,31,51,0.10);
  --sh-card:  0 1px 2px rgba(14,31,51,0.05), 0 28px 60px -32px rgba(14,31,51,0.22);
  --sh-hover: 0 1px 2px rgba(14,31,51,0.04), 0 40px 90px -28px rgba(45,184,200,0.35);

  --container: 1240px;
  --gutter: 32px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}

/* ---------- typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
}
em { font-style: italic; font-weight: 500; color: var(--aqua-deep); }
p { color: var(--ink-2); }
.lead { font-size: 19px; line-height: 1.55; color: var(--ink-2); max-width: 60ch; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--aqua-deep);
  background: var(--aqua-soft);
  padding: 6px 14px;
  border-radius: var(--r-pill);
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--aqua);
}
.eyebrow.dark { color: #EAF3F8; background: rgba(255,255,255,0.10); }
.eyebrow.dark::before { background: var(--sun); }

.section-num {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--aqua-deep);
  background: var(--aqua-soft);
  padding: 6px 12px;
  border-radius: var(--r-pill);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 14.5px;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  cursor: pointer;
  border: 0;
  text-align: center;
}
.btn-primary {
  background: var(--ink);
  color: var(--surface);
  box-shadow: 0 10px 30px -10px rgba(14,31,51,0.45);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -10px rgba(14,31,51,0.55); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-2);
}
.btn-ghost:hover { background: var(--bg-soft); }
.btn .arrow,
.nav-cta .arrow,
.serv-link .arrow,
.trio-link .arrow {
  display: inline-block;
  width: 14px; height: 14px;
  position: relative;
}
.btn .arrow::after,
.nav-cta .arrow::after,
.serv-link .arrow::after,
.trio-link .arrow::after {
  content: "→";
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s ease;
}
.btn:hover .arrow::after,
.serv-link:hover .arrow::after,
.trio-link:hover .arrow::after { transform: translateX(3px); }

/* ============================================================
   NAV — pill flutuante (estética SCApp) + toggle de lojas
   ============================================================ */
.nav {
  position: fixed;
  top: 16px;
  left: 16px;
  right: 16px;
  z-index: 50;
  padding: 10px 14px;
  background: rgba(255,255,255,0.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border: 1px solid rgba(14,31,51,0.06);
  border-radius: var(--r-pill);
  box-shadow: 0 4px 24px -10px rgba(14,31,51,0.10);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
  background: rgba(255,255,255,0.94);
  box-shadow: 0 10px 40px -20px rgba(14,31,51,0.18);
}
.nav-row {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-brand img {
  height: 34px;
  width: auto;
}
.nav-brand-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--aqua-deep);
  text-transform: uppercase;
  background: var(--aqua-soft);
  padding: 4px 10px;
  border-radius: 999px;
}

.store-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 4px;
  border-radius: var(--r-pill);
  flex-shrink: 0;
}
.store-pill {
  position: relative;
  z-index: 2;
  border: 0;
  background: transparent;
  font-family: var(--body);
  font-weight: 600;
  font-size: 13px;
  color: var(--mute);
  padding: 8px 16px;
  border-radius: var(--r-pill);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  transition: color 0.25s ease;
}
.store-pill .dot {
  width: 7px; height: 7px;
  background: var(--mute-2);
  border-radius: 50%;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.store-pill[aria-selected="true"] { color: var(--surface); }
.store-pill[aria-selected="true"] .dot {
  background: var(--sun);
  box-shadow: 0 0 0 4px rgba(255,201,75,0.35);
}
.store-slider {
  position: absolute;
  top: 4px; bottom: 4px;
  left: 4px;
  width: calc(50% - 4px);
  background: var(--ink);
  border-radius: var(--r-pill);
  transition: transform 0.32s cubic-bezier(.4,.0,.2,1);
  z-index: 1;
}
.store-toggle[data-active="moscavide"] .store-slider { transform: translateX(100%); }

.nav-links {
  list-style: none;
  display: flex;
  gap: 4px;
  margin: 0 auto;
  font-size: 14px;
  font-weight: 500;
}
.nav-links a {
  color: var(--ink-2);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover { background: var(--bg-soft); color: var(--ink); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--surface);
  background: var(--ink);
  padding: 10px 18px;
  border-radius: var(--r-pill);
  flex-shrink: 0;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 12px 28px -10px rgba(14,31,51,0.45); }

.nav-burger {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  width: 40px; height: 40px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}
.nav-burger span {
  width: 18px; height: 2px;
  background: var(--ink);
  display: block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-mobile {
  display: none;
  list-style: none;
  padding: 12px 8px 8px;
  border-top: 1px solid var(--line);
  margin-top: 12px;
}
.nav-mobile li a {
  display: block;
  padding: 12px 14px;
  font-weight: 500;
  color: var(--ink-2);
  border-radius: 14px;
}
.nav-mobile li a:hover { background: var(--bg-soft); }
.nav[data-mobile-open="true"] .nav-mobile { display: block; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 140px 0 60px;
  background: var(--bg);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
  pointer-events: none;
  z-index: 1;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  background: var(--foam);
  opacity: 0.55;
  filter: blur(1px);
  pointer-events: none;
  z-index: 1;
  animation: bubbleFloat 8s ease-in-out infinite;
}
.hero .b1 { width: 220px; height: 220px; top: 10%; right: 6%; background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.95), var(--foam) 60%); animation-delay: -2s; }
.hero .b2 { width: 90px; height: 90px; top: 60%; left: 12%; background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.95), var(--aqua-2) 70%); opacity: 0.45; }
.hero .b3 { width: 56px; height: 56px; top: 30%; left: 48%; background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.95), var(--sun) 70%); opacity: 0.4; animation-delay: -4s; }

@keyframes bubbleFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-22px) scale(1.04); }
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--mute);
  margin-bottom: 36px;
}
.hero-meta .dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--aqua);
  margin-right: 8px;
}
.hero-meta b { color: var(--ink); font-weight: 600; }

.hero-title {
  font-family: var(--display);
  font-size: clamp(48px, 8vw, 112px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  font-weight: 600;
  margin-bottom: 56px;
}
.hero-title em {
  font-style: italic;
  color: var(--aqua-deep);
  background: linear-gradient(180deg, transparent 65%, rgba(255,201,75,0.55) 65%, rgba(255,201,75,0.55) 92%, transparent 92%);
  padding: 0 4px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: end;
}
.hero-copy p { font-size: 18px; color: var(--ink-2); max-width: 52ch; margin-bottom: 16px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

.hero-visual { position: relative; min-height: 420px; }
.hero-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-card-lg);
  overflow: hidden;
  box-shadow: var(--sh-card);
  background: var(--surface-2);
}
.hero-frame img:not(.hero-bubbles) {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-frame .tag {
  position: absolute;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 7px 12px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  backdrop-filter: blur(4px);
  z-index: 3;
}
.hero-frame .tl { top: 18px; left: 18px; }
.hero-frame .tr { top: 18px; right: 18px; background: var(--ink); color: var(--surface); }
.hero-frame .bl { bottom: 18px; left: 18px; background: var(--sun); color: var(--ink); }
.hero-frame .br { bottom: 18px; right: 18px; }
.hero-frame .hero-bubbles {
  position: absolute;
  width: 140px;
  bottom: -30px;
  right: -30px;
  opacity: 0.55;
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: multiply;
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
  position: relative;
  margin-top: 70px;
  padding: 22px 0;
  background: var(--ink);
  color: var(--surface);
  overflow: hidden;
  z-index: 3;
}
.ticker::before, .ticker::after {
  content: "";
  position: absolute; top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.ticker::before { left: 0;  background: linear-gradient(90deg, var(--ink), transparent); }
.ticker::after  { right: 0; background: linear-gradient(270deg, var(--ink), transparent); }

.ticker-track {
  display: inline-flex;
  gap: 56px;
  white-space: nowrap;
  animation: tickerScroll 40s linear infinite;
  padding-left: 56px;
}
.ticker-track span {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.65);
}
.ticker-track b { color: var(--sun); font-weight: 500; }
.ticker-track span::before {
  content: "◌";
  margin-right: 22px;
  color: var(--aqua);
  font-size: 11px;
}

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

/* ============================================================
   SECTIONS — base
   ============================================================ */
section { padding: 110px 0; position: relative; }

.section-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: start;
  max-width: 980px;
  margin-bottom: 64px;
}
.section-head h2 {
  font-size: clamp(36px, 5vw, 62px);
  margin-bottom: 14px;
}

/* ============================================================
   01 — TRIO CARDS (sobre)
   ============================================================ */
.trio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.trio-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 32px 28px;
  position: relative;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.trio-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-hover);
}
.trio-card .trio-ico {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--mute);
  background: var(--bg-soft);
  display: inline-block;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  margin-bottom: 28px;
}
.trio-card h3 { font-size: 24px; margin-bottom: 12px; }
.trio-card p { color: var(--ink-2); margin-bottom: 24px; }
.trio-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--aqua-deep);
  font-weight: 600;
}
.trio-link:hover { color: var(--ink); }

/* ============================================================
   STATS — fundo deep
   ============================================================ */
.stats {
  background: var(--grad-deep);
  color: var(--surface);
  overflow: hidden;
}
.stats .bubble { opacity: 0.10; mix-blend-mode: screen; }
.stats .b4 { width: 360px; height: 360px; top: -120px; right: -80px; background: radial-gradient(circle, var(--aqua) 0%, transparent 65%); }
.stats .b5 { width: 240px; height: 240px; bottom: -100px; left: 8%; background: radial-gradient(circle, var(--sun) 0%, transparent 65%); }

.stats-head { margin-bottom: 64px; }
.stats-title {
  font-size: clamp(32px, 4.5vw, 56px);
  color: var(--surface);
  margin-top: 18px;
}
.stats-title em {
  color: var(--sun);
  font-style: italic;
}

.stats-row { display: block; }
.stats-group {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.stat {
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.stat .n {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}
.stat .v {
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 600;
  line-height: 1;
  color: var(--surface);
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}
.stat .l {
  font-size: 14px;
  color: rgba(255,255,255,0.70);
}

/* ============================================================
   02 — SERVIÇOS (grid editorial)
   ============================================================ */
.serv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  grid-auto-rows: minmax(280px, auto);
}
.serv-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.serv-card.big {
  grid-column: span 2;
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(45,184,200,0.18), transparent 70%),
    var(--surface);
}
.serv-card:hover {
  transform: translateY(-4px);
  border-color: rgba(45,184,200,0.4);
  box-shadow: var(--sh-hover);
}
.serv-card .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--mute);
}
.serv-card .ico {
  width: 56px; height: 56px;
  margin: 18px 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--aqua-soft);
  color: var(--aqua-deep);
  border-radius: 18px;
}
.serv-card .ico img { max-width: 32px; max-height: 32px; }
.serv-card .ico.ico-text {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  background: var(--sun-soft);
  color: var(--ink);
}
.serv-card h3 { font-size: 26px; margin-bottom: 10px; }
.serv-card p { color: var(--ink-2); font-size: 15px; margin-bottom: 22px; }
.serv-card p a { color: var(--aqua-deep); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.serv-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--aqua-deep);
  font-weight: 600;
}
.serv-link:hover { color: var(--ink); }

/* ============================================================
   03 — PREÇÁRIO
   ============================================================ */
#precario { background: var(--bg-soft); }
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 28px 24px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.price-card.feat {
  background: var(--ink);
  color: var(--surface);
  border-color: transparent;
}
.price-card:hover { transform: translateY(-3px); box-shadow: var(--sh-card); }

.price-card header { margin-bottom: 22px; }
.price-card .kicker {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--aqua-deep);
  background: var(--aqua-soft);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  margin-bottom: 14px;
}
.price-card.feat .kicker { color: var(--sun); background: rgba(255,201,75,0.16); }
.price-card h3 { font-size: 22px; }
.price-card.feat h3 { color: var(--surface); }

.price-list { list-style: none; }
.price-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px dashed var(--line);
  font-size: 14px;
}
.price-card.feat .price-list li { border-color: rgba(255,255,255,0.14); }
.price-list li:first-child { border-top: 0; padding-top: 0; }
.price-list .label { color: var(--ink-2); font-weight: 500; }
.price-card.feat .price-list .label { color: rgba(255,255,255,0.78); }
.price-list .value {
  font-family: var(--display);
  font-weight: 600;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.price-list .value small { font-size: 12px; color: var(--mute); font-family: var(--mono); font-weight: 400; letter-spacing: 0.04em; }
.price-card.feat .price-list .value { color: var(--surface); }
.price-card.feat .price-list .value small { color: rgba(255,255,255,0.6); }
.price-list .note {
  border-top: 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--mute);
  padding-top: 14px;
}

.price-note {
  margin-top: 28px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--mute);
}
.price-note a { color: var(--aqua-deep); text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   04 — A LOJA (galeria horizontal + info)
   ============================================================ */
.loja-section { background: var(--bg); }
.loja-block { display: block; }
.loja-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.gphoto {
  position: relative;
  border-radius: var(--r-card);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--bg-soft);
  transition: transform 0.4s ease;
}
.gphoto:hover { transform: translateY(-6px); }
.gphoto img { width: 100%; height: 100%; object-fit: cover; }
.gphoto:nth-child(odd) { margin-top: 32px; }
.gnum {
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  background: rgba(255,255,255,0.92);
  padding: 5px 10px;
  border-radius: var(--r-pill);
  color: var(--ink);
}

.loja-info { max-width: 760px; }
.kv {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.kv > div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.kv .k {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}
.kv .v {
  font-family: var(--display);
  font-weight: 500;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.kv .v a { color: var(--aqua-deep); text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   APP DO CLIENTE
   ============================================================ */
.app-section {
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(45,184,200,0.18), transparent 70%),
    radial-gradient(ellipse 60% 70% at 0% 100%, rgba(255,201,75,0.14), transparent 70%),
    var(--bg);
  position: relative;
  overflow: hidden;
}
.app-section .b6 {
  width: 280px; height: 280px;
  top: 12%; left: -80px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.9), var(--aqua-2) 70%);
  opacity: 0.30;
}
.app-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.app-grid h2 {
  font-size: clamp(36px, 5vw, 64px);
  margin: 18px 0;
}
.check-list { list-style: none; margin: 28px 0; }
.check-list li {
  padding: 14px 0 14px 32px;
  border-top: 1px solid var(--line);
  position: relative;
  font-size: 15px;
  color: var(--ink-2);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 18px; height: 18px;
  border: 1.5px solid var(--aqua);
  border-radius: 50%;
  transform: translateY(-50%);
  background:
    linear-gradient(45deg, transparent 45%, var(--aqua) 45%, var(--aqua) 55%, transparent 55%),
    linear-gradient(-45deg, transparent 45%, var(--aqua) 45%, var(--aqua) 55%, transparent 55%);
  background-size: 8px 8px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--aqua-soft);
}
.check-list li:last-child { border-bottom: 1px solid var(--line); }
.app-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 12px; }

.app-card {
  position: relative;
  background: var(--surface);
  border-radius: var(--r-card-lg);
  padding: 32px 32px 28px;
  box-shadow: var(--sh-card);
  border: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 14px;
  overflow: hidden;
}
.app-card .app-bubbles {
  position: absolute;
  width: 220px;
  right: -50px; top: -50px;
  opacity: 0.16;
  pointer-events: none;
}
.app-card .app-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
  color: var(--ink-2);
}
.app-card .app-row:last-of-type { border-bottom: 0; }
.app-card .hi {
  font-family: var(--display);
  font-weight: 600;
  font-size: 22px;
  color: var(--ink);
}
.app-bar {
  height: 6px;
  background: var(--bg-soft);
  border-radius: 999px;
  margin: 8px 0 14px;
  overflow: hidden;
}
.app-bar span {
  display: block;
  height: 100%;
  background: var(--grad-aqua);
  border-radius: 999px;
}
.app-stamp {
  margin-top: 18px;
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute);
  background: var(--bg-soft);
  padding: 5px 10px;
  border-radius: var(--r-pill);
}

/* ============================================================
   CONTACTO
   ============================================================ */
.contacto-section { background: var(--bg-soft); }
.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.contacto-info {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 32px;
}
.contacto-info .row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.contacto-info .row .k {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}
.contacto-info .row .v {
  font-family: var(--display);
  font-weight: 500;
  font-size: 17px;
  color: var(--ink);
}
.contacto-info .row .v a { color: var(--aqua-deep); }
.contacto-map {
  width: 100%;
  height: 280px;
  border: 0;
  border-radius: 20px;
  margin-top: 18px;
}

.contacto-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contacto-form label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}
.contacto-form input,
.contacto-form textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  font-family: var(--body);
  font-size: 15px;
  color: var(--ink);
  background: var(--bg-soft);
  border: 1px solid transparent;
  border-radius: var(--r-input);
  padding: 14px 16px;
  transition: border-color 0.2s, background 0.2s;
}
.contacto-form input:focus,
.contacto-form textarea:focus {
  outline: 0;
  background: var(--surface);
  border-color: var(--aqua);
}
.contacto-form textarea { resize: vertical; }
.contacto-form button { align-self: flex-start; margin-top: 8px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--grad-deep);
  color: rgba(255,255,255,0.78);
  padding: 80px 0 32px;
  position: relative;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand { position: relative; }
.footer-brand .brand-mark {
  height: 88px;
  width: auto;
  margin-bottom: 22px;
  display: block;
}
.footer-brand p { color: rgba(255,255,255,0.65); max-width: 36ch; font-size: 14px; }
.footer-col h5 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sun);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  transition: color 0.18s;
}
.footer-col a:hover { color: var(--surface); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}
.footer-tag em { color: var(--sun); font-style: italic; }

/* ============================================================
   REVEAL — animação on-scroll
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   ELEMENTOS auxiliares — kicker inline, POIs, tagline, IVA
   ============================================================ */
.kicker-inline {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--aqua-deep);
  background: var(--aqua-soft);
  padding: 3px 9px;
  border-radius: var(--r-pill);
  margin-bottom: 8px;
}

.poi-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 14px 0 22px;
}
.poi-list li {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  background: var(--bg-soft);
  padding: 5px 10px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
}

.loja-tagline {
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink-2);
}
.loja-tagline .now-viewing {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute);
  padding: 3px 8px;
  background: var(--bg-soft);
  border-radius: var(--r-pill);
  margin-right: 8px;
}
.loja-tagline em { color: var(--aqua-deep); font-style: italic; }
.loja-tagline b { color: var(--ink); font-weight: 600; }

.price-list .iva-note {
  border-top: 0;
  padding-top: 14px;
  margin-top: 6px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sun-2);
  background: var(--sun-soft);
  border-radius: 12px;
  padding: 8px 12px;
  display: inline-block;
}
.price-card.feat .price-list .iva-note {
  background: rgba(255,201,75,0.12);
  color: var(--sun);
}

.price-card .micro {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}
.price-card.feat .micro { color: rgba(255,255,255,0.6); }

/* ============================================================
   LOJA TOGGLE — exibe apenas o pane ativo
   ============================================================ */
.loja-only { display: none; transition: opacity 0.25s ease; }

/* Default: blocos */
body[data-loja="exposul"]   .loja-only[data-loja="exposul"],
body[data-loja="moscavide"] .loja-only[data-loja="moscavide"] { display: block; }

/* Spans inline (tagline, meta, etc.) */
body[data-loja="exposul"]   span.loja-only[data-loja="exposul"],
body[data-loja="moscavide"] span.loja-only[data-loja="moscavide"] { display: inline; }

/* Headlines dentro do <h1> — block para preservar <br> */
body[data-loja="exposul"]   .loja-headline[data-loja="exposul"],
body[data-loja="moscavide"] .loja-headline[data-loja="moscavide"] { display: block; }

/* Containers grid */
body[data-loja="exposul"]   .stats-group.loja-only[data-loja="exposul"],
body[data-loja="moscavide"] .stats-group.loja-only[data-loja="moscavide"] { display: grid; }
body[data-loja="exposul"]   .price-grid.loja-only[data-loja="exposul"],
body[data-loja="moscavide"] .price-grid.loja-only[data-loja="moscavide"] { display: grid; }
body[data-loja="exposul"]   .contacto-grid.loja-only[data-loja="exposul"],
body[data-loja="moscavide"] .contacto-grid.loja-only[data-loja="moscavide"] { display: grid; }

/* app-row flex */
body[data-loja="exposul"]   .app-row.loja-only[data-loja="exposul"],
body[data-loja="moscavide"] .app-row.loja-only[data-loja="moscavide"] { display: flex; }

/* Fade suave no swap */
body.swapping .loja-only { opacity: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: inline-flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .app-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: span 2; }
  .section-head { grid-template-columns: 1fr; gap: 16px; }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .trio-grid  { grid-template-columns: 1fr; }
  .serv-grid  { grid-template-columns: repeat(2, 1fr); }
  .serv-card.big { grid-column: span 2; }
  .stats-group { grid-template-columns: repeat(2, 1fr); }
  .loja-gallery { grid-template-columns: repeat(2, 1fr); }
  .contacto-grid { grid-template-columns: 1fr; }
  .kv { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav { padding: 6px 6px; }
  .nav-row { gap: 8px; }
  .nav-brand { gap: 6px; }
  .nav-brand img { height: 30px; }
  .nav-brand-meta { display: none; }
  .store-toggle { padding: 3px; }
  .store-pill { font-size: 12px; padding: 7px 10px; gap: 6px; }
  .store-pill .dot { width: 6px; height: 6px; }
  .nav-burger { width: 38px; height: 38px; }
  .hero { padding: 120px 0 40px; }
  .hero-title { font-size: 52px; }
  .serv-grid  { grid-template-columns: 1fr; }
  .serv-card.big { grid-column: span 1; }
  .price-grid { grid-template-columns: 1fr; }
  .loja-gallery { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  section { padding: 80px 0; }
  .section-head { margin-bottom: 44px; }
  .nav-cta { display: none; }
}

@media (max-width: 480px) {
  .nav { left: 10px; right: 10px; padding: 5px 5px; }
  .nav-row { gap: 6px; }
  .nav-brand img { height: 26px; }
  .store-toggle { padding: 2px; }
  .store-pill { font-size: 11px; padding: 6px 9px; gap: 5px; }
  .nav-burger { width: 34px; height: 34px; border-radius: 10px; }
  .nav-burger span { width: 16px; }
}
