:root {
  --bg: #0b0c0f;
  --panel: #14161b;
  --panel-2: #1c1f26;
  --text: #f5f7fb;
  --muted: #aeb6c4;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #f4f6f9;
  --accent-dark: #b8c0cc;
  --silver: #e7ebf0;
  --ink: #15171b;
  --paper: #f7f8fa;
  --radius: 8px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
main { width: 100%; max-width: 100%; overflow-x: hidden; }

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}
.narrow { max-width: 860px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 104px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 0 clamp(20px, 4vw, 54px);
  color: var(--text);
  background: linear-gradient(180deg, rgba(7, 8, 10, 0.92), rgba(7, 8, 10, 0.5), transparent);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.site-header.compact,
.site-header.is-scrolled {
  background: rgba(9, 10, 13, 0.94);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}
.brand img {
  width: 190px;
  height: auto;
  object-fit: contain;
  filter: invert(1);
}
.nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav a {
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  font-size: 0.92rem;
}
.nav a:hover,
.nav a[aria-current="page"] { color: #fff; }
.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  white-space: nowrap;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.social-nav,
.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.social-link {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: #fff;
  font-weight: 900;
  flex: 0 0 auto;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.social-link:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}
.social-link span {
  display: none;
}
.social-link img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.social-link.instagram::before,
.social-link.facebook::before { content: none; }
.social-link.instagram {
  background: radial-gradient(circle at 28% 105%, #feda75 0 18%, #fa7e1e 32%, #d62976 54%, #962fbf 76%, #4f5bd5 100%);
}
.social-link.instagram::before {
  content: "";
  background: #fff;
  width: 22px;
  height: 22px;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 2h10a5 5 0 0 1 5 5v10a5 5 0 0 1-5 5H7a5 5 0 0 1-5-5V7a5 5 0 0 1 5-5Zm0 2a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V7a3 3 0 0 0-3-3H7Zm5 3.5a4.5 4.5 0 1 1 0 9 4.5 4.5 0 0 1 0-9Zm0 2a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5Zm5.8-3.3a1 1 0 1 1 0 2 1 1 0 0 1 0-2Z'/%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 24 24'%3E%3Cpath fill='black' d='M7 2h10a5 5 0 0 1 5 5v10a5 5 0 0 1-5 5H7a5 5 0 0 1-5-5V7a5 5 0 0 1 5-5Zm0 2a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V7a3 3 0 0 0-3-3H7Zm5 3.5a4.5 4.5 0 1 1 0 9 4.5 4.5 0 0 1 0-9Zm0 2a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5Zm5.8-3.3a1 1 0 1 1 0 2 1 1 0 0 1 0-2Z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.social-link.facebook {
  background: #1877f2;
}
.social-link.facebook::before {
  content: "";
  width: 24px;
  height: 24px;
  background: #fff;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M14 8h3V4h-3c-3.3 0-5 2-5 5v3H6v4h3v8h4v-8h3.3l.7-4h-4V9c0-.7.3-1 1-1Z'/%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 24 24'%3E%3Cpath fill='black' d='M14 8h3V4h-3c-3.3 0-5 2-5 5v3H6v4h3v8h4v-8h3.3l.7-4h-4V9c0-.7.3-1 1-1Z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.header-cta {
  background: #f4f6f9;
  color: #101216;
}
.header-cta:hover,
.btn:hover { transform: translateY(-2px); }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #fff;
  background: transparent;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--text);
  background: var(--bg);
}
.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.92;
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 10, 13, 0.72) 0%, rgba(17, 19, 23, 0.56) 42%, rgba(244, 246, 249, 0.18) 100%),
    linear-gradient(180deg, rgba(8, 9, 12, 0.08), rgba(247, 248, 250, 0.18) 88%, #f7f8fa 100%);
}
.hero-content {
  position: relative;
  padding: 170px 0 86px;
  display: grid;
  justify-items: start;
  width: min(980px, calc(100% - 40px));
  margin-left: max(20px, calc((100vw - 1160px) / 2));
  margin-right: auto;
  max-width: 980px;
}
.eyebrow {
  margin: 0 0 12px;
  color: #d9dee7;
  text-transform: uppercase;
  letter-spacing: 0;
  font-weight: 900;
  font-size: 0.78rem;
}
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 {
  margin: 0;
  max-width: 880px;
  font-size: clamp(3rem, 7vw, 6.6rem);
  line-height: 0.96;
  letter-spacing: 0;
}
.hero-lead {
  max-width: 690px;
  margin: 28px 0 0;
  color: #d7dde8;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}
.hero-actions,
.cta-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.hero-quick-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  margin-top: 30px;
}
.hero-quick-row .hero-actions,
.hero-quick-row .hero-proof {
  margin-top: 0;
}
.btn-primary { background: #f4f6f9; color: #101216; box-shadow: 0 18px 38px rgba(255, 255, 255, 0.16); }
.btn-primary:hover { background: #ffffff; }
.btn-secondary { border-color: rgba(255, 255, 255, 0.35); color: #fff; background: rgba(255, 255, 255, 0.08); backdrop-filter: blur(10px); }
.btn-dark { background: var(--ink); color: #fff; }
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}
.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: #d6dce7;
}
.hero-proof strong { color: #fff; }

.trust-strip {
  background: linear-gradient(90deg, #0b0c0f, #171a20 58%, #f7f8fa);
  color: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.85fr 1.45fr;
  justify-content: start;
  gap: 1px;
}
.trust-grid div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 76px;
    padding: 16px 24px;
    background: transparent;
    border-left: 1px solid rgba(255,255,255,.08);
    color: #dce1e9;
    font-weight: 600;
    white-space: nowrap;
}
.trust-grid svg { color: #f4f6f9; flex: 0 0 auto; }
.trust-hours span { display: grid; gap: 2px; line-height: 1.35; }
.trust-hours strong,
.trust-hours em { display: block; font-style: normal; }
.trust-hours em { font-size: 0.84rem; white-space: nowrap; }

.scroll-cinema {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 170vh;
  overflow: hidden;
  contain: paint;
  background: #050608;
}
.cinema-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  max-width: 100%;
  height: 100vh;
  overflow: hidden;
  display: grid;
  align-items: center;
  color: #fff;
  background: linear-gradient(180deg, #050608 0%, #111318 55%, #f7f8fa 100%);
}
.cinema-canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
}
.cinema-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 55%, rgba(255, 255, 255, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(5, 6, 8, 0.16), rgba(5, 6, 8, 0.08) 55%, rgba(247, 248, 250, 0.92) 100%);
  pointer-events: none;
}
.cinema-copy {
  position: relative;
  z-index: 2;
  align-self: end;
  padding-bottom: clamp(42px, 8vh, 88px);
  max-width: 680px;
  width: min(680px, calc(100% - 40px));
  margin-left: max(20px, calc((100vw - 1160px) / 2));
  margin-right: auto;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.46);
}
.cinema-copy h2 {
  margin: 0;
  max-width: 680px;
  color: #fff;
  font-size: clamp(2rem, 4.2vw, 4.35rem);
  line-height: 1.02;
  letter-spacing: 0;
}
.section {
  padding: clamp(72px, 9vw, 118px) 0;
}
.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}
.section-heading h2,
.split h2,
.feature-panel h2,
.contact-cta h2,
.page-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}
.section-heading p,
.feature-panel p,
.contact-cta p,
.page-hero p {
  color: #5d6470;
  font-size: 1.05rem;
}
.service-grid,
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.services-preview .service-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}
.service-card,
.detail-card,
.review-card,
.feature-panel,
.contact-form,
.contact-info,
.metrics {
  border: 1px solid rgba(10, 14, 22, 0.1);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 30px rgba(13, 16, 22, 0.06);
}
.service-card,
.detail-card {
  padding: 26px;
  min-height: 236px;
}
.services-preview .service-card {
  padding: 22px;
  min-height: 240px;
}
.service-card svg,
.detail-card svg,
.contact-info svg {
  color: #2f3540;
}
.service-card h3,
.detail-card h2 {
  margin: 22px 0 10px;
  font-size: 1.16rem;
  line-height: 1.18;
}
.services-preview .service-card h3 {
  font-size: 1.02rem;
}
.services-preview .service-card p {
  font-size: 0.94rem;
}
.service-card p,
.detail-card p {
  margin: 0;
  color: #66707d;
}
.center { text-align: center; margin-top: 34px; }

