:root {
  --black: #0D0D0D;
  --black-deep: #070707;
  --card: #141414;
  --card-alt: #161616;
  --white: #FFFFFF;
  --light: #E5E5E5;
  --gray: #4D4D4D;
  --mid: #B5B5B5;
  --muted: #8a8a8a;
  --faint: #6f6f6f;
  --pad-x: 56px;
  --wrap: 1500px;
  --sans: Montserrat, sans-serif;
  --body: Lato, system-ui, sans-serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }

html {
  scroll-behavior: smooth;
  /* Impede o iOS de aumentar o texto sozinho ao girar o aparelho. */
  -webkit-text-size-adjust: 100%;
}

/* Remove o atraso de 300ms no toque sem desativar o zoom por pinça. */
a, button, input, select, textarea, [role="button"], [data-lightbox] {
  touch-action: manipulation;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--white); text-decoration: none; }
a:hover { color: var(--light); }
img { max-width: 100%; display: block; }
input, select, textarea, button { font-family: var(--body); }
select { appearance: none; }
::selection { background: var(--white); color: var(--black); }

.wrap { max-width: var(--wrap); margin: 0 auto; }

/* ---------- shared type ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--light);
  margin: 0;
}
.eyebrow--dark { color: var(--gray); }
.eyebrow--rule {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 500;
  letter-spacing: .3em;
  margin-bottom: 24px;
}
.eyebrow--rule::before {
  content: "";
  width: 44px;
  height: 1px;
  background: var(--white);
}

.rule { display: block; width: 44px; height: 2px; background: var(--white); margin: 16px 0 24px; }
.rule--dark { background: var(--black); }
.rule--center { margin-left: auto; margin-right: auto; }

.h2 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -.01em;
  margin: 0;
}
.h2--dark { color: var(--black); }
.h2--caps { text-transform: uppercase; letter-spacing: .01em; }

.section-head--center { text-align: center; }
.section-head--center .h2 { margin-top: 24px; }
.section-head__lead {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray);
  margin: 12px auto 0;
  max-width: 480px;
  text-wrap: pretty;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  padding: 16px 26px;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .18s, color .18s, border-color .18s;
}
.btn--solid { background: var(--white); color: var(--black); border-color: var(--white); }
.btn--solid:hover { background: var(--light); border-color: var(--light); color: var(--black); }
.btn--ghost { border-color: rgba(255,255,255,.45); color: var(--white); }
.btn--ghost:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.btn--outline-dark {
  padding: 15px 24px;
  border-color: var(--black);
  color: var(--black);
  font-size: 11px;
}
.btn--outline-dark:hover { background: var(--black); color: var(--white); }
.btn--dark { background: var(--black); color: var(--white); border-color: var(--black); letter-spacing: .18em; }
.btn--dark:hover { background: var(--gray); border-color: var(--gray); color: var(--white); }
.btn--block { display: block; width: 100%; padding: 17px; text-align: center; }

.pill {
  padding: 10px 16px;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,.22);
  background: transparent;
  color: var(--mid);
  transition: background .15s, border-color .15s, color .15s;
}
.pill:hover { border-color: var(--white); color: var(--white); }
.pill.is-on { border-color: var(--white); background: var(--white); color: var(--black); }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 18px var(--pad-x);
  background: rgba(13,13,13,.94);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
}

.brand { display: flex; align-items: center; gap: 14px; }
.brand__mark { width: 34px; height: 45px; fill: var(--white); display: block; flex: none; }
.brand__mark--sm { width: 32px; height: 42px; }
.brand__text { display: block; }
.brand__name {
  display: block;
  font-family: var(--sans);
  font-size: 27px;
  letter-spacing: .06em;
  line-height: 1;
  color: var(--white);
}
.brand__name b { font-weight: 700; }
.brand__name > span { font-weight: 300; letter-spacing: .16em; }
.brand__name--sm { font-size: 18px; }
.brand__tagline {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 6px;
  font-family: var(--sans);
  font-size: 7.5px;
  font-weight: 400;
  letter-spacing: .3em;
  color: var(--light);
}
.brand__tagline i { width: 14px; height: 1px; background: rgba(255,255,255,.5); }
.brand__tagline--plain { display: block; font-size: 7px; color: var(--mid); margin-top: 5px; }

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 26px;
}
.site-nav a {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--light);
}
.site-nav a:hover { color: var(--white); }
.site-nav a.is-current {
  font-weight: 500;
  color: var(--white);
  padding-bottom: 5px;
  border-bottom: 1px solid var(--white);
}
.site-nav .nav-cta {
  font-weight: 500;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.4);
  padding: 12px 18px;
  transition: background .18s, color .18s, border-color .18s;
}
.site-nav .nav-cta:hover { background: var(--white); color: var(--black); border-color: var(--white); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0 9px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.28);
  cursor: pointer;
}
.nav-toggle span { display: block; height: 1px; background: var(--white); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: var(--hero-h, 720px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Escolhido no painel: define qual parte da cena fica visível no corte. */
  object-position: var(--focus-desktop, 50% 50%);
}
.hero__video--bw { filter: grayscale(1) contrast(1.18) brightness(.92); }
.hero__video--still {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: var(--focus-desktop, 50% 50%);
}
.hero__scrim { position: absolute; inset: 0; }
.hero__scrim--h {
  background: linear-gradient(90deg, #0D0D0D 0%, rgba(13,13,13,.95) 26%, rgba(13,13,13,.7) 52%, rgba(13,13,13,.2) 100%);
}
.hero__scrim--left {
  inset: 0 auto 0 0;
  width: 46%;
  background: linear-gradient(90deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.55) 55%, transparent 100%);
}
.hero__scrim--v {
  background: linear-gradient(180deg, rgba(13,13,13,.55) 0%, transparent 30%, transparent 70%, rgba(13,13,13,.6) 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  padding: 80px var(--pad-x);
  max-width: var(--wrap);
  margin: 0 auto;
  width: 100%;
}
.hero__title {
  font-family: var(--sans);
  font-weight: 900;
  font-size: 74px;
  line-height: 1.02;
  letter-spacing: -.02em;
  margin: 0;
  max-width: 640px;
  text-transform: uppercase;
}
.hero__lead {
  font-size: 19px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--light);
  margin: 26px 0 0;
  max-width: 420px;
  text-wrap: pretty;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero__videoctl {
  position: absolute;
  right: var(--pad-x);
  bottom: 28px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  background: transparent;
  border: 0;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--light);
  cursor: pointer;
}
.hero__videoctl:hover { color: var(--white); }
.hero__videoicon { letter-spacing: 0; }

