/**
 * PREMIUM LAYER
 * Motion + micro-interactions inspirados em Ferrari / McLaren / Amalgam / Porsche.
 * Carregado por último — sobrescreve estilos básicos onde necessário.
 */

/* ============================================================
   0. PRELOADER cinematográfico (00→100 + nomes rotacionando)
   ============================================================ */
.preloader {
  position: fixed;
  inset: 0;
  background: #0a0a0a;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: inset(0 0 0 0);
  transition: clip-path 0.9s cubic-bezier(0.86, 0, 0.07, 1);
  will-change: clip-path;
}

.preloader.is-leaving {
  clip-path: inset(0 0 100% 0);
  pointer-events: none;
}

.preloader__inner {
  text-align: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.preloader__count-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.preloader__count-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(5rem, 16vw, 12rem);
  font-weight: 400;
  line-height: 1;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.preloader__count-percent {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1;
}

.preloader__line {
  width: 220px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 28px auto 24px;
  position: relative;
  overflow: hidden;
}

.preloader__line::after {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: preloaderLineSweep 2s linear infinite;
}

@keyframes preloaderLineSweep {
  to {
    left: 100%;
  }
}

.preloader__name {
  font-family: "Roboto-Black", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  transition: opacity 0.25s ease;
  min-height: 1.2em;
  padding-left: 0.45em;
}

@media (max-width: 480px) {
  .preloader__name {
    font-size: 0.6rem;
    letter-spacing: 0.35em;
  }
  .preloader__line {
    width: 160px;
  }
}

/* No-js / reduced-motion: esconde preloader (mostra conteúdo imediato) */
.no-js .preloader,
.preloader.is-done {
  display: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .preloader {
    display: none !important;
  }
}

/* Body lock enquanto preloader está visível */
body.is-loading {
  overflow: hidden;
}

/* ============================================================
   1. HERO — TYPING EFFECT (caractere por caractere)
   ============================================================ */
.hero-title {
  font-size: 4.5rem;
  color: #ffffff;
  margin-bottom: 28px;
  font-family: "Bebas Neue", sans-serif;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
  line-height: 1.1;
  text-align: center;
  letter-spacing: 0.5px;
}

.hero-title .line {
  display: block;
  /* Reserva altura mesmo quando vazio (evita layout shift durante typing) */
  min-height: 1em;
  padding-bottom: 0.08em;
  color: transparent; /* o color real vem do .line-inner */
}

.hero-title .line .line-inner {
  display: inline-block;
  font-family: "Bebas Neue", sans-serif;
  color: #ffffff;
  position: relative;
  white-space: pre;
}

.hero-title .line .line-inner.gold-text {
  color: var(--gold);
}

/* Cursor piscando na linha sendo digitada — barra fina vertical */
.hero-title .line-inner.is-typing::after {
  content: "";
  display: inline-block;
  width: 3px;
  height: 0.82em;
  margin-left: 0.12em;
  background: var(--gold);
  vertical-align: -0.05em;
  animation: heroCursorBlink 0.7s step-end infinite;
}

@keyframes heroCursorBlink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

/* Nota: cursor blinking é só opacity (vestibular-safe) — mantido sempre */

/* Fundo do hero com sutil parallax (controlado por JS) */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  will-change: transform;
}

/* CTA do hero — emerge de uma linha fina horizontal, depois sheen polish */
.hero .cta-button {
  position: relative;
  opacity: 0;
  /* Inicialmente colapsado em uma fina linha horizontal central */
  clip-path: inset(48% 50% 48% 50%);
  -webkit-clip-path: inset(48% 50% 48% 50%);
  transition:
    opacity 0.6s var(--ease-expo-out),
    clip-path 1.1s var(--ease-expo-out),
    -webkit-clip-path 1.1s var(--ease-expo-out),
    background-color 0.3s var(--ease-smooth),
    box-shadow 0.4s var(--ease-smooth),
    transform 0.4s var(--ease-smooth);
  overflow: hidden;
  isolation: isolate;
}

