/* ═══════════════════════════════════════
   TOKENS
   ═══════════════════════════════════════ */
:root {
  --bg:        #0a0a0a;
  --bg-2:      #111111;
  --bg-3:      #1a1a1a;
  --surface:   #161616;
  --text:      #f4f1eb;
  --text-soft: #cfc9c0;
  --text-muted:#b0aaa1;
  --accent:    #d4b578;
  --accent-dim:#8a7349;
  --white:     #ffffff;
  --border:    rgba(255,255,255,.08);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Outfit', system-ui, sans-serif;

  --ease-out:  cubic-bezier(.16, 1, .3, 1);
  --ease-in-out: cubic-bezier(.65, 0, .35, 1);

  --nav-h: 80px;
  --container: 1200px;
  --gap: clamp(1rem, 3vw, 2rem);
}

/* ═══════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: auto; /* Lenis handles smooth scroll */
  font-size: 16px;
}

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  font-family: var(--font-sans);
  font-weight: 400;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

a { color: inherit; text-decoration: none; }

.container {
  width: min(var(--container), 100% - 2rem);
  margin-inline: auto;
}

/* Grain texture */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px;
}

/* ═══════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════ */
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 4.4vw, 3.25rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -.015em;
  max-width: 22ch;
  text-wrap: balance;
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.section-desc {
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 50ch;
  font-weight: 400;
}

/* Cabeçalhos de seção comportam títulos mais longos */
.showcase__header .section-title,
.services__header .section-title,
.process__header .section-title { max-width: 26ch; }

/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .9rem 2rem;
  font-family: var(--font-sans);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all .4s var(--ease-out);
  cursor: pointer;
  border: none;
}

.btn--primary {
  background: var(--accent);
  color: var(--bg);
}

.btn--primary:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,169,110,.25);
}

.btn--ghost {
  background: rgba(10,10,10,.4);
  backdrop-filter: blur(8px);
  color: var(--text);
  border: 1px solid rgba(255,255,255,.35);
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(10,10,10,.6);
}

/* ═══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1rem, 4vw, 3rem);
  transition: background .4s, backdrop-filter .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}

/* Véu permanente garante leitura do header sobre fotos claras do hero */
.nav::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,.92) 0%,
    rgba(10,10,10,.62) 55%,
    rgba(10,10,10,0) 100%
  );
  transition: opacity .4s;
}

.nav--scrolled {
  background: rgba(10,10,10,.9);
  backdrop-filter: blur(20px);
  border-color: var(--border);
}

.nav--scrolled::before { opacity: 0; }

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav__logo-img {
  height: 58px;
  width: auto;
  max-width: min(260px, 48vw);
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .92;
  transition: opacity .3s;
}

.nav__logo:hover .nav__logo-img { opacity: 1; }

.nav__links {
  display: flex;
  gap: 2.5rem;
}

.nav__links a {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-soft);
  transition: color .3s;
  position: relative;
  text-shadow: 0 1px 12px rgba(0,0,0,.6);
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width .4s var(--ease-out);
}

.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .65rem 1.4rem;
  border: 1px solid var(--accent);
  color: var(--accent);
  background: rgba(10,10,10,.35);
  backdrop-filter: blur(6px);
  transition: all .3s var(--ease-out);
}

.nav__cta:hover {
  background: var(--accent);
  color: var(--bg);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: transform .3s, opacity .3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10,10,10,.97);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--text);
  transition: color .3s;
}

.mobile-menu a:hover { color: var(--accent); }

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
}

/* ── Slides ── */
.hero__slides {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__slide {
  position: absolute;
  inset: 0;
  will-change: clip-path;
}

.hero__slide-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero__slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  will-change: transform;
}

/* ── Blade of light that sweeps on transition ── */
.hero__blade {
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  z-index: 8;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(255,255,255,.55) 25%,
    rgba(255,255,255,.9) 50%,
    rgba(255,255,255,.55) 75%,
    transparent 100%
  );
  will-change: transform, opacity;
}