/* ---------- sobre ---------- */
.about { background: var(--white); color: var(--black); }
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 64px;
  align-items: center;
  padding: 96px var(--pad-x);
}
.about .h2 { font-size: 40px; line-height: 1.16; }
.about__body {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--gray);
  margin: 26px 0 0;
  max-width: 400px;
  text-wrap: pretty;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid rgba(13,13,13,.12);
}
.stat__value {
  display: block;
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: var(--black);
  white-space: nowrap;
}
.stat__label {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 9px;
}
.about__cta { margin-top: 34px; }
.about__gallery {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: 210px 210px;
  gap: 12px;
}
.about__shot {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--light);
}
.about__shot--tall { grid-row: span 2; }

/* Imagens reais (e não fundo CSS) para o Google Imagens enxergar a galeria. */
.cover-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cover-img--bw { filter: grayscale(1) contrast(1.06); }

/* ---------- serviços ---------- */
.services { background: var(--black); padding: 96px var(--pad-x); }
.services .h2 { font-size: 36px; }
.pillars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 56px;
}
.pillar {
  border: 1px solid rgba(255,255,255,.12);
  background: var(--card);
  padding: 28px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color .18s, background .18s;
}
.pillar:hover { border-color: var(--white); background: #191919; }
.pillar__num { font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: .1em; color: var(--gray); }
.pillar__title {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1.5;
  color: var(--white);
  margin: 0;
}
.pillar__body { font-size: 14.5px; font-weight: 300; line-height: 1.65; color: var(--mid); margin: 0; text-wrap: pretty; }

/* ---------- portfólio ---------- */
.portfolio { background: var(--black); padding: 0 var(--pad-x) 96px; }
.portfolio__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 26px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.portfolio__head .h2 { margin-top: 16px; }
.filters { display: flex; flex-wrap: wrap; gap: 8px; }
.shots { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 26px; }
.shot {
  position: relative;
  margin: 0;
  aspect-ratio: 1 / 1.18;
  overflow: hidden;
  background: var(--card);
  cursor: zoom-in;
  outline: 1px solid transparent;
  transition: outline-color .18s;
}
.shot:hover { outline-color: var(--white); }
.shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(13,13,13,.85) 100%);
}
.shot figcaption {
  position: absolute;
  left: 16px;
  bottom: 15px;
  z-index: 1;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--white);
}
/* ---------- álbuns ---------- */
.albums { background: var(--light); color: var(--black); padding: 96px var(--pad-x); }
.bindings { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.binding {
  background: var(--white);
  border: 1px solid rgba(13,13,13,.1);
  display: flex;
  flex-direction: column;
  transition: border-color .18s;
}
.binding:hover { border-color: var(--black); }
.binding__media {
  position: relative;
  aspect-ratio: 4 / 2.7;
  overflow: hidden;
  background: var(--light);
  cursor: zoom-in;
}
.binding__badge {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 5px 10px;
  background: rgba(13,13,13,.72);
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--white);
}
.binding__body {
  padding: 26px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.binding__title { font-family: var(--sans); font-size: 19px; font-weight: 600; color: var(--black); margin: 0; }
.binding__cover {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gray);
  margin: 8px 0 0;
}
.binding__text { font-size: 14.5px; line-height: 1.65; color: var(--gray); margin: 0; text-wrap: pretty; }
.specs { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.specs li { display: flex; align-items: baseline; gap: 10px; font-size: 13.5px; color: var(--gray); }
.specs li::before { content: "—"; color: var(--black); }
.binding__price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin: auto 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(13,13,13,.1);
}
.binding__price span { font-size: 13px; color: var(--gray); }
.binding__price strong { font-family: var(--sans); font-size: 22px; font-weight: 700; color: var(--black); }