.hero .cta-button.is-ready {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  -webkit-clip-path: inset(0 0 0 0);
}

/* Sheen sweep — luz passa por cima como polimento */
.hero .cta-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 25%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 75%
  );
  transform: translateX(-110%);
  pointer-events: none;
  z-index: 2;
}

.hero .cta-button.is-ready::after {
  animation: ctaSheenSweep 1.2s var(--ease-smooth) 1.3s 1;
}

@keyframes ctaSheenSweep {
  to { transform: translateX(110%); }
}

.hero .cta-button:hover {
  background-color: var(--gold-dark);
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-gold);
}

/* Nota: clip-path reveal e sheen são vestibular-safe (motion pequeno e contido)
   — mantidos mesmo com prefers-reduced-motion. */

/* ============================================================
   3. SCROLL INDICATOR
   ============================================================ */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 5;
  opacity: 0;
  animation: scroll-indicator-fade-in 1s var(--ease-expo-out) 1.6s forwards;
  pointer-events: none;
}

.scroll-indicator__label {
  font-family: "Roboto-Black", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.scroll-indicator__line {
  width: 1px;
  height: 56px;
  background: linear-gradient(
    to bottom,
    var(--gold) 0%,
    var(--gold) 50%,
    transparent 50%,
    transparent 100%
  );
  background-size: 100% 200%;
  animation: scroll-indicator-line 2s var(--ease-smooth) infinite 2.4s;
}

@keyframes scroll-indicator-fade-in {
  to {
    opacity: 1;
  }
}

@keyframes scroll-indicator-line {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 0% -100%;
  }
}

@media (max-width: 768px) {
  .scroll-indicator {
    bottom: 24px;
  }
  .scroll-indicator__line {
    height: 40px;
  }
}

/* ============================================================
   4. SCROLL REVEAL (universal)
   Padrão: base esconde sem transition. Quando .is-revealed é
   adicionada, a transition só aparece nesse estado — evita
   conflito com qualquer JS que mexa em opacity/transform.
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 80px, 0);
  will-change: transform, opacity;
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 1.4s var(--ease-expo-out),
    transform 1.4s var(--ease-expo-out);
}

/* Stagger entre parágrafos sequenciais do Sobre */
.sobre-text p[data-reveal].is-revealed {
  transition-delay: 0s;
}
.sobre-text p[data-reveal]:nth-of-type(2).is-revealed {
  transition-delay: 0.15s;
}
.sobre-text p[data-reveal]:nth-of-type(3).is-revealed {
  transition-delay: 0.3s;
}

/* Stagger entre contato-texto e contato-imagem */
.contato [data-reveal].is-revealed {
  transition-delay: 0s;
}
.contato .contato-imagem[data-reveal].is-revealed {
  transition-delay: 0.18s;
}

/* Variante: stagger title */
[data-reveal-stagger] {
  position: relative;
}

/* Sem JS: garante visibilidade total */
.no-js [data-reveal] {
  opacity: 1;
  transform: none;
}

/* ============================================================
   5. PARALLAX em imagens
   ============================================================ */
[data-parallax] {
  will-change: transform;
}

/* ============================================================
   6. LINK UNDERLINE DIRECIONAL
   ============================================================ */
.link-fancy {
  position: relative;
  display: inline-block;
}

.main-nav .link-fancy {
  display: block;
}

.link-fancy::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 16px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.5s var(--ease-smooth);
  pointer-events: none;
}

.link-fancy:hover::after,
.link-fancy:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left center;
}

/* Sobrescreve o hover padding-left agressivo do main-nav */
.main-nav a.link-fancy:hover {
  padding-left: 30px;
  background: transparent;
}

/* ============================================================
   7. MAGNETIC BUTTONS — preparação (movimento via JS)
   ============================================================ */