/* ── Film counter ── */
.hero__counter {
  position: absolute;
  bottom: 2.5rem;
  left: clamp(1rem, 4vw, 3rem);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.hero__counter-label {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  width: 150px;
  transition: opacity .4s;
  text-shadow: 0 2px 14px rgba(0,0,0,.8);
}

.hero__counter-bar {
  width: 72px;
  height: 1px;
  background: rgba(255,255,255,.15);
  overflow: hidden;
}

.hero__counter-fill {
  height: 100%;
  width: 100%;
  background: var(--accent);
  transform-origin: left center;
  transform: scaleX(0);
}

.hero__counter-num {
  font-size: .65rem;
  letter-spacing: .12em;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}

/* Três camadas: base para o rodapé, véu lateral onde fica o texto,
   e um tint global que normaliza fotos de fundo claro. */
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      var(--bg) 0%,
      rgba(10,10,10,.92) 18%,
      rgba(10,10,10,.55) 46%,
      rgba(10,10,10,.42) 72%,
      rgba(10,10,10,.68) 100%
    ),
    linear-gradient(
      to right,
      rgba(10,10,10,.9) 0%,
      rgba(10,10,10,.68) 32%,
      rgba(10,10,10,.25) 62%,
      rgba(10,10,10,0) 88%
    ),
    rgba(10,10,10,.22);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: clamp(2rem, 6vw, 5rem);
  padding-bottom: clamp(4rem, 10vw, 8rem);
  max-width: 820px;
}

.hero__eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 16px rgba(0,0,0,.75);
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.7rem, 6.2vw, 4.75rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -.02em;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 30px rgba(0,0,0,.6);
}

.hero__title .line { display: block; overflow: hidden; }
.hero__title em { font-style: italic; font-weight: 400; color: var(--accent); }

.hero__subtitle {
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  font-weight: 400;
  color: var(--text-soft);
  max-width: 44ch;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  text-shadow: 0 2px 20px rgba(0,0,0,.7);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  right: clamp(1rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  z-index: 2;
}

.hero__scroll span {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-rl;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: .4; transform: scaleY(.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Hero reveal animation initial state */
.reveal {
  opacity: 0;
  transform: translateY(30px);
}

/* ═══════════════════════════════════════
   PHOTO ROTATOR
   Molduras com várias fotos que se alternam.
   ═══════════════════════════════════════ */
.photo-rotator {
  position: relative;
  overflow: hidden;
  perspective: 1400px;
  background: var(--bg-3);
  transition: filter .6s var(--ease-out);
}

.photo-rotator > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Fontes são retratos 2:3 — ancorar acima do centro protege o rosto */
  object-position: center 20%;
  backface-visibility: hidden;
}

/* Estado antes do JS assumir o controle */
.photo-rotator > img + img { opacity: 0; }

.showcase__card:hover .photo-rotator,
.service-card:hover .photo-rotator,
.about__frame:hover,
.why__img:hover {
  filter: brightness(1.07) saturate(1.04);
}

@media (prefers-reduced-motion: reduce) {
  .photo-rotator > img + img { display: none; }
}

/* ═══════════════════════════════════════
   SOCIAL PROOF
   ═══════════════════════════════════════ */
.proof {
  padding: clamp(3rem, 8vw, 5rem) 0;
  border-bottom: 1px solid var(--border);
}

.proof__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 5vw, 4rem);
  flex-wrap: wrap;
}

.proof__item {
  text-align: center;
}

.proof__number {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  margin-bottom: .4rem;
}

.proof__item span {
  font-size: .8rem;
  color: var(--text-muted);
  letter-spacing: .05em;
  text-transform: uppercase;
}

.proof__divider {
  width: 1px;
  height: 50px;
  background: var(--border);
}

.proof__brands {
  text-align: center;
  margin-top: 2rem;
  font-size: .85rem;
  color: var(--text-muted);
  font-style: italic;
  font-family: var(--font-serif);
  font-size: 1.1rem;
}

/* ═══════════════════════════════════════
   WHY SECTION
   ═══════════════════════════════════════ */
.why {
  padding: clamp(5rem, 12vw, 9rem) 0;
}

/* Fotos recebem mais peso que o texto nesta seção */
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: center;
}

.why__lead {
  color: var(--text);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  font-weight: 400;
  line-height: 1.65;
  max-width: 40ch;
  margin-bottom: 2.25rem;
}

.why__points {
  list-style: none;
  display: grid;
  gap: 1.5rem;
}

.why__points li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  align-items: start;
}

.why__point-num {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--accent);
  padding-top: .1rem;
  font-variant-numeric: tabular-nums;
}

.why__points strong {
  display: block;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--text);
  margin-bottom: .2rem;
}

.why__points p {
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.6;
  max-width: 40ch;
}

.why__gallery {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: .6rem;
  position: relative;
}

.why__img { border-radius: 2px; }

.why__img--main { grid-row: 1 / 3; }