.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid rgba(13,13,13,.14);
}
.fact__value { display: block; font-family: var(--sans); font-size: 26px; font-weight: 700; color: var(--black); }
.fact__label { display: block; font-size: 13.5px; line-height: 1.5; color: var(--gray); margin-top: 7px; max-width: 210px; text-wrap: pretty; }

/* ---------- pacotes / simulador ---------- */
.packages { background: var(--black); padding: 96px var(--pad-x); }
.packages__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: start; }
.packages .h2 { line-height: 1.18; }
.packages__lead {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--mid);
  margin: 18px 0 34px;
  max-width: 380px;
  text-wrap: pretty;
}
.sim { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 22px; max-width: 530px; }
.field { display: block; }
.field--full { grid-column: 1 / -1; }
.field__label {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 9px;
}
.field--full .field__label { margin-bottom: 12px; }

.input {
  width: 100%;
  padding: 13px 12px;
  background: var(--card);
  border: 1px solid rgba(255,255,255,.16);
  color: var(--white);
  font-size: 14.5px;
  outline: none;
  color-scheme: dark;
  transition: border-color .18s;
}
.input:focus { border-color: var(--white); }
.input--select {
  padding-right: 34px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 18px) 21px, calc(100% - 12px) 21px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.input--select option { background: var(--card); }
.input--boxed {
  padding: 17px 18px;
  background: var(--card-alt);
  border-color: rgba(255,255,255,.1);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
}
.input--boxed.input--select { background-position: calc(100% - 24px) 26px, calc(100% - 18px) 26px; }
.input--boxed option { background: var(--card-alt); }
textarea.input { resize: vertical; }

.range { display: flex; align-items: center; gap: 18px; }
.range input[type="range"] { flex: 1; accent-color: var(--white); background: transparent; }
.range__out {
  min-width: 58px;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.16);
  text-align: center;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
}
.extras { display: flex; flex-wrap: wrap; gap: 8px; }
.sim__contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }

.quote { background: var(--white); color: var(--black); padding: 34px 32px; }
.quote__title {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gray);
  margin: 0;
}
.quote__lines { display: flex; flex-direction: column; margin: 22px 0 0; }
.quote__line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(13,13,13,.1);
}
.quote__line dt { font-size: 14.5px; color: var(--gray); }
.quote__line dd { margin: 0; font-family: var(--sans); font-size: 14px; font-weight: 600; white-space: nowrap; }
.quote__total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin: 24px 0 0;
}
.quote__total span {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gray);
}
.quote__total strong { font-family: var(--sans); font-size: 28px; font-weight: 700; white-space: nowrap; }
.quote .btn { margin-top: 26px; }
.quote__note { text-align: center; font-size: 13px; color: var(--gray); margin: 14px 0 0; }
.quote__note.is-error, .contact__note.is-error { color: #c0392b; }
.quote__note.is-success { color: #1e7d43; }
.contact__note.is-success { color: #7ee2a8; }

/* ---------- depoimentos ---------- */
.testimonials { background: var(--light); color: var(--black); padding: 90px var(--pad-x); }
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 46px; }
.testimonial {
  background: var(--white);
  border: 1px solid rgba(13,13,13,.1);
  padding: 30px 26px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.testimonial__mark { font-family: var(--sans); font-size: 34px; font-weight: 700; line-height: .6; color: var(--black); }
.testimonial blockquote {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--gray);
  margin: 0;
  flex: 1;
  text-wrap: pretty;
}
.testimonial__name {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--black);
}
.testimonial__role { display: block; font-size: 13.5px; color: var(--gray); margin-top: 5px; }

/* ---------- contato ---------- */
.contact { background: var(--black); padding: 96px var(--pad-x); }
.contact__inner { display: grid; grid-template-columns: 1fr 1.15fr; gap: 64px; align-items: start; }
.contact .h2 { font-size: 36px; line-height: 1.18; }
.contact__lead {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--mid);
  margin: 20px 0 34px;
  max-width: 360px;
  text-wrap: pretty;
}
.contact__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.contact__list li { display: flex; align-items: center; gap: 14px; font-size: 15.5px; color: var(--light); }
.contact__icon {
  width: 34px;
  height: 34px;
  flex: none;
  border: 1px solid rgba(255,255,255,.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.socials { display: flex; gap: 12px; margin-top: 30px; }
.socials a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  transition: background .18s, color .18s, border-color .18s;
}
.socials a:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.contact__form { display: flex; flex-direction: column; gap: 14px; }
.contact__form .btn { padding: 18px; letter-spacing: .2em; }
.contact__note { text-align: center; font-size: 13px; color: var(--muted); margin: 0; }

/* ---------- footer ---------- */
.site-footer { background: var(--black-deep); border-top: 1px solid rgba(255,255,255,.08); }
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr .8fr 1fr;
  gap: 44px;
  padding: 64px var(--pad-x) 48px;
}
.site-footer__about {
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
  margin: 22px 0 0;
  max-width: 290px;
  text-wrap: pretty;
}
.site-footer__title {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin: 0 0 20px;
}
.site-footer__links { display: flex; flex-direction: column; gap: 11px; }
.site-footer__links a, .site-footer__links--plain { font-size: 14.5px; color: var(--muted); }
.site-footer__links a:hover { color: var(--white); }
.site-footer__hours { margin-top: 10px; color: var(--mid); }
.site-footer__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px var(--pad-x);
  border-top: 1px solid rgba(255,255,255,.07);
  font-size: 13px;
  color: var(--faint);
}
/* Assinatura do desenvolvedor */
.site-credit {
  display: flex;
  justify-content: center;
  padding: 22px var(--pad-x) 30px;
  border-top: 1px solid rgba(255,255,255,.05);
}
.site-credit__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 4px;
  opacity: .45;
  transition: opacity .2s;
}
.site-credit__link:hover,
.site-credit__link:focus-visible { opacity: 1; }
.site-credit__link span {
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted);
}
.site-credit__link img { width: 74px; height: auto; display: block; }

.site-footer__legal { display: flex; gap: 20px; }
.site-footer__legal a { color: var(--faint); }
.site-footer__legal a:hover { color: var(--light); }

/* ---------- lightbox ---------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  background: rgba(7, 7, 7, .95);
  animation: lightbox-in .18s ease-out;
}
@keyframes lightbox-in { from { opacity: 0; } to { opacity: 1; } }

body.has-lightbox { overflow: hidden; }

.lightbox__stage {
  margin: 0;
  max-width: min(1200px, 100%);
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.lightbox__image {
  max-width: 100%;
  max-height: calc(100vh - 140px);
  object-fit: contain;
  opacity: 0;
  transition: opacity .22s;
}
.lightbox__image.is-ready { opacity: 1; }

.lightbox__caption {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--light);
  text-align: center;
}
.lightbox__counter { color: var(--muted); letter-spacing: .1em; }

.lightbox__close,
.lightbox__nav {
  flex: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .3);
  color: var(--white);
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.lightbox__close:hover,
.lightbox__nav:hover { background: var(--white); color: var(--black); border-color: var(--white); }

.lightbox__close {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 44px;
  height: 44px;
  font-size: 26px;
  line-height: 1;
}
.lightbox__nav { width: 52px; height: 52px; font-size: 30px; line-height: 1; }

.lightbox__spinner {
  position: absolute;
  width: 34px;
  height: 34px;
  border: 2px solid rgba(255, 255, 255, .25);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: lightbox-spin .7s linear infinite;
}
@keyframes lightbox-spin { to { transform: rotate(360deg); } }

/* O cursor avisa que dá para abrir. */
[data-lightbox] { cursor: zoom-in; }
[data-lightbox]:focus-visible { outline: 2px solid var(--white); outline-offset: 2px; }

@media (max-width: 620px) {
  .lightbox { padding: 12px; gap: 4px; }
  .lightbox__nav { width: 40px; height: 40px; font-size: 24px; }
  .lightbox__close { top: 10px; right: 10px; width: 38px; height: 38px; font-size: 22px; }
  .lightbox__image { max-height: calc(100vh - 120px); }
  .lightbox__caption { font-size: 10px; letter-spacing: .12em; }
}

