/* =========================================================
   Artima Assessoria - Premium landing
   Design system: trust-first professional, deep forest green
   Tokens locked: one accent, AA contrast, shape scale:
   buttons = pill, cards = 16px, chips = pill
   ========================================================= */

:root {
  --paper: #ffffff;
  --mist: #eef3f6;
  --ink: #122029;
  --muted: #54646e;
  --forest: #152935;       /* primary brand color */
  --forest-deep: #0d1b23;
  --emerald: #1d4a5e;      /* primary CTA: AA white text */
  --emerald-bright: #2ca6bd; /* accent only, never text-on-it */
  --line: #e3e9ec;
  --line-strong: #cbd6db;

  --radius-card: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(21, 41, 53, .06), 0 6px 18px rgba(21, 41, 53, .06);
  --shadow-md: 0 10px 30px rgba(21, 41, 53, .12);
  --shadow-lg: 0 24px 60px rgba(13, 27, 35, .22);

  --container: 1200px;
  --font-display: "Sora", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Mulish", system-ui, -apple-system, "Segoe UI", sans-serif;

  --ease: cubic-bezier(.16, 1, .3, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--emerald); text-decoration: none; }
a:hover { color: var(--forest); }

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
  font-weight: 700;
}

p { margin: 0 0 1rem; }

:focus-visible {
  outline: 3px solid var(--emerald-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--forest);
  color: #fff;
  padding: .75rem 1.25rem;
  border-radius: 0 0 10px 0;
  z-index: 200;
}
.skip-link:focus { left: 0; color: #fff; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--emerald);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--emerald-bright);
  border-radius: 2px;
}

.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section--mist { background: var(--mist); }

.section-head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-top: .8rem; }
.section-head p { color: var(--muted); margin-top: 1rem; font-size: 1.1rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: .95rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease), color .25s var(--ease);
}
.btn svg { width: 20px; height: 20px; flex: none; }
.btn-primary { background: var(--emerald); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--forest); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: var(--forest); color: var(--forest); transform: translateY(-2px); }
.btn-on-dark { background: #fff; color: var(--forest); }
.btn-on-dark:hover { background: var(--emerald-bright); color: var(--forest-deep); transform: translateY(-2px); }
.btn-ghost-dark { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-ghost-dark:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.08); transform: translateY(-2px); }

/* ---------- Header ---------- */
.topbar {
  background: var(--forest-deep);
  color: rgba(255,255,255,.85);
  font-size: .9rem;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding-block: .55rem; }
.topbar-contacts { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.topbar-contacts a { color: rgba(255,255,255,.85); display: inline-flex; align-items: center; gap: .45rem; }
.topbar-contacts a:hover { color: #fff; }
.topbar-contacts svg { width: 16px; height: 16px; fill: var(--emerald-bright); }
.topbar-social { display: flex; gap: .35rem; }
.topbar-social a {
  width: 30px; height: 30px; border-radius: 50%;
  display: inline-grid; place-items: center;
  background: rgba(255,255,255,.08);
}
.topbar-social a:hover { background: var(--emerald); }
.topbar-social svg { width: 15px; height: 15px; fill: #fff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid var(--line);
  isolation: auto;
}
/* backdrop no pseudo para não criar containing block que quebra position:fixed dos filhos */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  z-index: -1;
  pointer-events: none;
}
.site-header.is-scrolled::before { background: rgba(255,255,255,.96); }
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 72px; }
.brand { display: flex; align-items: center; gap: .85rem; }
.brand img { width: 158px; height: auto; }
.brand .crc { font-size: .72rem; color: var(--muted); line-height: 1.2; max-width: 14ch; }

.primary-nav { display: flex; align-items: center; gap: 2rem; }
.primary-nav ul { display: flex; gap: 1.75rem; list-style: none; margin: 0; padding: 0; }
.primary-nav a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .98rem;
  color: var(--ink);
  position: relative;
  padding-block: .25rem;
}
.primary-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--emerald-bright);
  transition: width .25s var(--ease);
}
.primary-nav a:hover { color: var(--forest); }
.primary-nav a:hover::after { width: 100%; }