[data-magnetic] {
  display: inline-block;
  will-change: transform;
}

/* ============================================================
   8. PRODUCT CARDS — hover premium (lento e suave)
   ============================================================ */
.produto-card {
  transition: transform 0.9s var(--ease-expo-out),
    box-shadow 0.9s var(--ease-expo-out);
}

@media (min-width: 1025px) {
  .produto-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
  }

  /* Override do transition rápido herdado de products-porsche.css */
  .produto-card .produto-main-image {
    transition: transform 1.8s var(--ease-expo-out) !important;
  }

  .produto-card:hover .produto-main-image {
    transform: scale(1.05);
  }
}

/* Borda gold sutil no card em hover (desktop) */
@media (min-width: 1025px) {
  .produto-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    border: 1px solid transparent;
    pointer-events: none;
    z-index: 3;
    transition: border-color 0.9s var(--ease-smooth);
  }

  .produto-card:hover::before {
    border-color: var(--gold-soft);
  }
}

/* Botões ver descrição / ver modelos — easing premium */
.btn-ver-descricao,
.btn-ver-modelos {
  transition: background 0.4s var(--ease-smooth),
    color 0.4s var(--ease-smooth),
    transform 0.4s var(--ease-smooth),
    box-shadow 0.4s var(--ease-smooth),
    border-color 0.4s var(--ease-smooth);
}

.btn-ver-descricao:hover,
.btn-ver-modelos:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

/* ============================================================
   9. WHATSAPP BUTTON — premium feel
   ============================================================ */
.whatsapp-button {
  will-change: transform;
  transition: background 0.4s var(--ease-smooth),
    transform 0.4s var(--ease-smooth),
    box-shadow 0.4s var(--ease-smooth);
}

.whatsapp-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.35);
}

/* ============================================================
   10. HEADER scrolled — refinamento
   ============================================================ */
.main-header {
  transition: background 0.5s var(--ease-smooth),
    box-shadow 0.5s var(--ease-smooth),
    backdrop-filter 0.5s var(--ease-smooth);
}

.main-header.scrolled {
  background: rgba(8, 8, 8, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid var(--gold-faint);
}

/* Backdrop-filter só em desktop (caro demais em mobile) */
@media (min-width: 769px) {
  .main-header.scrolled {
    background: rgba(8, 8, 8, 0.85);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
  }
}

/* ============================================================
   11. SOBRE NÓS — refinamento + imagem com parallax overflow
   ============================================================ */
.sobre-image {
  overflow: hidden;
  border-radius: 10px;
}

.sobre-image img {
  transition: transform 1s var(--ease-smooth),
    border-color 0.4s var(--ease-smooth);
}

@media (min-width: 1025px) {
  .sobre-image:hover img {
    transform: scale(1.03);
  }
}

/* ============================================================
   12. AJUSTES MOBILE — força reveals visíveis se necessário
   ============================================================ */
@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(2.2rem, 9vw, 3.4rem);
    line-height: 1.18; /* mais ar entre linhas em mobile (era 1.1, apertado) */
  }

  /* Parallax mais sutil em mobile (movimento maior incomoda) */
  [data-parallax] {
    will-change: auto;
  }
}

/* Menu lateral em viewports muito pequenos (≤360px — não estoura) */
@media (max-width: 360px) {
  .main-nav {
    width: 85vw;
    max-width: 280px;
  }
}

/* ============================================================
   12.5. PRODUCT CAROUSEL — Drag-with-inertia (idea #6)
   Desktop: converte grid em scroll horizontal com drag físico.
   Mobile: mantém o carousel existente (auto-play DESABILITADO).
   ============================================================ */