.dark-band {
  color: #fff;
  background:
    linear-gradient(135deg, #0b0c0f 0%, #171a20 55%, #30343b 100%);
}
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.dark-band h2 { color: #fff; }
.process-list { display: grid; gap: 14px; }
.process-item {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}
.process-item span {
  color: #f4f6f9;
  font-weight: 900;
  font-size: 1.6rem;
}
.process-item p {
  margin: 0;
  color: #dce2ec;
}

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}
.feature-panel,
.review-card,
.metrics {
  padding: clamp(28px, 4vw, 48px);
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 14px;
}
.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 800;
}
.check-list svg { color: #2f3540; flex: 0 0 auto; }
.review-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ink);
  color: #fff;
}
.stars {
  color: #f4f6f9;
  font-size: 1.35rem;
  letter-spacing: 0;
}
.review-card h3 {
  margin: 12px 0 8px;
  font-size: clamp(2rem, 5vw, 4.8rem);
  line-height: 1;
}
.review-card p { color: #c9d0db; }
.review-card a { color: #fff; font-weight: 900; text-decoration: underline; text-underline-offset: 5px; }

.contact-cta {
  padding-top: 0;
}
.contact-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: clamp(28px, 5vw, 54px);
  color: #fff;
  background: linear-gradient(135deg, #0f1116, #1e222b);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.contact-cta h2 { color: #fff; }
.contact-cta p { color: #d4dae4; }

.page-hero {
  padding: 158px 0 82px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(9, 10, 13, 0.78), rgba(22, 24, 30, 0.62), rgba(247, 248, 250, 0.16)),
    var(--page-hero-image, url("../images/workshop-hero.png")) center/cover;
}
.page-hero h1 { color: #fff; max-width: 980px; }
.page-hero p { max-width: 760px; color: #d9dfeb; }
.contact-hero {
  padding-bottom: 104px;
}
.service-detail-grid { grid-template-columns: repeat(3, 1fr); }
.detail-card { min-height: 246px; }

.metrics {
  display: grid;
  gap: 16px;
  background: #101216;
  color: #fff;
}
.metrics div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.metrics strong {
  display: block;
  font-size: 3rem;
  line-height: 1;
  color: #fff;
}
.metrics span { color: #c8d0dc; font-weight: 800; }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 24px;
}
.contact-premium {
  padding-top: 44px;
  background:
    linear-gradient(180deg, #f7f8fa 0%, #eef1f5 100%);
}
.contact-clean {
  padding-top: clamp(64px, 8vw, 96px);
}
.contact-clean .contact-grid {
  align-items: start;
}
.contact-form {
  padding: clamp(24px, 4vw, 42px);
  display: grid;
  gap: 16px;
}
.contact-form-elite,
.contact-info-elite {
  box-shadow: 0 24px 70px rgba(13, 16, 22, 0.1);
}
.contact-form-elite {
  position: relative;
  overflow: hidden;
}
.contact-form-elite::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, #101216, #d8dde5);
}
.contact-form-elite h2,
.contact-info-elite h2 {
  margin: 0 0 10px;
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  line-height: 1.05;
}
.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.contact-form label {
  display: grid;
  gap: 8px;
  color: #242933;
  font-weight: 900;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid rgba(11, 12, 15, 0.16);
  border-radius: var(--radius);
  padding: 14px 15px;
  color: #111;
  background: #fff;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 3px solid rgba(18, 20, 24, 0.16);
  border-color: #2f3540;
}
.contact-form .btn-secondary { color: var(--ink); border-color: rgba(10, 14, 22, 0.18); background: #fff; }
.contact-form .email-submit {
  color: #fff;
  background: #101216;
}
.contact-form button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}
.form-note { margin: 0; color: #69717d; font-size: 0.92rem; }
.form-status {
  min-height: 26px;
  margin: -2px 0 0;
  color: #69717d;
  font-size: 0.94rem;
  font-weight: 800;
}
.form-status[data-status="success"] { color: #1f7a42; }
.form-status[data-status="error"] { color: #b42318; }
.form-status[data-status="info"] { color: #485262; }
.contact-info {
  padding: clamp(24px, 4vw, 38px);
  display: grid;
  gap: 22px;
  align-content: start;
}
.contact-info h2,
.contact-info h3 {
  margin: 8px 0 4px;
  font-size: 1.1rem;
}
.contact-info p {
  margin: 0;
  color: #626b78;
}
.contact-info-elite {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(16, 18, 22, 0.98), rgba(34, 38, 46, 0.96)),
    var(--page-hero-image, url("../images/workshop-hero.png")) center/cover;
}
.contact-info-elite .eyebrow,
.contact-info-elite h2,
.contact-info-elite h3 {
  color: #fff;
}
.contact-info-elite p {
  color: #d4dae4;
}
.contact-info-clean {
  gap: 18px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(13, 16, 22, 0.08);
}
.contact-info-clean .eyebrow {
  color: #69717d;
}
.contact-info-clean h2 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}
.contact-info-clean h3 {
  color: var(--ink);
}
.contact-info-clean p {
  color: #626b78;
}
.contact-methods {
  display: grid;
  gap: 12px;
}
.contact-methods > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}
.contact-methods svg {
  grid-row: span 2;
  color: #fff;
}
.clean-methods > div {
  border-color: rgba(10, 14, 22, 0.1);
  background: #f7f8fa;
}
.clean-methods svg {
  color: #2f3540;
}
.contact-quick-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 4px;
}
.clean-secondary {
  color: var(--ink);
  border-color: rgba(10, 14, 22, 0.14);
  background: #fff;
}
.contact-social {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.social-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 900;
}
.social-pill .social-link {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  box-shadow: none;
}
.social-pill .social-link::before {
  width: 19px;
  height: 19px;
}
.footer-social {
  margin-top: 18px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(10, 14, 22, 0.1);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 30px rgba(13, 16, 22, 0.06);
}
.gallery-card h2,
.gallery-card p {
  grid-column: 1 / -1;
}
.gallery-photo {
  grid-column: 1 / -1;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  background: #e7ebf0;
}
.gallery-photo-button {
  grid-column: 1 / -1;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
}
.gallery-photo-button .gallery-photo { transition: transform .3s ease; }
.gallery-photo-button:hover .gallery-photo { transform: scale(1.035); }
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(3,4,6,.9);
  backdrop-filter: blur(8px);
}
.gallery-modal.is-open { display: grid; }
.gallery-modal figure { margin: 0; max-width: min(1100px, 96vw); max-height: 90vh; text-align: center; }
.gallery-modal img { max-width: 100%; max-height: 82vh; object-fit: contain; border-radius: 8px; }
.gallery-modal figcaption { margin-top: 10px; color: #fff; font-weight: 700; }
.gallery-modal-close { position: absolute; top: 18px; right: 22px; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; color: #fff; background: rgba(0,0,0,.4); font-size: 2rem; cursor: pointer; }
.gallery-empty {
  padding: 54px 24px;
  border: 1px dashed rgba(15,18,24,.24);
  border-radius: var(--radius);
  text-align: center;
  background: #fff;
}
.gallery-empty svg { width: 38px; height: 38px; }
.gallery-empty h2 { margin: 12px 0 4px; }
.gallery-empty p { margin: 0; color: #66707d; }
.gallery-card h2 {
  margin: 12px 0 0;
  font-size: 1.16rem;
  line-height: 1.18;
}
.gallery-card p {
  margin: 0;
  color: #66707d;
}
.gallery-placeholder {
  display: grid;
  place-items: center;
  gap: 10px;
  min-height: 190px;
  border: 1px dashed rgba(15, 18, 24, 0.24);
  border-radius: var(--radius);
  color: #2f3540;
  background: linear-gradient(135deg, #f7f8fa, #e7ebf0);
  font-weight: 900;
}
.gallery-placeholder svg {
  width: 34px;
  height: 34px;
}

.footer {
  color: #d8dee8;
  background: #090a0d;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr;
  gap: 42px;
  padding: 54px 0;
}
.footer-logo {
  width: 210px;
  margin-bottom: 16px;
  filter: invert(1);
}
.footer h2 {
  color: #fff;
  margin: 0 0 12px;
  font-size: 1rem;
}
.footer a { display: block; margin: 8px 0; color: #d8dee8; }
.footer .social-link {
  display: inline-grid;
  margin: 0;
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 18px 20px;
  text-align: center;
  color: #9aa3b2;
  font-size: 0.92rem;
}
.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 55;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #fff;
  background: #101216;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(5, 6, 8, 0.58);
  backdrop-filter: blur(10px);
}
.modal.is-open {
  display: grid;
}
.modal-card {
  width: min(420px, 100%);
  padding: 34px;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  text-align: center;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}
.modal-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  border-radius: 50%;
  color: #fff;
  background: #101216;
}
.modal-card h2 {
  margin: 0 0 10px;
  font-size: 1.8rem;
  line-height: 1.1;
}
.modal-card p {
  margin: 0 0 24px;
  color: #5d6470;
}
.modal-card .btn {
  min-width: 120px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
    height: 90px;
  }
  .social-nav { display: none; }
  .nav-toggle { display: grid; place-items: center; justify-self: end; order: 3; }
  .nav {
    position: fixed;
    top: 90px;
    left: 16px;
    right: 16px;
    display: none;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(9, 10, 13, 0.98);
    box-shadow: var(--shadow);
  }
  .nav.is-open { display: grid; }
  .nav a { padding: 14px; }
  .header-cta { justify-self: end; }
  .hero { min-height: 760px; }
  .hero-content { padding-top: 130px; margin-right: 0; max-width: none; }
  .trust-grid,
  .service-grid,
  .service-detail-grid,
  .gallery-grid,
  .split,
  .two-col,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .trust-grid div {
    justify-content: flex-start;
    min-width: 0;
    padding: 14px 16px;
    white-space: normal;
  }
  .trust-grid div span {
    min-width: 0;
    overflow-wrap: normal;
    word-break: normal;
  }
  .trust-hours em { font-size: clamp(0.72rem, 3.15vw, 0.84rem); }
  .contact-cta-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1160px); }
  .site-header { padding: 0 14px; gap: 10px; }
  .brand img { width: 142px; height: auto; }
  .header-cta { min-height: 42px; padding: 0 12px; }
  .header-cta span { display: none; }
  .hero { min-height: 720px; }
  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 9, 12, 0.82), rgba(8, 9, 12, 0.54)),
      linear-gradient(180deg, rgba(8, 9, 12, 0.08), rgba(247, 248, 250, 0.16) 88%, #f7f8fa 100%);
  }
  .hero-content { width: min(100% - 28px, 1160px); margin-inline: auto; padding-bottom: 54px; }
  .btn { width: 100%; min-height: 50px; }
  .hero-quick-row,
  .hero-quick-row .hero-actions,
  .hero-quick-row .hero-proof {
    width: 100%;
  }
  .hero-proof span { width: 100%; }
  .trust-grid div { min-height: auto; }
  .form-row,
  .contact-social,
  .contact-quick-actions { grid-template-columns: 1fr; }
  .service-card,
  .detail-card { min-height: auto; }
  .gallery-grid { grid-template-columns: 1fr; }
  .process-item { grid-template-columns: 1fr; }
  .floating-whatsapp { width: 54px; height: 54px; right: 16px; bottom: 16px; }
  .scroll-cinema { height: 100vh; height: 100svh; }
  .cinema-sticky { height: 100vh; height: 100svh; }
  .cinema-copy {
    width: min(100% - 28px, 680px);
    margin-right: auto;
    margin-left: auto;
    padding-bottom: 34px;
  }
  .cinema-copy h2 { font-size: clamp(2rem, 10vw, 3.8rem); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .btn,
  .header-cta {
    transition: none;
  }
}


/* Google Reviews dinâmicos */
.google-reviews-panel {
  display: grid;
  gap: 20px;
  min-width: 0;
}
.google-reviews-summary {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius);
  color: #fff;
  background: var(--ink);
}
.google-label {
  margin: 0 0 8px;
  color: #c9d0db;
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.google-reviews-summary h3 {
  margin: 10px 0 6px;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 1;
}
.google-reviews-summary p { margin: 0; color: #c9d0db; }
.google-maps-link {
  flex: 0 0 auto;
  color: #fff;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.google-review-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.google-review-item {
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(10, 14, 22, .1);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 30px rgba(13, 16, 22, .06);
}
.google-review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.google-review-author img,
.google-review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
}
.google-review-avatar {
  display: grid;
  place-items: center;
  color: #fff;
  background: #20242b;
  font-weight: 900;
}
.google-review-author strong,
.google-review-author span { display: block; }
.google-review-author span { color: #727b88; font-size: .86rem; }
.google-review-stars {
  margin-top: 14px;
  color: #f5a623;
  letter-spacing: .08em;
}
.google-review-item p {
  margin: 12px 0;
  color: #5d6470;
}
.google-review-item a {
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.google-review-fallback { grid-column: 1 / -1; }

@media (max-width: 760px) {
  .google-review-list { grid-template-columns: 1fr; }
  .google-reviews-summary {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* ===== Reviews layout v2 ===== */
.reviews-section {
  background:
    radial-gradient(circle at 85% 10%, rgba(15, 18, 24, .05), transparent 34%),
    #f7f8fa;
}
.reviews-layout {
  display: grid;
  grid-template-columns: minmax(360px, .82fr) minmax(0, 1.18fr);
  gap: 22px;
  align-items: start;
}
.reviews-feature {
  position: sticky;
  top: 126px;
  min-height: 100%;
  overflow: hidden;
  border-color: rgba(10, 14, 22, .08);
  background:
    linear-gradient(145deg, #fff 0%, #fff 58%, #f0f2f5 100%);
  box-shadow: 0 22px 70px rgba(13, 16, 22, .10);
}
.reviews-feature::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, #101216, #d7dce4);
}
.reviews-feature .eyebrow {
  color: #626b78;
}
.reviews-feature h2 {
  max-width: 460px;
}
.reviews-feature > p {
  max-width: 520px;
}
.feature-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 26px 0 30px;
}
.feature-kpis span {
  min-height: 84px;
  padding: 14px;
  border: 1px solid rgba(10, 14, 22, .1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .76);
  color: #626b78;
  font-size: .86rem;
  font-weight: 800;
}
.feature-kpis strong {
  display: block;
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
  margin-bottom: 8px;
}
.google-reviews-panel {
  gap: 14px;
}
.google-reviews-summary {
  align-items: center;
  min-height: 190px;
  padding: 30px 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  background:
    radial-gradient(circle at 92% 18%, rgba(255,255,255,.10), transparent 28%),
    linear-gradient(135deg, #111318, #1c2028);
  box-shadow: 0 22px 64px rgba(13, 16, 22, .16);
}
.google-score {
  min-width: 0;
}
.google-score-topline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.google-badge {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #4285f4 0 28%, #34a853 28% 50%, #fbbc05 50% 72%, #ea4335 72%);
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(0,0,0,.22);
}
.google-label {
  margin: 0;
  color: #d9dee7;
  font-size: .78rem;
  letter-spacing: .08em;
}
.google-score-main {
  display: flex;
  align-items: center;
  gap: 18px;
}
.google-score-main > strong {
  flex: 0 0 auto;
  color: #fff;
  font-size: clamp(3.8rem, 6vw, 6.4rem);
  line-height: .84;
  letter-spacing: -.06em;
}
.google-score-main .stars {
  margin: 0 0 5px;
  color: #fbbc04;
  font-size: 1.2rem;
  line-height: 1;
}
.google-score-main span {
  color: #c9d0db;
  font-weight: 700;
}
.google-maps-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  color: #fff;
  background: rgba(255,255,255,.10);
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s ease, transform .2s ease;
}
.google-maps-link:hover {
  background: rgba(255,255,255,.13);
  transform: translateY(-2px);
}
.google-maps-link svg {
  width: 18px;
  height: 18px;
}
.google-review-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.google-review-item {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 230px;
  padding: 24px;
  overflow: hidden;
  border-color: rgba(10, 14, 22, .08);
  background:
    linear-gradient(180deg, #fff, #f9fafb);
  box-shadow: 0 16px 46px rgba(13, 16, 22, .08);
}
.google-review-item::before {
  content: "“";
  position: absolute;
  right: 18px;
  top: 6px;
  color: rgba(15, 18, 24, .07);
  font-family: Georgia, serif;
  font-size: 5.4rem;
  line-height: 1;
}
.google-review-item p {
  display: -webkit-box;
  margin: 12px 0 0;
  overflow: hidden;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.google-review-author {
  min-width: 0;
  position: relative;
  z-index: 1;
}
.google-review-author > div {
  min-width: 0;
}
.google-review-author strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.google-review-stars {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  margin-top: 18px;
}
@media (max-width: 980px) {
  .reviews-layout {
    grid-template-columns: 1fr;
  }
  .reviews-feature {
    position: static;
  }
  .feature-kpis {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .google-reviews-summary {
    min-height: 0;
    padding: 26px;
  }
  .google-score-main {
    align-items: flex-start;
  }
  .google-score-main > strong {
    font-size: 4.4rem;
  }
  .google-maps-link {
    width: 100%;
    justify-content: center;
  }
  .feature-kpis {
    grid-template-columns: 1fr;
  }
  .feature-kpis span {
    min-height: 0;
  }
}
.footer-credit{
    text-decoration:none;
    font-weight:700;
    transition:.25s;
}

.footer-credit .simple{
    color:#2D74FF;
}

.footer-credit .system{
    color:#2F3640;   /* ou #333 */
}

.footer-credit .fouru{
    color:#2D74FF;
}

.footer-credit:hover{
    opacity:.85;
}


/* ===== Home service cards (igual à página Serviços) ===== */
.services-preview .service-grid{
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:18px;
}

.services-preview .service-card{
    padding:26px;
    min-height:236px;
    border:1px solid rgba(10,14,22,.10);
    border-radius:var(--radius);
    background:#fff;
    box-shadow:0 10px 30px rgba(13,16,22,.06);
    transition:transform .35s ease,box-shadow .35s ease;
}

.services-preview .service-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.services-preview .service-card svg{
    width:30px;
    height:30px;
    color:#2f3540;
    background:none;
    padding:0;
    margin-bottom:18px;
}

.services-preview .service-card h3{
    margin:22px 0 10px;
    font-size:1.16rem;
    line-height:1.18;
}

.services-preview .service-card p{
    margin:0;
    color:#66707d;
    font-size:1rem;
    line-height:1.6;
}

@media(max-width:980px){
    .services-preview .service-grid{
        grid-template-columns:1fr;
    }
}





/* ===== Contato Rancho — integração visual com o site ===== */
.contact-rancho {
  position: relative;
  padding: clamp(64px, 8vw, 104px) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(80, 111, 164, .24), transparent 34%),
    radial-gradient(circle at 92% 82%, rgba(151, 61, 61, .12), transparent 30%),
    linear-gradient(135deg, #eef2f7 0%, #dfe5ed 48%, #cfd7e2 100%);
}
.contact-rancho::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .42;
  background-image:
    linear-gradient(rgba(34,45,63,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,45,63,.035) 1px, transparent 1px);
  background-size: 44px 44px;
}
.contact-rancho .contact-grid { position: relative; z-index: 1; gap: 30px; align-items: start; }
.contact-rancho .contact-form-elite {
  border: 1px solid rgba(39,49,65,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 28px 70px rgba(31,42,58,.16);
}
.contact-rancho .contact-form-elite::before {
  height: 4px;
  background: linear-gradient(90deg, #263243, #7b8798 52%, #d5dbe4);
}
.contact-rancho .contact-form-elite .eyebrow { color: #5d6674; }
.contact-rancho .contact-form-elite h2 {
  color: #11151b;
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  letter-spacing: -.035em;
}
.contact-rancho .contact-form input,
.contact-rancho .contact-form textarea,
.contact-rancho .contact-form select {
  min-height: 52px;
  border-color: #d7dce4;
  border-radius: 10px;
  background: #f8f9fb;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.contact-rancho .contact-form textarea { min-height: 142px; resize: vertical; }
.contact-rancho .contact-form input:focus,
.contact-rancho .contact-form textarea:focus,
.contact-rancho .contact-form select:focus {
  outline: none;
  border-color: #39465a;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(57,70,90,.11);
}
.contact-rancho .form-actions { margin-top: 8px; }
.contact-rancho .form-actions .btn { min-height: 52px; }
.contact-rancho .btn-primary {
  color: #fff;
  background: #11151b;
  box-shadow: 0 16px 34px rgba(12,15,20,.20);
}
.contact-rancho .btn-primary:hover { background: #252b35; }
.contact-rancho .email-submit {
  color: #11151b;
  border-color: #d3d8e0;
  background: #fff;
}
.contact-rancho .email-submit:hover { background: #f0f2f5; }
.contact-info-rancho {
  position: sticky;
  top: 128px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  background:
    linear-gradient(150deg, rgba(38,48,63,.97), rgba(18,23,31,.97)),
    var(--page-hero-image, url("../images/workshop-hero.png")) center/cover;
  box-shadow: 0 28px 70px rgba(31,42,58,.22);
}
.contact-info-rancho::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -130px;
  top: -120px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(255,255,255,.035), 0 0 0 84px rgba(255,255,255,.022);
  pointer-events: none;
}
.contact-info-rancho > * { position: relative; z-index: 1; }
.contact-info-rancho h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(1.7rem, 2.7vw, 2.4rem);
  line-height: 1.12;
  letter-spacing: -.025em;
}
.contact-info-rancho .eyebrow { color: #c2ccda; }
.contact-methods-rancho > div {
  padding: 18px;
  border-color: rgba(255,255,255,.12);
  background: rgba(255,255,255,.075);
  backdrop-filter: blur(8px);
}
.contact-methods-rancho > div:hover { background: rgba(255,255,255,.105); }
.contact-methods-rancho svg { color: #e8edf5; }
.contact-methods-rancho h3 { color: #fff; }
.contact-methods-rancho p { color: #d4dbe6; line-height: 1.65; }
.contact-methods-rancho .hours-line {
  display: block;
  margin: 0 0 7px;
}
.contact-methods-rancho .hours-line:last-child { margin-bottom: 0; }
.contact-info-rancho .btn-dark {
  color: #101318;
  background: #fff;
}
.contact-whatsapp-btn {
  color: #fff;
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.10);
}
.contact-whatsapp-btn:hover { background: rgba(255,255,255,.16); }
@media (max-width: 980px) {
  .contact-info-rancho { position: static; }
}
@media (max-width: 640px) {
  .contact-rancho { padding: 40px 0 56px; }
  .contact-rancho .contact-form,
  .contact-info-rancho { padding: 24px 20px; }
  .contact-rancho .form-actions .btn { width: 100%; }
}

\n\n/* ===== Contato v7 — gradiente horizontal e horários em linha ===== */
.contact-rancho {
  background:
    radial-gradient(circle at 18% 14%, rgba(255,255,255,.07), transparent 28%),
    linear-gradient(90deg,
      #07090c 0%,
      #12161d 24%,
      #3f4855 50%,
      #aeb5bf 76%,
      #f6f7f9 100%);
}
.contact-rancho::before {
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
}
.contact-methods-rancho .hours-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  margin: 0 0 8px;
  white-space: nowrap;
}
.contact-methods-rancho .hours-day-label {
  flex: 0 0 auto;
  white-space: nowrap;
}
.contact-methods-rancho .hours-time {
  flex: 0 0 auto;
  margin-left: auto;
  text-align: right;
  white-space: nowrap;
}
@media (max-width: 1180px) {
  .contact-methods-rancho .hours-line {
    font-size: .9rem;
    gap: 8px;
  }
}
@media (max-width: 760px) {
  .contact-rancho {
    background: linear-gradient(180deg, #11151b 0%, #6e7682 44%, #f6f7f9 100%);
  }
  .contact-methods-rancho .hours-line {
    flex-wrap: wrap;
    white-space: normal;
  }
  .contact-methods-rancho .hours-time {
    margin-left: 0;
    text-align: left;
    white-space: normal;
  }
}

/* Página FAQ */
.faq-hero{background:linear-gradient(120deg,#0b0e13 0%,#17202d 60%,#253247 100%);color:#fff}.faq-hero p:not(.eyebrow){color:#c7cfdb}.faq-section{background:#f3f5f8}.faq-layout{display:grid;grid-template-columns:minmax(0,1fr) 340px;gap:28px;align-items:start}.faq-list{display:grid;gap:10px}.faq-item{border:1px solid #dfe4eb;border-radius:14px;background:#fff;box-shadow:0 8px 24px rgba(14,23,38,.04);overflow:hidden;transition:border-color .22s ease,box-shadow .22s ease,transform .22s ease}.faq-item:hover{border-color:#8aa9f6;box-shadow:0 14px 34px rgba(37,95,232,.10);transform:translateY(-2px)}.faq-item[open]{border-color:#b8c9f4;box-shadow:0 16px 38px rgba(37,95,232,.11)}.faq-item summary{display:flex;align-items:center;justify-content:space-between;gap:18px;padding:20px 22px;cursor:pointer;list-style:none;font-weight:800}.faq-item summary::-webkit-details-marker{display:none}.faq-item summary svg{width:20px;height:20px;flex:0 0 auto;color:#4d596b;transition:transform .25s ease,color .25s ease}.faq-item[open] summary svg{color:#255fe8;transform:rotate(180deg)}.faq-answer{padding:0 22px 20px;color:#667080;line-height:1.7;animation:faqAnswerIn .24s ease both}.faq-answer p{margin:0}@keyframes faqAnswerIn{from{opacity:0;transform:translateY(-5px)}to{opacity:1;transform:translateY(0)}}.faq-contact-card{position:sticky;top:125px;padding:28px;border-radius:18px;color:#fff;background:linear-gradient(145deg,#0c0f14,#1c2635);box-shadow:0 24px 55px rgba(8,13,22,.18)}.faq-contact-card>svg{width:44px;height:44px;margin-bottom:22px;padding:10px;border-radius:13px;color:#fff;background:rgba(255,255,255,.1)}.faq-contact-card .eyebrow{color:#8fb0ff}.faq-contact-card h2{margin:0 0 12px;font-size:1.7rem;line-height:1.15}.faq-contact-card p:not(.eyebrow){color:#b9c3d2;line-height:1.65}.faq-contact-card .btn{margin-top:10px}.faq-empty{padding:44px;text-align:center;border:1px solid #dfe4eb;border-radius:16px;background:#fff}.faq-empty svg{width:42px;height:42px;color:#667080}@media(max-width:900px){.faq-layout{grid-template-columns:1fr}.faq-contact-card{position:static}.faq-search-panel{width:100%;margin-right:0}}@media(max-width:600px){.faq-item summary{padding:17px}.faq-answer{padding:0 17px 17px}.faq-contact-card{padding:23px}}

/* FAQ integrado à página inicial */
.home-faq-section{background:linear-gradient(180deg,#f7f8fa 0%,#eef2f7 100%)}
.home-faq-section .section-heading{max-width:760px;margin-bottom:34px}
.home-faq-section .faq-contact-card{top:110px}
@media(max-width:900px){.home-faq-section .faq-contact-card{top:auto}}


/* ===== FAQ completo v10 ===== */
.faq-more-wrap{display:flex;justify-content:flex-start;margin-top:18px}
.faq-more-link{gap:10px}
.faq-more-link svg{width:18px;height:18px}
.faq-search-panel{width:calc(100% - 368px);max-width:none;margin:0 368px 28px 0;padding:20px;border:1px solid #dfe4eb;border-radius:18px;background:#fff;box-shadow:0 14px 38px rgba(14,23,38,.06)}
.faq-search-panel label{display:block;margin-bottom:10px;color:#202733;font-weight:800}
.faq-search-box{display:flex;align-items:center;gap:10px;min-height:54px;padding:0 14px;border:1px solid #cfd6e0;border-radius:12px;background:#f8fafc;transition:border-color .2s ease,box-shadow .2s ease,background .2s ease}
.faq-search-box:focus-within{border-color:#255fe8;background:#fff;box-shadow:0 0 0 4px rgba(37,95,232,.10)}
.faq-search-box>svg{width:20px;height:20px;color:#758093;flex:0 0 auto}
.faq-search-box input{width:100%;min-width:0;border:0;outline:0;background:transparent;color:#111827;font:inherit}
.faq-search-box input::placeholder{color:#8b95a5}
.faq-search-clear{display:grid;place-items:center;width:34px;height:34px;border:0;border-radius:9px;background:#e9edf3;color:#465164;cursor:pointer}
.faq-search-clear:hover{background:#dde3eb}
.faq-search-clear svg{width:17px;height:17px}
.faq-search-status{min-height:20px;margin:10px 2px 0;color:#6f7989;font-size:.9rem}
.faq-no-results{padding:42px 24px;text-align:center;border:1px dashed #cbd3df;border-radius:16px;background:#fff}
.faq-no-results svg{width:42px;height:42px;color:#748096}
.faq-no-results h2{margin:14px 0 8px;font-size:1.25rem}
.faq-no-results p{margin:0;color:#6b7482}
.faq-item[hidden]{display:none!important}
@media(max-width:600px){.faq-more-wrap{justify-content:stretch}.faq-more-link{width:100%;justify-content:center}.faq-search-panel{padding:15px;border-radius:14px}.faq-search-box{min-height:50px}}


/* Banners dinâmicos */
.hero-slider{display:block;min-height:92vh}.hero-slides,.hero-slide{position:absolute;inset:0}.hero-slide{opacity:0;visibility:hidden;transition:opacity .8s ease,visibility .8s ease;display:grid;align-items:end}.hero-slide.is-active{opacity:1;visibility:visible;z-index:1}.hero-slide .hero-content{z-index:2}.hero-slide.is-active .hero-content>*{animation:heroContentIn .72s ease both}.hero-slide.is-active .hero-content>*:nth-child(2){animation-delay:.06s}.hero-slide.is-active .hero-content>*:nth-child(3){animation-delay:.12s}.hero-slide.is-active .hero-content>*:nth-child(4){animation-delay:.18s}@keyframes heroContentIn{from{opacity:0;transform:translateY(18px)}to{opacity:1;transform:none}}.hero-slider-controls{position:absolute;z-index:5;right:max(22px,calc((100vw - 1160px)/2));bottom:34px;display:flex;align-items:center;gap:12px}.hero-slider-controls>button{width:42px;height:42px;border-radius:50%;border:1px solid rgba(255,255,255,.35);background:rgba(10,12,16,.46);color:#fff;display:grid;place-items:center;backdrop-filter:blur(10px);cursor:pointer;transition:.2s}.hero-slider-controls>button:hover{background:#fff;color:#111827}.hero-dots{display:flex;gap:7px}.hero-dots button{width:8px;height:8px;padding:0;border:0;border-radius:999px;background:rgba(255,255,255,.48);cursor:pointer;transition:.25s}.hero-dots button.is-active{width:28px;background:#fff}.page-hero{background:linear-gradient(135deg,rgba(9,10,13,.78),rgba(22,24,30,.62),rgba(247,248,250,.16)),var(--page-hero-image,url("../images/workshop-hero.png")) center/cover}
@media(max-width:760px){.hero-slider-controls{right:20px;bottom:18px}.hero-slider-controls>button{display:none}.hero-dots button.is-active{width:22px}}
@media(prefers-reduced-motion:reduce){.hero-slide,.hero-slide.is-active .hero-content>*{transition:none;animation:none}}