.why__img--secondary,
.why__img--tertiary { aspect-ratio: 1 / 1; }

/* ═══════════════════════════════════════
   SHOWCASE (CORPORATIVO)
   ═══════════════════════════════════════ */
.showcase {
  padding: clamp(5rem, 12vw, 9rem) 0;
  background: var(--bg-2);
}

.showcase__header {
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

/* Tríptico em retrato: mesma proporção das fotos originais, zero corte.
   A moldura central desce um pouco para criar ritmo editorial. */
.showcase__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(.6rem, 1.5vw, 1.1rem);
  align-items: start;
}

.showcase__card {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}

.showcase__card--offset { margin-top: clamp(1rem, 4vw, 3rem); }

.showcase__card-media {
  aspect-ratio: 2 / 3;
  border-radius: 2px;
}

.showcase__card-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to top, rgba(10,10,10,.9) 0%, rgba(10,10,10,.35) 28%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: background .4s;
}

.showcase__card:hover .showcase__card-overlay {
  background: linear-gradient(to top, rgba(10,10,10,.94) 0%, rgba(10,10,10,.45) 35%, rgba(10,10,10,.1) 70%);
}

.showcase__card-overlay h3 {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 500;
  margin-bottom: .25rem;
  text-shadow: 0 2px 18px rgba(0,0,0,.7);
}

.showcase__card-overlay p {
  font-size: .85rem;
  color: var(--text-soft);
  text-shadow: 0 2px 14px rgba(0,0,0,.8);
}

.showcase__cta {
  text-align: center;
  margin-top: 3rem;
}

/* ═══════════════════════════════════════
   SERVICES GRID
   ═══════════════════════════════════════ */
.services {
  padding: clamp(5rem, 12vw, 9rem) 0;
}

.services__header {
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(.6rem, 1.5vw, 1.1rem);
}

/* Todos os cards têm a mesma estrutura e proporção de retrato:
   as fotos originais são 2:3, então nada é cortado. */
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 2px;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color .4s, transform .4s var(--ease-out), box-shadow .4s;
}

.service-card:hover {
  border-color: rgba(212,181,120,.35);
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
}

/* O corporativo continua sendo o destaque — pelo acento, não pelo tamanho */
.service-card--featured {
  border-color: rgba(212,181,120,.32);
}

.service-card--featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 3;
  background: linear-gradient(to right, var(--accent), rgba(212,181,120,0));
}

.service-card__img {
  aspect-ratio: 2 / 3;
  border-radius: 2px 2px 0 0;
}

.service-card__body {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card__tag {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .5rem;
}

.service-card__body h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: .5rem;
}

.service-card__body p {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
}

.service-card__link {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .05em;
  color: var(--accent);
  transition: letter-spacing .3s;
}

.service-card:hover .service-card__link { letter-spacing: .1em; }

/* ═══════════════════════════════════════
   PROCESS
   ═══════════════════════════════════════ */
.process {
  padding: clamp(5rem, 12vw, 9rem) 0;
  background: var(--bg-2);
}

.process__header {
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  list-style: none;
}

.process__step {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: border-color .4s, background .4s;
}

.process__step:hover {
  border-color: rgba(201,169,110,.25);
  background: rgba(201,169,110,.03);
}

.process__num {
  display: block;
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--accent);
  opacity: .4;
  line-height: 1;
  margin-bottom: 1rem;
}

.process__step h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: .75rem;
}

.process__step p {
  font-size: .9rem;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════ */
.testimonials {
  padding: clamp(5rem, 12vw, 9rem) 0;
}

.testimonials__chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: -.4rem;
  margin-bottom: 1.1rem;
}

.testimonials__chip {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-soft);
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.03);
  border-radius: 999px;
  padding: .34rem .7rem;
}

.testimonials__desc {
  margin-bottom: clamp(1.8rem, 4vw, 2.6rem);
}

/* Galeria de prova social: prints reais em cards premium */
.testimonials__proof-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(290px, 31vw);
  gap: clamp(.75rem, 1.8vw, 1.2rem);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
  padding-bottom: .45rem;
  scrollbar-width: thin;
}