@media (min-width: 769px) {
  .produtos-grid--horizontal {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    grid-template-columns: none !important;
    overflow-x: auto;
    overflow-y: visible;
    gap: 28px;
    padding: 30px clamp(20px, 5vw, 80px) 60px;
    max-width: 100% !important;
    margin: 0;
    cursor: grab;
    scrollbar-width: none;
    -ms-overflow-style: none;
    user-select: none;
    -webkit-user-select: none;
    scroll-behavior: smooth;
    /* Snap removido durante drag pra inércia funcionar */
  }

  .produtos-grid--horizontal::-webkit-scrollbar {
    display: none;
  }

  .produtos-grid--horizontal.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
    scroll-snap-type: none;
  }

  /* Cards: largura fixa para layout horizontal */
  .produtos-grid--horizontal > .produto-card {
    flex: 0 0 480px;
    width: 480px;
    max-width: 480px;
    min-height: 650px;
  }

  /* Imagens dentro do card não devem virar drag de imagem nativo */
  .produtos-grid--horizontal img {
    -webkit-user-drag: none;
    user-drag: none;
    pointer-events: none;
  }
  .produtos-grid--horizontal .produto-image-wrapper,
  .produtos-grid--horizontal .gallery-thumbnails img {
    pointer-events: none;
  }
  .produtos-grid--horizontal button,
  .produtos-grid--horizontal a {
    pointer-events: auto;
  }
}

/* Hint label "← Arraste para explorar →" */
.produtos-hint {
  display: none;
  margin: -8px 0 28px;
  text-align: center;
  font-family: "Roboto-Black", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  transition: opacity 0.8s var(--ease-smooth);
  padding-left: 0.45em;
  user-select: none;
}

@media (min-width: 769px) {
  .produtos-hint {
    display: block;
    animation: hintFloat 2.6s var(--ease-smooth) infinite;
  }
}

@keyframes hintFloat {
  0%, 100% { letter-spacing: 0.45em; opacity: 0.45; }
  50% { letter-spacing: 0.55em; opacity: 0.7; }
}

.produtos-hint.is-hidden {
  opacity: 0;
  pointer-events: none;
  animation: none;
}

/* ============================================================
   12.6. SPEC SHEET "Hodinkee" (idea #1)
   Ficha técnica vertical estilo magazine de luxo dentro do modal
   de descrição. Monospace, tabular-nums, hairline borders.
   ============================================================ */
.spec-sheet {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--gold-soft);
  display: flex;
  flex-direction: column;
  font-family: "Roboto-Black", sans-serif;
  font-variant-numeric: tabular-nums;
}

.spec-sheet__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  padding-left: 0.45em;
}

.spec-row {
  display: grid;
  grid-template-columns: minmax(110px, 35%) 1fr;
  align-items: baseline;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-label {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78); /* WCAG AA: 4.5:1+ em #0a0a0a */
  font-weight: 600;
}

.spec-value {
  color: #ffffff;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.01em;
  text-align: right;
}

.spec-row--highlight .spec-label {
  color: var(--gold);
}

.spec-row--highlight .spec-value {
  color: var(--gold);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}

/* Intro paragraph antes do spec sheet */
.descricao-intro {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 8px;
  font-style: italic;
  font-family: Georgia, "Times New Roman", serif;
}

/* Provenance text — citações de origem (corre acima do spec sheet) */
.descricao-provenance {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(230, 184, 0, 0.6);
  margin-top: 14px;
  font-family: "Roboto-Black", sans-serif;
}

@media (max-width: 480px) {
  .spec-row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 10px 0;
  }
  .spec-value {
    text-align: left;
  }
  .descricao-intro {
    font-size: 0.95rem;
  }
}

/* Telas muito pequenas (≤360px — Galaxy A12, iPhone SE) */
@media (max-width: 360px) {
  .produto-descricao {
    padding: 24px;
  }
  .spec-row {
    padding: 8px 0;
  }
  .spec-label {
    font-size: 0.65rem;
    letter-spacing: 0.22em;
  }
  .spec-value {
    font-size: 0.8rem;
  }
}

/* ============================================================
   12.7. CONTATO — Card único editorial 60/40 com portrait integrado
   ============================================================ */
