/* Marketing site styles — Uni Clinic Spa */
@import url("colors_and_type.css");

* { box-sizing: border-box; }
html, body, #root { margin: 0; padding: 0; min-height: 100%; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ---------- Header ---------- */
.uc-header {
  position: sticky; top: 0; z-index: 50;
  background: hsl(var(--background) / 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid hsl(var(--border));
}
.uc-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.uc-wordmark {
  font-family: var(--font-sans);
  font-size: 22px; font-weight: 800; letter-spacing: -0.02em;
  color: hsl(var(--foreground));
  text-decoration: none;
}
.uc-nav { display: flex; gap: 18px; align-items: center; }
.uc-nav-link {
  font-size: 13px; font-weight: 500;
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition: color 200ms var(--ease-out);
  background: none; border: none; padding: 0;
}
.uc-nav-link:hover { color: hsl(var(--primary)); }
.uc-nav-link.active { color: hsl(var(--primary)); }
.uc-nav-link-special { color: hsl(var(--primary)); font-weight: 600; }
.uc-nav-link-special::before { content: "•"; color: hsl(var(--accent)); margin-right: 4px; }
.uc-nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600;
  background: hsl(var(--primary)); color: hsl(var(--primary-foreground));
  border: none; border-radius: 9999px;
  padding: 9px 18px;
  transition: background 200ms var(--ease-out);
}
.uc-nav-cta:hover { background: hsl(var(--moss-green-light)); }

/* ---------- Mobile hamburger + drawer ---------- */
.uc-burger {
  display: none;
  align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer;
  color: hsl(var(--foreground));
  margin-right: -8px;
}
.uc-drawer-scrim {
  position: fixed; inset: 0; z-index: 70;
  background: rgba(20, 22, 16, 0.45);
  backdrop-filter: blur(2px);
  opacity: 0; pointer-events: none;
  transition: opacity 260ms var(--ease-out);
}
.uc-drawer-scrim.show { opacity: 1; pointer-events: auto; }
.uc-drawer {
  position: fixed; top: 0; right: 0; z-index: 71;
  width: min(82vw, 320px); height: 100%;
  background: hsl(var(--card));
  box-shadow: -16px 0 40px -12px rgba(0,0,0,0.35);
  transform: translateX(100%);
  transition: transform 300ms var(--ease-out);
  display: flex; flex-direction: column;
  padding: 18px 18px 24px;
}
.uc-drawer.open { transform: translateX(0); }
.uc-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 4px 6px 16px;
  border-bottom: 1px solid hsl(var(--border));
  margin-bottom: 10px;
}
.uc-drawer-brand {
  font-family: var(--font-sans); font-weight: 800;
  font-size: 18px; letter-spacing: -0.02em;
  color: hsl(var(--foreground));
}
.uc-drawer-close {
  width: 40px; height: 40px; border-radius: 9999px;
  background: hsl(var(--muted)); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: hsl(var(--foreground));
}
.uc-drawer-nav { display: flex; flex-direction: column; overflow-y: auto; flex: 1; }
.uc-drawer-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 8px;
  background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: 15px; font-weight: 500; text-align: left;
  color: hsl(var(--foreground));
  border-bottom: 1px solid hsl(var(--border) / 0.6);
  transition: color 160ms var(--ease-out);
}
.uc-drawer-link [data-lucide] { color: hsl(var(--muted-foreground)); }
.uc-drawer-link:hover, .uc-drawer-link.active { color: hsl(var(--primary)); }
.uc-drawer-link.active [data-lucide] { color: hsl(var(--primary)); }
.uc-drawer-link.special { color: hsl(var(--primary)); font-weight: 600; }
.uc-drawer-link.special::before { content: "•"; color: hsl(var(--accent)); margin-right: 6px; }
.uc-drawer-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 16px;
  padding: 14px; border-radius: 9999px;
  background: hsl(var(--primary)); color: hsl(var(--primary-foreground));
  border: none; cursor: pointer;
  font-family: inherit; font-size: 15px; font-weight: 600;
}
.uc-drawer-cta:hover { background: hsl(var(--moss-green-light)); }