.review-card {
  position: relative;
  background:
    radial-gradient(circle at top right, rgba(212,181,120,.15), transparent 45%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .35s var(--ease-out), border-color .35s, box-shadow .35s, background .35s;
  scroll-snap-align: start;
}

.review-card::before {
  content: '';
  position: absolute;
  top: .55rem;
  left: .55rem;
  right: .55rem;
  height: 9px;
  border-radius: 999px;
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(circle at 8px center, rgba(255,95,87,.9) 0 3px, transparent 3px),
    radial-gradient(circle at 24px center, rgba(255,189,46,.9) 0 3px, transparent 3px),
    radial-gradient(circle at 40px center, rgba(39,201,63,.9) 0 3px, transparent 3px);
  opacity: .9;
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212,181,120,.45);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
  background:
    radial-gradient(circle at top right, rgba(212,181,120,.23), transparent 45%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
}

.review-card__media {
  /* Todas as imagens têm 4:3 após normalização — container encaixa exato */
  aspect-ratio: 4 / 3;
  margin: 1.2rem .55rem 0;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.06);
  background: #202124;
}

.review-card__media img {
  object-fit: cover;
  object-position: center center;
}

.review-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  padding: .75rem .9rem .8rem;
}

.review-card__meta span {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.review-card__meta strong {
  font-size: .82rem;
  letter-spacing: .08em;
  color: #ffca45;
  font-weight: 600;
}

.testimonials__actions {
  display: flex;
  justify-content: center;
  margin-top: clamp(1.4rem, 3vw, 2.2rem);
}

/* ═══════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════ */
.contact {
  padding: clamp(5rem, 12vw, 9rem) 0;
  background: var(--bg-2);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.contact__desc {
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 1rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.contact__channels {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact__channel {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: all .4s var(--ease-out);
}

.contact__channel:hover {
  border-color: var(--accent);
  transform: translateX(6px);
  background: rgba(201,169,110,.05);
}

.contact__channel--corp {
  border-color: rgba(201,169,110,.3);
}

.contact__channel-icon {
  flex-shrink: 0;
  color: #25d366;
}

.contact__channel strong {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: .2rem;
}

.contact__channel span:not(.contact__channel-icon):not(.contact__arrow) {
  font-size: .85rem;
  color: var(--text-muted);
  font-weight: 400;
}

.contact__arrow {
  margin-left: auto;
  font-size: 1.2rem;
  color: var(--accent);
  transition: transform .3s;
}

.contact__channel:hover .contact__arrow { transform: translateX(4px); }

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__logo {
  display: flex;
  align-items: center;
}

.footer__logo-img {
  height: 40px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .75;
  transition: opacity .3s;
}

.footer__logo:hover .footer__logo-img { opacity: 1; }

.footer__copy {
  font-size: .75rem;
  color: var(--text-muted);
}

.footer__links {
  display: flex;
  gap: 1.5rem;
}

.footer__links a {
  font-size: .75rem;
  color: var(--text-muted);
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: color .3s;
}

.footer__links a:hover { color: var(--accent); }

/* ═══════════════════════════════════════
   FLOATING ELEMENTS
   ═══════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
  transition: transform .3s var(--ease-out), box-shadow .3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,.45);
}

.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 890;
  padding: 1rem;
  background: var(--accent);
  color: var(--bg);
  text-align: center;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  transform: translateY(100%);
  transition: transform .4s var(--ease-out);
}

.mobile-cta.visible { transform: translateY(0); }

/* ═══════════════════════════════════════
   SCROLL REVEAL (initial)
   ═══════════════════════════════════════ */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
}

/* ═══════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════ */
.about {
  padding: clamp(5rem, 12vw, 9rem) 0;
  background: var(--bg-2);
}

.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: center;
}

/* Mosaico: retrato grande + duas molduras quadradas */
.about__media {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: .6rem;
}

.about__frame {
  border-radius: 2px;
}

.about__frame--main { grid-column: 1; grid-row: 1 / 3; }

.about__frame--top,
.about__frame--bottom {
  grid-column: 2;
  aspect-ratio: 1 / 1;
}

.about__badge {
  position: absolute;
  bottom: .9rem;
  left: .9rem;
  z-index: 3;
  display: flex;
  align-items: baseline;
  gap: .6rem;
  padding: .8rem 1.15rem;
  background: rgba(10,10,10,.82);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212,181,120,.35);
  border-radius: 2px;
}

.about__badge strong {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  color: var(--accent);
}

.about__badge span {
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-soft);
  line-height: 1.4;
}

.about__role {
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: -1rem;
  margin-bottom: 1.5rem;
}

.about__copy p {
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 1.1rem;
  max-width: 52ch;
}

.about__facts {
  list-style: none;
  display: grid;
  gap: 1rem;
  margin: 1.75rem 0 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.about__facts li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .3rem .85rem;
}