.contato {
  position: relative;
}

/* Container editorial 60/40 — agora É o card (envolve texto + portrait) */
.contato-container--editorial {
  display: grid !important;
  grid-template-columns: 1.5fr 1fr;
  gap: 0;
  align-items: stretch;
  text-align: left;
  max-width: clamp(1100px, 85vw, 1300px);
  margin: 0 auto;
  /* Card styling movido pra cá: o container inteiro é o card */
  background: rgba(20, 20, 20, 0.7);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

/* Coluna principal — sem mais card styles próprios (o container faz isso) */
.contato-main {
  background: none;
  border: none;
  border-radius: 0;
  padding: clamp(28px, 3vw, 48px);
  box-shadow: none;
  position: relative;
}

.contato-main::before,
.contato-main::after {
  display: none;
}

.contato-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.02em;
  line-height: 1;
  margin: 0 0 28px;
}

.contato-lead {
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  line-height: 1.7;
  color: #ffffff;
  margin: 0 0 18px;
  position: relative;
  padding-left: 22px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.contato-lead::before {
  content: "»";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: bold;
}

.contato-lead--secondary {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 32px;
}

/* Portrait do fundador (coluna direita) — preenche o card edge-to-edge */
.contato-aside {
  background: none !important;
  padding: 0 !important;
  border: none !important;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Linha dourada na divisa entre o conteúdo do card e a foto */
.contato-aside::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--gold) 18%,
    var(--gold) 82%,
    transparent 100%
  );
  z-index: 3;
  pointer-events: none;
}

.contato-portrait {
  margin: 0;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.contato-portrait img {
  width: 100%;
  height: 100%;
  flex: 1;
  min-height: 360px;
  object-fit: cover;
  border: none;
  border-radius: 0;
  box-shadow: none;
  display: block;
}

/* Caption sobreposta na parte inferior da imagem (estilo magazine) */
.contato-portrait__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 22px;
  gap: 4px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.55) 60%,
    rgba(0, 0, 0, 0) 100%
  );
}

.contato-portrait__name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  color: #ffffff;
  letter-spacing: 0.05em;
  line-height: 1.1;
}

.contato-portrait__role {
  font-family: "Roboto-Black", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  padding-left: 0.32em;
}

/* Responsivo — tablet/mobile: 1 coluna, portrait em cima, texto embaixo */
@media (max-width: 900px) {
  .contato-container--editorial {
    grid-template-columns: 1fr;
    /* Card mantém o styling (bg, border, radius, shadow), só muda layout */
    border-left: none;
    border-top: 3px solid var(--gold);
    /* Mesma largura do card do Sobre Nós: preenche todo o container disponível */
    max-width: 100%;
    width: 100%;
  }
  .contato-main {
    text-align: center;
    padding: clamp(24px, 5vw, 36px);
  }
  .contato-lead {
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    text-align: center;
  }
  .contato-lead::before {
    content: none;
  }
  .contato-aside {
    order: -1; /* Portrait em cima no mobile */
  }
  /* Em mobile a divisa é horizontal (linha entre foto e texto) */
  .contato-aside::before {
    top: auto;
    bottom: 0;
    left: 10%;
    right: 10%;
    width: auto;
    height: 2px;
    background: linear-gradient(
      to right,
      transparent 0%,
      var(--gold) 18%,
      var(--gold) 82%,
      transparent 100%
    );
  }
  .contato-portrait img {
    min-height: 280px;
    max-height: 380px;
    /* Prioriza o topo no recorte (mantém cabeça do fundador visível) */
    object-position: center 18%;
  }
  .contato-portrait__caption {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .contato-portrait img {
    min-height: 260px;
    max-height: 320px;
    object-position: center 15%;
  }
}

/* ============================================================
   13. UTILITÁRIOS
   ============================================================ */
.is-locked {
  overflow: hidden !important;
  height: 100vh;
}