/* ---------- 404 ---------- */
.uc-404 {
  min-height: 70vh;
  display: flex; align-items: center; justify-content: center;
  padding: 80px 24px;
  background:
    radial-gradient(120% 80% at 50% 0%, hsl(var(--primary) / 0.08) 0%, transparent 60%),
    hsl(var(--background));
}
.uc-404-inner { text-align: center; max-width: 560px; }
.uc-404-code {
  font-family: var(--font-sans); font-weight: 800;
  font-size: clamp(96px, 18vw, 160px); line-height: 1;
  letter-spacing: -0.04em;
  color: hsl(var(--primary));
  opacity: 0.18;
  margin-bottom: -12px;
}
.uc-404-title {
  font-family: var(--font-sans); font-weight: 700;
  font-size: clamp(26px, 4vw, 38px); letter-spacing: -0.02em;
  color: hsl(var(--foreground)); margin: 0 0 14px;
}
.uc-404-text {
  font-size: 16px; line-height: 1.6;
  color: hsl(var(--muted-foreground));
  margin: 0 auto 30px; max-width: 440px;
}
.uc-404-actions {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}
.uc-404-wa {
  background: #25D366; color: #fff; border: none;
  border-radius: 9999px; padding: 14px 24px; font-size: 15px; font-weight: 600;
}
.uc-404-wa:hover { background: #20BD5A; }
.uc-404-wa [data-lucide] { pointer-events: none; }

/* ---------- Cookie consent banner ---------- */
.uc-cookie {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 80;
  padding: 16px;
  background: hsl(var(--background) / 0.96);
  backdrop-filter: blur(8px);
  border-top: 1px solid hsl(var(--border));
  box-shadow: 0 -8px 28px -10px rgba(0,0,0,0.18);
  animation: uc-cookie-up 320ms var(--ease-out);
}
@keyframes uc-cookie-up { from { transform: translateY(100%); } to { transform: translateY(0); } }
.uc-cookie-inner {
  position: relative;
  max-width: 1100px;
  display: flex; align-items: center; gap: 20px;
}
.uc-cookie-msg { display: flex; align-items: flex-start; gap: 12px; flex: 1; }
.uc-cookie-msg [data-lucide] { color: hsl(var(--primary)); flex-shrink: 0; margin-top: 2px; }
.uc-cookie-msg p { font-size: 13.5px; line-height: 1.5; color: hsl(var(--foreground)); margin: 0; }
.uc-cookie-link {
  background: none; border: none; padding: 0; cursor: pointer;
  font: inherit; color: hsl(var(--primary)); font-weight: 600; text-decoration: underline;
}
.uc-cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.uc-cookie-btn {
  border-radius: 9999px; padding: 9px 18px; font-family: inherit;
  font-size: 13px; font-weight: 600; cursor: pointer;
  transition: all 180ms var(--ease-out);
}
.uc-cookie-decline {
  background: transparent; color: hsl(var(--foreground));
  border: 1px solid hsl(var(--border));
}
.uc-cookie-decline:hover { background: hsl(var(--muted)); }
.uc-cookie-accept {
  background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); border: none;
}
.uc-cookie-accept:hover { background: hsl(var(--moss-green-light)); }
.uc-cookie-close {
  background: none; border: none; cursor: pointer; padding: 4px;
  color: hsl(var(--muted-foreground)); flex-shrink: 0;
  display: flex; align-items: center;
}
.uc-cookie-close:hover { color: hsl(var(--foreground)); }
.uc-cookie-close [data-lucide] { pointer-events: none; }

@media (max-width: 760px) {
  .uc-cookie-inner { flex-direction: column; align-items: stretch; gap: 14px; padding-right: 28px; }
  .uc-cookie-actions { width: 100%; }
  .uc-cookie-btn { flex: 1; }
  .uc-cookie-close { position: absolute; top: -4px; right: 0; }
}

/* ---------- Hero ---------- */
.uc-hero {
  position: relative;
  min-height: 78vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.uc-hero-bg { position: absolute; inset: 0; }
.uc-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.uc-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.30) 50%, rgba(0,0,0,.50) 100%);
}
.uc-hero-content {
  position: relative; z-index: 2;
  text-align: center;
  color: #fff;
  padding: 80px 24px;
  max-width: 920px;
}
.uc-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(6px);
  padding: 7px 16px; border-radius: 9999px;
  margin-bottom: 24px;
}
.uc-hero-title {
  /* Sans bold wordmark style — matches the source hero exactly. */
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 1.05; letter-spacing: -0.025em;
  margin: 0 0 18px;
  color: #fff;
}
.uc-hero-title em { font-style: normal; color: #fff; }
.uc-hero-sub {
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 400; line-height: 1.5;
  color: rgba(255,255,255,0.92);
  margin: 0 auto 32px;
  max-width: 720px;
}
.uc-hero-chips {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  margin: 0 auto 28px;
  max-width: 640px;
}
.uc-hero-chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(6px);
  padding: 7px 14px; border-radius: 9999px;
}
.uc-hero-chip [data-lucide] { width: 14px; height: 14px; color: hsl(var(--accent)); }