/* Header CTA: compact, refined pill */
.primary-nav .btn {
  padding: .6rem 1.15rem;
  font-size: .9rem;
  letter-spacing: -.01em;
}
.primary-nav .btn::after {
  display: none;
}
.primary-nav .btn::before {
  content: "";
  width: 16px; height: 16px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zM223.9 438.7c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zM223.9 438.7c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z'/%3E%3C/svg%3E") center / contain no-repeat;
  flex: none;
}
.primary-nav .btn-primary,
.primary-nav .btn-primary:hover,
.primary-nav .btn-primary:active {
  background: var(--emerald);
  color: #fff;
  transform: none;
  box-shadow: var(--shadow-sm);
}

.nav-toggle {
  display: none;
  background: none; border: 1px solid var(--line-strong);
  border-radius: 10px; width: 46px; height: 44px;
  cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle svg { width: 24px; height: 24px; stroke: var(--ink); }

.nav-head { display: none; }
.nav-close {
  display: inline-flex; align-items: center; justify-content: center;
  background: none; border: 1px solid var(--line-strong);
  border-radius: 10px; width: 46px; height: 44px; cursor: pointer;
}
.nav-close svg { width: 24px; height: 24px; stroke: var(--ink); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(120% 130% at 88% 18%, rgba(44,166,189,.28) 0%, rgba(44,166,189,0) 48%),
    radial-gradient(90% 120% at 8% 100%, rgba(29,74,94,.55) 0%, rgba(29,74,94,0) 55%),
    linear-gradient(115deg, var(--forest-deep) 0%, #112733 46%, #163243 100%);
}
/* subtle grid texture */
.hero::before {
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask: radial-gradient(120% 120% at 80% 20%, #000 0%, transparent 70%);
  mask: radial-gradient(120% 120% at 80% 20%, #000 0%, transparent 70%);
  opacity: .6;
}
.hero-media { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-media img {
  width: 58%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  margin-left: auto;
  -webkit-mask:
    linear-gradient(90deg, transparent 0%, #000 26%, #000 100%),
    linear-gradient(#000 0%, #000 82%, transparent 100%);
  mask:
    linear-gradient(90deg, transparent 0%, #000 26%, #000 100%),
    linear-gradient(#000 0%, #000 82%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg,
      rgba(13,27,35,.92) 0%,
      rgba(13,27,35,.78) 32%,
      rgba(13,27,35,.42) 56%,
      rgba(13,27,35,.12) 78%,
      rgba(13,27,35,0) 100%);
}
.hero .container { position: relative; z-index: 1; }
.hero-inner {
  max-width: 640px;
  padding-block: clamp(4rem, 11vw, 7.5rem);
}
.hero .eyebrow { color: var(--emerald-bright); }
.hero .eyebrow::before { background: var(--emerald-bright); }
.hero h1 {
  color: #fff;
  font-size: clamp(2.5rem, 6.2vw, 4.4rem);
  margin: 1.1rem 0 1.4rem;
}
.hero h1 b { color: var(--emerald-bright); font-weight: 700; }
.hero-sub { font-size: 1.2rem; color: rgba(255,255,255,.9); max-width: 52ch; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ---------- Stats band ---------- */
.stats { background: var(--paper); border-bottom: 1px solid var(--line); }
.stats .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding-block: clamp(2rem, 4vw, 2.75rem);
}
.stat { display: flex; flex-direction: column; gap: .2rem; }
.stat dt {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--forest);
  letter-spacing: -.02em;
}
.stat dd { margin: 0; color: var(--muted); font-size: .98rem; }
.stat + .stat { border-left: 1px solid var(--line); padding-left: 1.5rem; }

/* ---------- Services bento ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}
.svc {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.svc-media { overflow: hidden; }
.svc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.svc:hover .svc-media img { transform: scale(1.05); }
.svc-body { padding: 1.6rem 1.6rem 1.8rem; display: flex; flex-direction: column; gap: .65rem; }
.svc-body h3 { font-size: 1.35rem; }
.svc-body p { color: var(--muted); margin: 0; font-size: 1rem; }
.svc-tag {
  align-self: flex-start;
  font-family: var(--font-display);
  font-size: .74rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--emerald);
  background: rgba(44,166,189,.12);
  padding: .35rem .7rem; border-radius: 999px;
}

/* large featured cell */
.svc--feature { grid-column: span 3; grid-row: span 2; }
.svc--feature .svc-media { flex: 1; min-height: 240px; }
.svc--feature .svc-body { padding: 2rem; }
.svc--feature .svc-body h3 { font-size: 1.7rem; }
.svc--feature .svc-body p { font-size: 1.08rem; }
.svc--sm { grid-column: span 3; flex-direction: row; }
.svc--sm .svc-media { width: 42%; min-height: 100%; }
.svc--sm .svc-body { flex: 1; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.step {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
}
.step-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--emerald-bright);
  -webkit-text-stroke: 1px var(--forest);
  margin-bottom: 1rem;
  display: block;
}
.step h3 { font-size: 1.3rem; margin-bottom: .75rem; }
.step p { color: var(--muted); margin: 0; font-size: 1rem; }
.steps-cta { display: flex; justify-content: center; margin-top: 2.5rem; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about-content h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin: .6rem 0 .4rem; }
.about-role {
  font-family: var(--font-display);
  font-weight: 600; font-size: .95rem; letter-spacing: .04em;
  color: var(--emerald); text-transform: uppercase; margin-bottom: 1.4rem;
}
.about-content p { color: var(--muted); }
.about-content .lead { color: var(--ink); font-size: 1.15rem; }
.about-content b { color: var(--forest); }
.about-actions { margin-top: 1.6rem; }
.about-photo {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-photo img { width: 100%; }
.about-badge {
  position: absolute;
  left: 1.25rem; bottom: 1.25rem;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(6px);
  border-radius: 14px;
  padding: .85rem 1.1rem;
  box-shadow: var(--shadow-md);
  font-size: .85rem;
  display: flex; align-items: center; gap: .6rem;
}
.about-badge strong { font-family: var(--font-display); color: var(--forest); display: block; font-size: 1rem; }
.about-badge span { color: var(--muted); }
.about-badge .seal { width: 38px; height: 38px; border-radius: 50%; background: var(--emerald); display: grid; place-items: center; flex: none; }
.about-badge .seal svg { width: 20px; height: 20px; fill: #fff; }

/* ---------- Testimonials ---------- */
.reviews-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: 2.5rem; }
.reviews-rating { display: flex; align-items: center; gap: .75rem; }
.reviews-rating .score { font-family: var(--font-display); font-weight: 700; font-size: 2.4rem; color: var(--forest); }
.stars { display: inline-flex; gap: 2px; }
.stars svg { width: 20px; height: 20px; fill: #f5a623; }
.reviews-rating small { color: var(--muted); display: block; }
.reviews { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.review {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 1rem;
}
.review .stars svg { width: 18px; height: 18px; }
.review blockquote { margin: 0; font-size: 1.1rem; color: var(--ink); line-height: 1.55; }
.review figcaption { display: flex; align-items: center; gap: .75rem; margin-top: auto; }
.review-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--forest); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; flex: none; }
.review cite { font-style: normal; font-weight: 600; font-family: var(--font-display); color: var(--ink); }
.review .meta { color: var(--muted); font-size: .85rem; display: flex; align-items: center; gap: .4rem; }
.review .meta svg { width: 14px; height: 14px; }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.faq-intro h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 1rem; }
.faq-intro p { color: var(--muted); }
.faq-intro .btn { margin-top: 1.25rem; }
.faq-list { display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--paper);
  overflow: hidden;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.faq-item[open] { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 1.4rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon { flex: none; width: 24px; height: 24px; position: relative; transition: transform .3s var(--ease); }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: var(--emerald); border-radius: 2px; }
.faq-icon::before { left: 4px; right: 4px; top: 11px; height: 2px; }
.faq-icon::after { top: 4px; bottom: 4px; left: 11px; width: 2px; transition: transform .3s var(--ease); }
.faq-item[open] .faq-icon::after { transform: scaleY(0); }
.faq-answer { padding: 0 1.4rem 1.4rem; color: var(--muted); }
.faq-answer p { margin: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(120% 140% at 80% 0%, rgba(44,166,189,.22) 0%, transparent 55%),
    var(--forest);
  color: #fff;
  text-align: center;
}
.cta-band .container { padding-block: clamp(3.5rem, 8vw, 5.5rem); }
.cta-band h2 { color: #fff; font-size: clamp(1.9rem, 4.5vw, 3rem); max-width: 18ch; margin-inline: auto; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 56ch; margin: 1.2rem auto 2rem; font-size: 1.15rem; }
.cta-band .hero-actions { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--forest-deep); color: rgba(255,255,255,.78); padding-block: clamp(3rem, 6vw, 4.5rem) 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 2.5rem; }
.site-footer h3 { color: #fff; font-size: 1.05rem; margin-bottom: 1.1rem; font-family: var(--font-display); }
.footer-brand img { width: 180px; margin-bottom: 1.1rem; filter: brightness(0) invert(1); opacity: .95; }
.footer-brand p { font-size: .95rem; max-width: 32ch; }
.footer-links ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .6rem; }
.footer-links a { color: rgba(255,255,255,.78); }
.footer-links a:hover { color: var(--emerald-bright); }
.footer-contacts a, .footer-contacts span { color: rgba(255,255,255,.78); display: flex; align-items: center; gap: .6rem; margin-bottom: .7rem; }
.footer-contacts a:hover { color: #fff; }
.footer-contacts svg { width: 17px; height: 17px; fill: var(--emerald-bright); flex: none; }
.footer-social { display: flex; gap: .5rem; margin-top: 1rem; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; }
.footer-social a:hover { background: var(--emerald); }
.footer-social svg { width: 18px; height: 18px; fill: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 3rem; padding-block: 1.5rem; }
.footer-bottom p { margin: 0; font-size: .85rem; color: rgba(255,255,255,.6); text-align: center; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  right: 1.25rem; bottom: 1.25rem;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--emerald-bright);
  display: grid; place-items: center;
  box-shadow: var(--shadow-lg);
  z-index: 120;
  transition: transform .25s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; fill: #fff; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 460px; margin-inline: auto; order: -1; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .svc--feature, .svc--sm { grid-column: span 6; }
  .svc--feature { grid-row: auto; }
}

@media (max-width: 760px) {
  .topbar { display: none; }
  .nav-toggle { display: inline-flex; }
  html.nav-open,
  body.nav-open {
    overflow: hidden;
    touch-action: none;
    overscroll-behavior: none;
  }
  .primary-nav {
    position: fixed;
    inset: 0;
    height: 100dvh;
    background: var(--paper);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 1.25rem 1.5rem 2rem;
    box-shadow: none;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s var(--ease), visibility 0s linear .25s;
    z-index: 105;
  }
  .primary-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity .25s var(--ease);
  }
  .nav-head {
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; margin-bottom: 2rem;
  }
  .nav-head img { height: 46px; width: auto; }
  .primary-nav ul { flex-direction: column; gap: 0; width: 100%; }
  .primary-nav li { border-bottom: 1px solid var(--line); }
  .primary-nav ul a { display: block; padding: 1.25rem .25rem; font-size: 1.25rem; }
  .primary-nav .btn { margin-top: 1.75rem; padding: 1.05rem 1.4rem; font-size: 1.05rem; }
  .brand .crc { display: none; }

  .stats .container { grid-template-columns: 1fr 1fr; gap: 1.25rem 1rem; }
  .stat + .stat { border-left: 0; padding-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line); padding-top: 1.25rem; }

  .steps { grid-template-columns: 1fr; }
  .reviews { grid-template-columns: 1fr; }
  .svc--sm { flex-direction: column; }
  .svc--sm .svc-media { width: 100%; min-height: 200px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-actions .btn, .cta-band .btn { flex: 1 1 auto; }

  .hero-media img {
    width: 100%;
    -webkit-mask:
      linear-gradient(180deg, #000 0%, #000 45%, transparent 92%),
      linear-gradient(90deg, transparent 0%, #000 30%);
    mask:
      linear-gradient(180deg, #000 0%, #000 45%, transparent 92%),
      linear-gradient(90deg, transparent 0%, #000 30%);
    -webkit-mask-composite: source-in;
    mask-composite: intersect;
    opacity: .7;
  }
  .hero-media::after {
    background:
      linear-gradient(180deg,
        rgba(13,27,35,.45) 0%,
        rgba(13,27,35,.82) 55%,
        rgba(13,27,35,.96) 100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header::before { background: var(--paper); backdrop-filter: none; -webkit-backdrop-filter: none; }
  .about-badge { backdrop-filter: none; }
}