/* ---------- responsivo ---------- */
@media (max-width: 1240px) {
  :root { --pad-x: 40px; }
  .pillars { grid-template-columns: repeat(3, 1fr); }
  .shots { grid-template-columns: repeat(3, 1fr); }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 980px) {
  :root { --pad-x: 28px; }

  .nav-toggle { display: flex; }
  .site-header { flex-wrap: wrap; }
  .site-nav {
    display: none;
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding-top: 12px;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.07); }
  .site-nav a.is-current { padding-bottom: 14px; }
  .site-nav .nav-cta { margin-top: 12px; text-align: center; border-bottom: 1px solid rgba(255,255,255,.4); }

  /* No celular o quadro é quase quadrado: o enquadramento muda. */
  .hero { min-height: var(--hero-h-mobile, 560px); }
  .hero__video { object-position: var(--focus-mobile, 50% 50%); }
  .hero__video--still { background-position: var(--focus-mobile, 50% 50%); }
  .hero__title { font-size: 48px; }
  .hero__lead { font-size: 17px; }
  .hero__videoctl { right: auto; left: var(--pad-x); }

  .about__inner, .packages__inner, .contact__inner { grid-template-columns: 1fr; gap: 44px; }
  .about__inner { padding: 64px var(--pad-x); }
  .about .h2 { font-size: 32px; }
  .about__gallery { grid-template-rows: 170px 170px; }

  .services, .albums, .packages, .contact { padding: 64px var(--pad-x); }
  .testimonials { padding: 64px var(--pad-x); }
  .portfolio { padding: 0 var(--pad-x) 64px; }

  .h2 { font-size: 28px; }
  .services .h2, .contact .h2 { font-size: 28px; }
  .pillars { grid-template-columns: repeat(2, 1fr); margin-top: 36px; }
  .shots { grid-template-columns: repeat(2, 1fr); }
  .bindings, .quotes { grid-template-columns: 1fr; }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .sim { max-width: none; }
  .sim__contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .hero__title { font-size: 38px; }
  .brand__name { font-size: 21px; }
  .stats { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .shots { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr; }
  .sim { grid-template-columns: 1fr; }
  .about__gallery { grid-template-columns: 1fr; grid-template-rows: repeat(3, 180px); }
  .about__shot--tall { grid-row: auto; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 34px; }
  .btn { width: 100%; text-align: center; }
}

/* ---------- toque e áreas seguras ---------- */

/* Em telas de toque todo alvo precisa de 44px reais. */
@media (pointer: coarse) {
  .btn,
  .pill,
  .socials a,
  .site-nav a,
  .nav-toggle,
  .lightbox__nav,
  .lightbox__close { min-height: 44px; min-width: 44px; }

  .pill { padding: 12px 18px; }
  .filters { gap: 10px; }
  .socials { gap: 14px; }
  .range input[type="range"] { height: 44px; }

  .hero__videoctl { min-height: 44px; padding: 14px 6px; }

  /* Links de texto do rodapé ganham área de toque sem crescer visualmente. */
  .site-footer__links a,
  .site-footer__legal a {
    display: flex;
    align-items: center;
    min-height: 44px;
  }
  .site-footer__links { gap: 0; }
  .site-footer__legal { gap: 20px; flex-wrap: wrap; }
}

/* Campos com menos de 16px fazem o iOS dar zoom ao focar. */
@media (max-width: 980px) {
  .input,
  .input--boxed,
  input[type="date"],
  select,
  textarea { font-size: 16px; }
  .range__out { font-size: 16px; }
}

/* Respeita o recorte da tela (notch) e a barra de gestos. */
@supports (padding: max(0px)) {
  .site-header { padding-left: max(var(--pad-x), env(safe-area-inset-left)); padding-right: max(var(--pad-x), env(safe-area-inset-right)); }
  .hero__inner,
  .about__inner,
  .services,
  .portfolio,
  .albums,
  .packages,
  .testimonials,
  .contact,
  .site-footer__grid,
  .site-footer__bar {
    padding-left: max(var(--pad-x), env(safe-area-inset-left));
    padding-right: max(var(--pad-x), env(safe-area-inset-right));
  }
  .hero__videoctl { bottom: max(28px, env(safe-area-inset-bottom)); }
  .lightbox { padding-bottom: max(24px, env(safe-area-inset-bottom)); }
}

/* Isca invisível para robôs: sem tamanho, fora da ordem de foco. */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation-duration: .01ms !important; }
}