.about__facts li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 1px;
  background: var(--accent);
  transform: translateY(-4px);
}

.about__facts strong {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text);
  flex-shrink: 0;
}

.about__facts span {
  font-size: .92rem;
  color: var(--text-muted);
}

.about__insta {
  display: inline-block;
  margin-top: .5rem;
  font-size: .85rem;
  letter-spacing: .06em;
  color: var(--accent);
  transition: letter-spacing .3s;
}

.about__insta:hover { letter-spacing: .1em; }

/* ── Single contact CTA ── */
.contact__cta-wrap {
  display: flex;
  align-items: center;
}

.contact__cta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
  padding: 1.75rem 2rem;
  background: var(--surface);
  border: 1px solid rgba(201,169,110,.35);
  border-radius: 2px;
  transition: all .4s var(--ease-out);
}

.contact__cta:hover {
  border-color: var(--accent);
  background: rgba(201,169,110,.06);
  transform: translateX(6px);
}

.contact__cta-icon {
  flex-shrink: 0;
  color: #25d366;
}

.contact__cta-text {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 500;
  color: var(--text);
  flex: 1;
}

.contact__cta-arrow {
  font-size: 1.4rem;
  color: var(--accent);
  transition: transform .3s;
}

.contact__cta:hover .contact__cta-arrow { transform: translateX(6px); }

/* ═══════════════════════════════════════
   LOCATION / STUDIO
   ═══════════════════════════════════════ */
.location {
  padding: clamp(5rem, 12vw, 9rem) 0;
}

.location__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.location__info {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.location__item {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.location__item strong {
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
}

.location__item span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.5;
}

.location__actions {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.location__insta {
  color: var(--text-muted);
  font-weight: 400;
  transition: color .3s;
}

.location__insta:hover { color: var(--accent); }

.location__map {
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--border);
  background: var(--surface);
}

.location__map iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: grayscale(1) brightness(.7) contrast(1.1);
  transition: filter .5s;
}

.location__map:hover iframe {
  filter: grayscale(.4) brightness(.85);
}

/* ── Showcase differentials ── */
.showcase__differentials {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-top: 1.75rem;
}

.showcase__differentials li {
  font-size: .85rem;
  color: var(--text-muted);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: .75rem;
  line-height: 1.4;
}

.showcase__differentials li::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .why__grid,
  .contact__grid,
  .location__grid,
  .about__grid {
    grid-template-columns: 1fr;
  }

  .about__media,
  .why__gallery {
    order: -1;
    width: 100%;
    max-width: 560px;
    margin-inline: auto;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process__steps {
    grid-template-columns: 1fr;
  }

  .testimonials__proof-grid { grid-auto-columns: minmax(270px, 40vw); }
}

@media (max-width: 768px) {
  .nav__links,
  .nav__cta { display: none; }

  .nav__toggle { display: flex; }

  .hero__scroll { display: none; }

  .hero__counter-label { display: none; }

  .hero__counter-bar { width: 48px; }

  .proof__divider { display: none; }

  .proof__grid { gap: 2rem; }

  .testimonials__proof-grid { grid-auto-columns: minmax(248px, 74vw); }

  .testimonials__chips { margin-bottom: .95rem; }

  .testimonials__actions .btn { width: 100%; }

  /* Tríptico vira duas colunas: primeira foto ganha a largura toda */
  .showcase__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase__card:first-child { grid-column: 1 / -1; }

  .showcase__card:first-child .showcase__card-media { aspect-ratio: 4 / 5; }

  .showcase__card--offset { margin-top: 0; }

  .mobile-cta { display: block; }

  .whatsapp-float {
    bottom: 4.5rem;
    right: 1rem;
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 560px) {
  .services__grid,
  .showcase__grid {
    grid-template-columns: 1fr;
  }

  .testimonials__proof-grid { grid-auto-columns: minmax(240px, 86vw); }


  .showcase__card .showcase__card-media { aspect-ratio: 4 / 5; }

  /* No celular, uma moldura rotativa por seção evita blocos gigantes */
  .about__media,
  .why__gallery {
    grid-template-columns: 1fr;
  }

  .about__frame--main,
  .why__img--main {
    grid-row: auto;
    aspect-ratio: 4 / 5;
  }

  .about__frame--top,
  .about__frame--bottom,
  .why__img--secondary,
  .why__img--tertiary {
    display: none;
  }
}