.uc-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: inherit; font-weight: 600;
  border: none; cursor: pointer;
  transition: all 200ms var(--ease-out);
}
.uc-btn-primary {
  background: hsl(var(--primary)); color: hsl(var(--primary-foreground));
  border-radius: 9999px;
  padding: 16px 28px; font-size: 16px;
  box-shadow: var(--shadow-cta);
}
.uc-btn-primary:hover { background: hsl(var(--moss-green-light)); transform: translateY(-1px); }
.uc-btn-outline {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 9999px;
  padding: 12px 22px; font-size: 14px;
  backdrop-filter: blur(6px);
}
.uc-btn-outline:hover { background: rgba(255,255,255,0.14); }
/* Hero CTA: solid moss primary button — high contrast against cream panel. */
.uc-hero .uc-btn-primary {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  box-shadow: var(--shadow-cta);
}
.uc-hero .uc-btn-primary:hover {
  background: hsl(var(--moss-green-light));
  color: hsl(var(--primary-foreground));
  transform: translateY(-1px);
}

.uc-btn-back {
  position: absolute; top: 88px; left: 24px; z-index: 3;
  background: rgba(255,255,255,0.92);
  color: hsl(var(--foreground));
  border: 1px solid hsl(var(--border));
}

/* ---------- Section frame ---------- */
.uc-section { padding: 96px 0; }
.uc-section.muted { background: hsl(var(--muted) / 0.4); }
.uc-section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.uc-eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: hsl(var(--primary));
  margin-bottom: 12px;
}
.uc-h2 {
  font-family: var(--font-sans); font-weight: 700;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12; letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.uc-h2 em { font-style: normal; color: hsl(var(--primary)); }
.uc-lead {
  font-size: 18px; color: hsl(var(--muted-foreground));
  line-height: 1.55; margin: 0;
}

/* ---------- Services grid ---------- */
.uc-services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.uc-service-card {
  background: #fff;
  border: 1px solid hsl(var(--border));
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: box-shadow 300ms var(--ease-out);
  text-align: left;
  width: 100%; padding: 0;
}
.uc-service-card:hover { box-shadow: var(--shadow-xl); }
.uc-service-photo { position: relative; aspect-ratio: 16 / 11; overflow: hidden; }
.uc-service-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms var(--ease-out); }
.uc-service-card:hover .uc-service-photo img { transform: scale(1.08); }
.uc-service-body { padding: 22px 24px 26px; }
.uc-service-title { font-size: 20px; font-weight: 600; margin: 0 0 8px; color: hsl(var(--foreground)); }
.uc-service-desc { font-size: 14px; line-height: 1.55; color: hsl(var(--muted-foreground)); margin: 0; }

/* ---------- Feature cards (icon bubbles) ---------- */
.uc-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.uc-feature {
  background: #fff;
  border: 1px solid hsl(var(--border));
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.uc-icon-bubble {
  width: 60px; height: 60px;
  border-radius: 9999px;
  background: hsl(var(--primary) / 0.10);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.uc-icon-bubble [data-lucide] { width: 28px; height: 28px; color: hsl(var(--primary)); stroke-width: 1.7; }
.uc-feature h3 { font-size: 18px; font-weight: 600; margin: 0 0 8px; }
.uc-feature p { font-size: 14px; color: hsl(var(--muted-foreground)); line-height: 1.55; margin: 0; }

/* ---------- Testimonials ---------- */
.uc-testimonials-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.uc-testimonial {
  background: #fff; border: 1px solid hsl(var(--border)); border-radius: 12px;
  padding: 24px; box-shadow: var(--shadow-sm);
  transition: box-shadow 300ms var(--ease-out);
}
.uc-testimonial:hover { box-shadow: var(--shadow-lg); }
.uc-testimonial-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.uc-testimonial-avatar { width: 48px; height: 48px; border-radius: 9999px; object-fit: cover; }
.uc-testimonial-name { font-size: 14px; font-weight: 600; }
.uc-testimonial-meta { font-size: 12px; color: hsl(var(--muted-foreground)); margin-top: 2px; }
.uc-stars { display: flex; gap: 2px; margin-bottom: 10px; }
.uc-stars [data-lucide] { width: 14px; height: 14px; color: hsl(var(--accent)); fill: hsl(var(--accent)); stroke: hsl(var(--accent)); }
.uc-testimonial-quote {
  font-family: var(--font-sans); font-style: italic;
  font-size: 15px; line-height: 1.5;
  color: hsl(var(--foreground)); margin: 0;
}

/* ---------- Footer ---------- */
.uc-footer {
  background: hsl(var(--primary)); color: hsl(var(--primary-foreground));
  padding: 64px 0 32px;
}
.uc-footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 48px; }
.uc-footer h3 { font-family: var(--font-sans); font-size: 22px; font-weight: 700; letter-spacing: -0.015em; margin: 0 0 16px; color: #fff; }
.uc-footer h4 { font-size: 18px; font-weight: 700; margin: 0 0 20px; color: #fff; letter-spacing: -0.01em; }
.uc-footer p, .uc-footer a { color: hsl(var(--primary-foreground) / 0.88); font-size: 15px; line-height: 1.6; }
.uc-footer a:hover { color: hsl(var(--accent)); }
.uc-footer a { text-decoration: none; }
.uc-footer-row { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.uc-footer-row [data-lucide] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.uc-footer-bottom {
  border-top: 1px solid hsl(var(--primary-foreground) / 0.18);
  margin-top: 40px; padding-top: 22px;
  text-align: center; font-size: 13px;
  color: hsl(var(--primary-foreground) / 0.7);
}

/* ---------- WhatsApp float ---------- */
.uc-wa {
  position: fixed; bottom: 24px; right: 24px; z-index: 60;
  width: 64px; height: 64px; border-radius: 9999px;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
  border: none; cursor: pointer;
  animation: uc-wa-bounce 1s infinite, uc-wa-pulse 2s infinite;
  transition: transform 200ms var(--ease-out), background 200ms var(--ease-out);
}
.uc-wa:hover {
  transform: scale(1.10);
  background: #20BD5A;
  animation: uc-wa-pulse 2s infinite;
}
.uc-wa svg { width: 32px; height: 32px; display: block; }
/* Make the icon ignore clicks so the click target is always the button
   itself — required for GTM "Click Classes contains whatsapp-pulse" to fire. */
.uc-wa svg, .uc-wa svg * { pointer-events: none; }
/* GTM tag binding — the floating WhatsApp trigger fires on Click Classes containing this */
.whatsapp-pulse {}
@keyframes uc-wa-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.55), 0 12px 28px rgba(0,0,0,0.25); }
  50%      { box-shadow: 0 0 0 16px rgba(37,211,102,0), 0 12px 28px rgba(0,0,0,0.25); }
}
@keyframes uc-wa-bounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* ---------- Treatment page extras ---------- */
.uc-pain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.uc-pain-card {
  background: #fff; border: 1px solid hsl(var(--border)); border-radius: 12px;
  padding: 22px; display: flex; gap: 16px;
}
.uc-pain-icon {
  width: 48px; height: 48px; border-radius: 9999px;
  background: hsl(var(--primary) / 0.10);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.uc-pain-icon [data-lucide] { width: 22px; height: 22px; color: hsl(var(--primary)); }
.uc-pain-card h3 { font-size: 18px; font-weight: 600; margin: 0 0 6px; }
.uc-pain-card p { font-size: 14px; color: hsl(var(--muted-foreground)); margin: 0; line-height: 1.55; }

.uc-ba-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.uc-ba {
  position: relative; aspect-ratio: 3 / 4;
  border-radius: 10px; overflow: hidden;
  border: 1px solid hsl(var(--border));
  background: #f1eadd;
  box-shadow: var(--shadow-sm);
}
.uc-ba img { width: 100%; height: 100%; object-fit: cover; }
.uc-ba-tag {
  position: absolute; top: 10px; left: 10px;
  background: hsl(var(--primary)); color: #fff;
  font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: 9999px;
}

.uc-faq { background: #fff; border: 1px solid hsl(var(--border)); border-radius: 12px; max-width: 720px; margin: 0 auto; }
.uc-faq-item { border-bottom: 1px solid hsl(var(--border)); }
.uc-faq-item:last-child { border-bottom: none; }
.uc-faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 26px; font-size: 16px; font-weight: 500;
  background: none; border: none; width: 100%;
  text-align: left; color: hsl(var(--foreground));
}
.uc-faq-q [data-lucide] { width: 18px; height: 18px; color: hsl(var(--muted-foreground)); transition: transform 200ms; }
.uc-faq-item.open .uc-faq-q [data-lucide] { transform: rotate(180deg); }
.uc-faq-a {
  padding: 0 26px 22px; font-size: 14px; color: hsl(var(--muted-foreground));
  line-height: 1.65; display: none;
}
.uc-faq-item.open .uc-faq-a { display: block; }

/* CTA band */
.uc-cta-band {
  background: linear-gradient(135deg, hsl(var(--primary) / 0.95) 0%, hsl(var(--moss-green-dark)) 100%);
  color: hsl(var(--primary-foreground));
  text-align: center;
}
.uc-cta-band .uc-eyebrow { color: hsl(var(--accent)); }
.uc-cta-band .uc-h2 { color: hsl(var(--primary-foreground)); }
.uc-cta-band .uc-h2 em { color: hsl(var(--accent)); }
.uc-cta-band .uc-lead { color: hsl(var(--primary-foreground) / 0.9); }
.uc-cta-band .uc-btn-primary { background: #fff; color: hsl(var(--primary)); }
.uc-cta-band .uc-btn-primary:hover { background: hsl(var(--accent)); color: hsl(var(--primary)); }

/* ============================================================
   Seasonal pages (Dia das Mães)
   ============================================================ */
.ucs-section { padding: 80px 0; }
.ucs-section-card { background: hsl(var(--card)); }
.ucs-narrow { max-width: 760px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }

.ucs-hero { min-height: 88vh; }
.ucs-hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.42) 0%, rgba(0,0,0,.30) 50%, rgba(0,0,0,.72) 100%);
}
.ucs-hero-content { color: #fff; max-width: 880px; }
.ucs-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: hsl(var(--primary) / 0.92);
  border: 1px solid hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  padding: 8px 18px; border-radius: 9999px;
  font-size: 13px; font-weight: 600;
  margin-bottom: 24px;
  box-shadow: var(--shadow-lg);
}
.ucs-hero-title {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.06; letter-spacing: -0.025em;
  margin: 0 0 18px; color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.7), 0 8px 32px rgba(0,0,0,0.5);
}
.ucs-hero-sub {
  font-size: clamp(17px, 1.6vw, 22px);
  color: #fff; opacity: 0.95;
  max-width: 620px; margin: 0 auto 32px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.7);
}
.ucs-hero-ctas {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 24px;
}
.ucs-btn-ghost {
  background: rgba(255,255,255,0.14);
  border: 2px solid rgba(255,255,255,0.9);
  color: #fff;
  font-weight: 600;
  padding: 14px 24px; font-size: 15px;
  backdrop-filter: blur(8px);
}
.ucs-btn-ghost:hover { background: #fff; color: hsl(var(--foreground)); }
.ucs-hero-meta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: #fff; font-weight: 500;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.ucs-hero-meta [data-lucide] { width: 14px; height: 14px; }

/* benefícios row */
.ucs-beneficios {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.ucs-beneficio {
  background: hsl(var(--background));
  border: 1px solid hsl(var(--border));
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
}
.ucs-beneficio .uc-icon-bubble { margin: 0 auto 12px; }
.ucs-beneficio p { font-size: 15px; line-height: 1.5; font-weight: 500; color: hsl(var(--foreground)); margin: 0; }

/* emotional middle */
.ucs-h2 {
  font-family: var(--font-sans); font-weight: 700;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15; letter-spacing: -0.02em;
  margin: 0 0 20px; color: hsl(var(--foreground));
}
.ucs-accent { color: hsl(var(--primary)); }
.ucs-emotional-body { font-size: 17px; line-height: 1.65; color: hsl(var(--muted-foreground)); }
.ucs-emotional-body p { margin: 0 0 16px; }
.ucs-emotional-kicker { color: hsl(var(--foreground)); font-size: 19px; font-weight: 500; padding-top: 8px; }

/* experiências */
.ucs-experiencias {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.ucs-experiencia {
  background: hsl(var(--background));
  border: 1px solid hsl(var(--border));
  border-radius: 14px;
  padding: 28px;
  display: flex; gap: 16px;
  transition: box-shadow 300ms var(--ease-out), border-color 300ms var(--ease-out);
}
.ucs-experiencia:hover { box-shadow: var(--shadow-lg); border-color: hsl(var(--primary) / 0.4); }
.ucs-experiencia h3 { font-size: 19px; font-weight: 700; margin: 0 0 6px; }
.ucs-experiencia p { font-size: 15px; color: hsl(var(--muted-foreground)); line-height: 1.55; margin: 0; }

/* gallery mosaic */
.ucs-gallery {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 18px;
}
.ucs-gallery-stack { display: flex; flex-direction: column; gap: 18px; }
.ucs-gallery-big, .ucs-gallery-small {
  position: relative; border-radius: 18px; overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.ucs-gallery-big img { width: 100%; height: 540px; object-fit: cover; transition: transform 600ms var(--ease-out); }
.ucs-gallery-small img { width: 100%; height: 260px; object-fit: cover; transition: transform 600ms var(--ease-out); }
.ucs-gallery-big:hover img, .ucs-gallery-small:hover img { transform: scale(1.05); }
.ucs-gallery-big::after, .ucs-gallery-small::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%);
  pointer-events: none;
}
.ucs-gallery-cap { position: absolute; bottom: 22px; left: 22px; right: 22px; z-index: 2; }
.ucs-gallery-tag {
  display: inline-block;
  background: hsl(var(--primary) / 0.92);
  color: hsl(var(--primary-foreground));
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 9999px; margin-bottom: 10px;
  backdrop-filter: blur(4px);
}
.ucs-gallery-tag.light {
  background: rgba(255,255,255,0.92);
  color: hsl(var(--foreground));
}
.ucs-gallery-cap h3 {
  font-family: var(--font-sans); font-weight: 700;
  font-size: 22px; color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
  margin: 0;
}
.ucs-gallery-small .ucs-gallery-cap h3 { font-size: 17px; }

/* depoimentos */
.ucs-depoimentos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* urgency card */
.ucs-urgency {
  background: linear-gradient(135deg, hsl(var(--primary) / 0.08) 0%, hsl(var(--background)) 50%, hsl(var(--primary) / 0.06) 100%);
  border: 1px solid hsl(var(--primary) / 0.3);
  border-radius: 18px;
  padding: 48px;
  text-align: center;
  box-shadow: var(--shadow-xl);
}
.ucs-urgency-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: hsl(var(--primary)); color: hsl(var(--primary-foreground));
  padding: 8px 18px; border-radius: 9999px;
  font-size: 13px; font-weight: 600; margin-bottom: 20px;
}

/* vale */
.ucs-vale {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.ucs-vale-img { border-radius: 18px; box-shadow: var(--shadow-xl); width: 100%; height: 480px; object-fit: cover; }
.ucs-vale-list { list-style: none; padding: 0; margin: 24px 0; }
.ucs-vale-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 16px; color: hsl(var(--muted-foreground));
  line-height: 1.55; margin-bottom: 14px;
}
.ucs-vale-list li [data-lucide] { color: hsl(var(--primary)); flex-shrink: 0; margin-top: 3px; }

/* final cta */
.ucs-cta-final {
  background: linear-gradient(135deg, hsl(var(--primary) / 0.12) 0%, hsl(var(--background)) 50%, hsl(var(--primary) / 0.08) 100%);
}


/* responsive */
@media (max-width: 900px) {
  .uc-nav { display: none; }
  .uc-burger { display: flex; }
  .uc-services-grid, .uc-features-grid, .uc-pain-grid { grid-template-columns: 1fr; }
  .uc-testimonials-grid { grid-template-columns: 1fr 1fr; }
  .uc-ba-grid { grid-template-columns: 1fr 1fr; }
  .uc-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .ucs-beneficios { grid-template-columns: 1fr 1fr; }
  .ucs-experiencias, .ucs-gallery, .ucs-vale { grid-template-columns: 1fr; }
  .ucs-depoimentos { grid-template-columns: 1fr; }
  .ucs-gallery-big img { height: 320px; }
}
