/* ============================================================
   STUDIO SEIKO — CSS Premium
   Estética de marca de luxo (Apple · Rolex · Leica)
   Fundo ultra-profundo #0a0a0a | Dourado champagne | Playfair Display
   ============================================================ */

:root {
  /* ── Paleta Premium Dark ── */
  --ink: #ffffff;
  --ink-soft: #121212;
  --ink-lift: #181818;

  --gold: #c9a84c;
  --gold-bright: #dfc06a;
  --gold-muted: #a68a32;

  --ivory: #0a0a0a;
  --paper: #0e0e0e;
  --white: #ffffff;

  --gray-100: #1a1a1a;
  --gray-200: #222222;
  --gray-300: #333333;
  --gray-500: #666666;
  --gray-700: #a0a0a0;
  --gray-800: #c5c5c5;

  --blue: #3d84d1;
  --success: #25d366;

  --border-dark: rgba(255, 255, 255, 0.06);
  --border-light: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(201, 168, 76, 0.15);

  --shadow-soft: 0 12px 40px rgba(0, 0, 0, 0.5);
  --shadow-deep: 0 24px 60px rgba(0, 0, 0, 0.7);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 0 40px rgba(201, 168, 76, 0.06);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --container: 1200px;
  --header-height: 90px;

  /* Curva cinematográfica */
  --ease-luxury: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset & Base ── */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  background-color: var(--ivory);
}

body {
  margin: 0;
  color: var(--gray-700);
  background: var(--ivory);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
}

button {
  cursor: pointer;
}

svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.5;
  transition: var(--transition);
}

/* ── Skip Link (acessibilidade) ── */

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 200;
  padding: 12px 24px;
  color: var(--ivory);
  background: var(--gold-bright);
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transform: translateY(-160%);
  box-shadow: var(--shadow-deep);
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

/* ── Container ── */

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

/* ── Seções — Espaçamento de marca de luxo ── */

.section {
  padding: 80px 0;
}

/* ── Kicker / Eyebrow (Subtítulos elegantes) ── */

.section-kicker,
.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  line-height: 1.4;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

/* ── Tipografia de Peso ── */

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--white);
  font-weight: 700;
}

h2 {
  max-width: 800px;
  margin-bottom: 24px;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h3 {
  color: var(--white);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 600;
  line-height: 1.3;
}

/* ── Botões Irresistíveis ── */

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 32px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
}

.button:hover::before {
  opacity: 1;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.15);
}

.button:active {
  transform: translateY(-1px);
}

.button:focus-visible,
.menu-toggle:focus-visible,
.filter-button:focus-visible,
.gallery-item:focus-visible,
.text-button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.button-primary {
  color: var(--ivory);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  border-color: var(--gold);
}

.button-primary:hover {
  color: var(--ivory);
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
  border-color: var(--gold-bright);
  box-shadow: 0 12px 36px rgba(201, 168, 76, 0.25);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.05);
}

.button-dark {
  color: var(--white);
  background: var(--ink-soft);
  border: 1px solid var(--border-dark);
}

.button-dark:hover {
  color: var(--ivory);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  border-color: var(--gold);
  box-shadow: 0 12px 30px rgba(201, 168, 76, 0.2);
}

.button-outline {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
}

.button-outline:hover {
  color: var(--ivory);
  background: var(--white);
  border-color: var(--white);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.08);
}

/* ============================================================
   CABEÇALHO — Header Sofisticado
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  transition: var(--transition);
}

.site-header.is-scrolled {
  background: rgba(10, 10, 10, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.header-shell {
  display: flex;
  width: min(calc(100% - 40px), 1320px);
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 40px;
  height: 44px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1.2;
}

.brand-copy strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--white);
}

.brand-copy small {
  margin-top: 2px;
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.desktop-nav,
.header-cta {
  display: none;
}

.menu-toggle {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.mobile-nav {
  position: fixed;
  top: var(--header-height);
  right: 0;
  left: 0;
  padding: 30px 24px;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 99;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: flex-start;
  gap: 12px;
  overflow-y: auto;
}

.mobile-nav a {
  display: flex;
  width: calc(50% - 6px);
  min-height: 60px;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 8px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
}

.mobile-nav a:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.03);
}

.mobile-nav[hidden] {
  display: none;
}

/* ============================================================
   HERO — Layout Premium
   ============================================================ */

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  align-items: stretch;
  overflow: hidden;
  color: var(--white);
  background: var(--ivory);
  padding-top: var(--header-height);
}

/* No mobile: imagem como fundo */
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 1;
}

/* Overlay cinematográfico */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg,
      rgba(10, 10, 10, 0.15) 0%,
      rgba(10, 10, 10, 0.40) 35%,
      rgba(10, 10, 10, 0.82) 70%,
      rgba(10, 10, 10, 0.97) 100%),
    linear-gradient(90deg,
      rgba(10, 10, 10, 0.75) 0%,
      rgba(10, 10, 10, 0.20) 60%,
      rgba(10, 10, 10, 0.05) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 40px;
  padding-top: 48px;
  padding-bottom: 80px;
  margin-top: auto;
}

.eyebrow span {
  width: 36px;
  height: 1px;
  margin-right: 14px;
  background: var(--gold);
}

.hero h1 {
  margin-bottom: 16px;
  font-size: clamp(3.2rem, 12vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(1.2rem, 4vw, 1.8rem);
  font-weight: 400;
  line-height: 1.4;
}

.hero-description {
  max-width: 600px;
  margin-bottom: 32px;
  color: var(--gray-700);
  font-size: 0.95rem;
}

.hero-actions {
  display: grid;
  gap: 16px;
}

.hero-detail {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition);
}

.hero-detail:hover {
  border-color: var(--border-gold);
  background: rgba(255, 255, 255, 0.05);
}

.hero-detail-icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 50%;
}

.hero-detail div:last-child {
  display: grid;
  line-height: 1.35;
}

.hero-detail small {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-detail strong {
  font-size: 0.9rem;
  color: var(--white);
  margin: 2px 0;
}

.hero-detail span {
  color: var(--gray-700);
  font-size: 0.75rem;
}

.scroll-cue {
  display: none;
}

/* ============================================================
   FAIXA DE CONFIANÇA — Trust Strip
   ============================================================ */

.trust-strip {
  position: relative;
  color: var(--white);
  background: var(--ink-soft);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

/* Linha decorativa dourada topo */
.trust-strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.trust-grid {
  display: grid;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-dark);
  transition: var(--transition);
}

.trust-item:last-child {
  border-bottom: 0;
}

.trust-item:hover {
  padding-left: 6px;
}

.trust-item > svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  color: var(--gold);
  transition: var(--transition);
}

.trust-item:hover > svg {
  transform: scale(1.1);
  color: var(--gold-bright);
}

.trust-item div {
  display: grid;
}

.trust-item strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}

.trust-item span {
  color: var(--gray-700);
  font-size: 0.78rem;
  margin-top: 3px;
}

/* ============================================================
   QUEM SOMOS — Story / História
   ============================================================ */

.story {
  background: var(--ivory);
}

.story-grid {
  display: grid;
  gap: 50px;
}

.story-visual {
  position: relative;
  width: 100%;
}

.story-main-image {
  width: 100%;
  height: 440px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.story-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.8s var(--ease-luxury);
}

.story-visual:hover .story-main-image img {
  transform: scale(1.03);
}

.story-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  color: var(--ivory);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-muted) 100%);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
}

.story-badge svg {
  color: var(--ivory);
}

.story-badge span {
  display: grid;
  font-size: 0.7rem;
  line-height: 1.3;
}

.story-badge strong {
  font-size: 0.85rem;
  font-weight: 800;
}

.story-copy > p:not(.section-kicker):not(.story-intro),
.story-more p {
  color: var(--gray-700);
  font-size: 0.98rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.story-intro {
  margin-bottom: 24px;
  color: var(--gray-800);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.55;
}

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
  transition: var(--transition);
}

.text-button:hover {
  color: var(--gold-bright);
  border-color: var(--gold-bright);
  padding-right: 4px;
}

.text-button[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.story-copy blockquote {
  margin: 44px 0 0;
  padding: 28px 0 0 28px;
  color: var(--gray-800);
  border-top: 1px solid var(--border-light);
  border-left: 3px solid var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.3rem;
  line-height: 1.6;
  font-style: italic;
}

/* ============================================================
   RELÓGIOS — Watches
   ============================================================ */

.watches {
  background: var(--paper);
}

.section-heading {
  display: grid;
  gap: 20px;
  margin-bottom: 48px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 600px;
  margin: 0;
  color: var(--gray-700);
  font-size: 1rem;
  line-height: 1.65;
}

/* Lista de Marcas — Elegância na simplicidade */
.brand-list {
  display: flex;
  gap: 36px;
  margin-bottom: 40px;
  padding: 22px 0;
  overflow-x: auto;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  scrollbar-width: none;
}

.brand-list::-webkit-scrollbar {
  display: none;
}

.brand-list span {
  flex: 0 0 auto;
  color: var(--gray-500);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: default;
}

.brand-list span:hover {
  color: var(--gold);
}

/* Grid de Relógios — Cards Flutuantes */
.watch-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.watch-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background: var(--gray-200);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: var(--transition);
}

.watch-card-featured {
  min-height: 420px;
}

.watch-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-luxury);
}

.watch-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(10, 10, 10, 0) 35%, rgba(10, 10, 10, 0.92) 100%);
  z-index: 1;
  transition: var(--transition);
}

.watch-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: var(--border-gold);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(201, 168, 76, 0.06),
    var(--shadow-glow);
}

.watch-card:hover img {
  transform: scale(1.05);
}

.watch-card-copy {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 2;
}

.watch-card-copy span {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.watch-card-copy h3 {
  margin: 8px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
}

.watch-card-copy p {
  display: none;
}

/* CTA da seção relógios */
.section-cta {
  display: grid;
  gap: 20px;
  margin-top: 48px;
  padding: 36px;
  color: var(--gray-700);
  background: var(--ink-soft);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-md);
  border-top: 1px solid var(--border-dark);
  border-right: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  transition: var(--transition);
}

.section-cta:hover {
  border-left-color: var(--gold-bright);
  box-shadow: var(--shadow-glow);
}

.section-cta p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================================
   SERVIÇOS — Services
   ============================================================ */

.services {
  color: var(--gray-700);
  background: var(--ivory);
  border-top: 1px solid var(--border-dark);
}

.section-heading-light h2 {
  color: var(--white);
}

.section-heading-light > p {
  color: var(--gray-700);
}

.service-grid {
  display: grid;
  gap: 24px;
}

.service-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: var(--gray-200);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.service-card-image > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-luxury);
}

.service-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: var(--border-gold);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.5),
    var(--shadow-glow);
}

.service-card-image:hover > img {
  transform: scale(1.05);
}

.service-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.05) 15%, rgba(10, 10, 10, 0.92) 100%);
  z-index: 1;
}

.service-copy {
  position: absolute;
  right: 24px;
  bottom: 28px;
  left: 24px;
  z-index: 2;
}

.service-copy > svg {
  width: 28px;
  height: 28px;
  margin-bottom: 16px;
  color: var(--gold);
}

.service-copy span {
  display: block;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-copy h3 {
  max-width: 320px;
  margin: 8px 0 12px;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
}

.service-copy p {
  margin: 0;
  color: var(--gray-700);
  font-size: 0.85rem;
  line-height: 1.55;
}

/* Card largo (Gravações) */
.service-card-wide {
  display: grid;
  min-height: auto;
  background: var(--ink-soft);
}

.service-wide-media {
  min-height: 240px;
  position: relative;
  overflow: hidden;
}

.service-wide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-luxury);
}

.service-card-wide:hover .service-wide-media img {
  transform: scale(1.04);
}

.service-wide-copy {
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 22px;
  color: var(--ivory);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-muted) 100%);
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(201, 168, 76, 0.2);
}

.service-icon svg {
  color: var(--ivory);
}

.service-wide-copy h3 {
  margin-bottom: 12px;
  font-size: 1.6rem;
  font-weight: 600;
}

.service-wide-copy > p:not(.section-kicker) {
  color: var(--gray-700);
  font-size: 0.92rem;
  margin-bottom: 24px;
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
}

.text-link:hover {
  color: var(--gold-bright);
  padding-left: 4px;
}

/* Tags de serviço */
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.service-tags span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  color: var(--gray-700);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-dark);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  transition: var(--transition);
}

.service-tags span:hover {
  color: var(--gold);
  border-color: var(--border-gold);
  background: rgba(201, 168, 76, 0.04);
  transform: translateY(-2px);
}

.service-tags svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
}

/* ============================================================
   GALERIA
   ============================================================ */

.gallery {
  background: var(--paper);
}

/* Filtros elegantes */
.gallery-filters {
  display: flex;
  gap: 10px;
  margin-bottom: 36px;
  overflow-x: auto;
  scrollbar-width: none;
}

.gallery-filters::-webkit-scrollbar {
  display: none;
}

.filter-button {
  min-height: 42px;
  flex: 0 0 auto;
  padding: 10px 24px;
  color: var(--gray-500);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
}

.filter-button.is-active,
.filter-button:hover {
  color: var(--ivory);
  background: var(--white);
  border-color: var(--white);
  box-shadow: 0 6px 18px rgba(255, 255, 255, 0.08);
}

/* Grid da Galeria */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 180px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: var(--gray-200);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.04);
  cursor: zoom-in;
  transition: var(--transition);
}

.gallery-item[hidden] {
  display: none;
}

.gallery-item-tall {
  grid-row: span 2;
}

.gallery-item-wide {
  grid-column: 1 / -1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-luxury);
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(10, 10, 10, 0) 50%, rgba(10, 10, 10, 0.8) 100%);
  z-index: 1;
  transition: var(--transition);
}

.gallery-item:hover {
  border-color: var(--border-gold);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  transform: scale(1.02);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item span {
  position: absolute;
  bottom: 16px;
  left: 18px;
  z-index: 2;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  transition: var(--transition);
}

.gallery-item:hover span {
  color: var(--gold);
}

/* ============================================================
   REPUTAÇÃO / DEPOIMENTO
   ============================================================ */

.reputation {
  background: var(--ivory);
}

.reputation-shell {
  position: relative;
  display: grid;
  overflow: hidden;
  color: var(--white);
  background: var(--ink-soft);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.reputation-symbol {
  position: absolute;
  top: 30px;
  left: 24px;
  color: rgba(201, 168, 76, 0.1);
  pointer-events: none;
}

.reputation-symbol svg {
  width: 72px;
  height: 72px;
}

.reputation-copy {
  padding: 80px 24px 36px;
  z-index: 1;
}

.reputation-copy h2 {
  font-size: clamp(1.8rem, 6vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.reputation-copy > p:not(.section-kicker) {
  color: var(--gray-700);
  font-size: 1rem;
  line-height: 1.7;
}

.reputation-signature {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
}

.signature-line {
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.reputation-signature div {
  display: grid;
}

.reputation-signature strong {
  font-size: 0.95rem;
  color: var(--white);
}

.reputation-signature small {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 3px;
}

.reputation-photo {
  height: 360px;
  border-top: 1px solid var(--border-dark);
}

.reputation-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  transition: transform 0.8s var(--ease-luxury);
}

.reputation-shell:hover .reputation-photo img {
  transform: scale(1.03);
}

/* ============================================================
   CONTATO
   ============================================================ */

.contact {
  color: var(--gray-700);
  background: var(--paper);
  border-top: 1px solid var(--border-dark);
}

.contact-grid {
  display: grid;
  gap: 48px;
}

.contact-copy > p:not(.section-kicker) {
  color: var(--gray-700);
  font-size: 1rem;
  line-height: 1.65;
}

.contact-list {
  display: grid;
  margin: 36px 0;
  font-style: normal;
}

.contact-list a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border-dark);
  transition: var(--transition);
}

.contact-list a:hover {
  padding-left: 8px;
}

.contact-list a:hover .contact-icon {
  color: var(--ivory);
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  border-color: var(--gold);
  box-shadow: 0 6px 16px rgba(201, 168, 76, 0.2);
}

.contact-list a:hover > svg {
  color: var(--gold);
  transform: translate(3px, -3px);
}

.contact-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  transition: var(--transition);
}

.contact-icon svg {
  width: 18px;
  height: 18px;
}

.contact-list span:nth-child(2) {
  display: grid;
}

.contact-list small {
  color: var(--gray-500);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-list strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
  margin-top: 3px;
}

.contact-list > a > svg {
  width: 18px;
  height: 18px;
  color: var(--gray-500);
  transition: var(--transition);
}

.contact-actions {
  display: grid;
  gap: 12px;
}

/* ── Painel do Mapa ── */

.map-panel {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  background: var(--ink-soft);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
  filter: grayscale(1) invert(0.92) contrast(1.05) brightness(0.9);
}

.map-label {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  color: var(--white);
  background: rgba(10, 10, 10, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-deep);
}

.map-label img {
  width: 32px;
  height: 36px;
  object-fit: contain;
}

.map-label div {
  display: grid;
}

.map-label strong {
  font-size: 0.88rem;
  font-weight: 600;
}

.map-label span {
  color: var(--gray-700);
  font-size: 0.72rem;
  margin-top: 2px;
}

/* ============================================================
   RODAPÉ — Footer Premium
   ============================================================ */

.site-footer {
  position: relative;
  color: var(--gray-700);
  background: #050505;
  border-top: 1px solid var(--border-dark);
}

/* Faixa dourada decorativa no topo do footer */
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(201, 168, 76, 0.3) 25%,
    var(--gold) 50%,
    rgba(201, 168, 76, 0.3) 75%,
    transparent 100%);
}

.footer-top {
  display: grid;
  gap: 40px;
  padding-top: 72px;
  padding-bottom: 48px;
}

.footer-brand {
  display: grid;
  gap: 16px;
}

.footer-brand p {
  max-width: 320px;
  margin: 0;
  color: var(--gray-700);
  font-size: 0.88rem;
  line-height: 1.65;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-column strong {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-column a {
  color: var(--gray-700);
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-column a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-bottom {
  display: grid;
  gap: 8px;
  padding-top: 24px;
  padding-bottom: 96px;
  color: var(--gray-500);
  border-top: 1px solid var(--border-dark);
  font-size: 0.72rem;
  font-weight: 500;
}

.footer-bottom p {
  margin: 0;
}

/* ============================================================
   WhatsApp FLUTUANTE — Botão Premium
   ============================================================ */

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  gap: 10px;
  padding: 0 22px;
  color: var(--ivory);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-muted) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(201, 168, 76, 0.1);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
}

.whatsapp-float:hover {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(201, 168, 76, 0.2), 0 0 30px rgba(201, 168, 76, 0.15);
}

.whatsapp-float svg {
  width: 18px;
  height: 18px;
  color: var(--ivory);
}

/* ============================================================
   LIGHTBOX — Visualização de Imagens
   ============================================================ */

.lightbox {
  position: fixed;
  max-width: min(92vw, 1000px);
  max-height: 90vh;
  padding: 0;
  overflow: visible;
  color: var(--white);
  background: transparent;
  border: 0;
}

.lightbox::backdrop {
  background: rgba(5, 5, 5, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.lightbox img {
  max-width: 92vw;
  max-height: 80vh;
  margin: auto;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-deep);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.lightbox p {
  margin: 14px 0 0;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--gold);
  transform: rotate(90deg);
}

/* ============================================================
   PÁGINAS LEGAIS (Política de Privacidade / Termos)
   ============================================================ */

.legal-page {
  min-height: 100vh;
  color: var(--gray-700);
  background: var(--ivory);
}

.legal-page .site-header {
  background: rgba(10, 10, 10, 0.96);
}

.legal-main {
  padding: 150px 0 80px;
}

.legal-shell {
  max-width: 800px;
}

.legal-shell h1 {
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  line-height: 1.1;
}

.legal-updated {
  margin-bottom: 48px;
  color: var(--gray-500);
  font-size: 0.85rem;
}

.legal-content {
  padding: 32px 24px;
  color: var(--gray-700);
  background: var(--ink-soft);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  border-left: 1px solid var(--border-dark);
  border-right: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  margin-bottom: 20px;
  line-height: 1.7;
}

.legal-content a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
}

.legal-content a:hover {
  color: var(--gold-bright);
  border-color: var(--gold-bright);
}

/* ── Customização Audio Player Dark Mode ── */

audio {
  display: block;
  width: 100%;
  max-width: 480px;
  height: 44px;
  margin-top: 18px;
  border-radius: 22px;
  background-color: var(--ink-soft);
  border: 1px solid var(--border-dark);
  box-shadow: var(--shadow-soft);
  outline: none;
  transition: var(--transition);
}

audio:hover {
  border-color: var(--border-gold);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

audio::-webkit-media-controls-panel {
  background-color: var(--ink-soft) !important;
}

audio::-webkit-media-controls-play-button,
audio::-webkit-media-controls-mute-button {
  filter: invert(1) sepia(1) saturate(5) hue-rotate(320deg) brightness(0.9);
}

audio::-webkit-media-controls-current-time-display,
audio::-webkit-media-controls-time-remaining-display {
  color: var(--gray-700) !important;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.75rem;
}

audio::-webkit-media-controls-timeline {
  background-color: rgba(255, 255, 255, 0.1) !important;
  border-radius: 2px;
}

audio::-webkit-media-controls-volume-slider {
  background-color: rgba(255, 255, 255, 0.1) !important;
  border-radius: 2px;
}

/* ============================================================
   ANIMAÇÕES REVEAL — Transições Cinematográficas
   ============================================================ */

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1s var(--ease-luxury), transform 1s var(--ease-luxury);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVIDADE — Media Queries
   ============================================================ */

/* ── Tablet (≥700px) ── */

@media (min-width: 700px) {
  .container {
    width: min(calc(100% - 60px), var(--container));
  }

  /* Espaço para respirar: 120px entre seções */
  .section {
    padding: 120px 0;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-actions,
  .contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero-actions .button {
    min-width: 200px;
  }

  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-item {
    padding: 28px 32px;
    border-right: 1px solid var(--border-dark);
    border-bottom: 0;
  }

  .trust-item:first-child {
    padding-left: 0;
  }

  .trust-item:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .story-main-image {
    height: 580px;
  }

  .story-visual {
    width: 100%;
  }

  .watch-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
  }

  .watch-card-featured {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 560px;
  }

  .watch-card {
    min-height: 268px;
  }

  .watch-card-copy p {
    display: block;
    max-width: 320px;
    margin: 12px 0 0;
    color: var(--gray-700);
    font-size: 0.85rem;
    line-height: 1.55;
  }

  .section-cta {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 36px 44px;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .service-card {
    min-height: 380px;
  }

  .service-card-wide {
    grid-column: 1 / -1;
    grid-template-columns: 1.25fr 1fr;
  }

  .service-wide-media {
    min-height: 100%;
  }

  .service-wide-copy {
    padding: 48px;
  }

  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 220px;
    gap: 16px;
  }

  .gallery-item-wide {
    grid-column: span 2;
  }

  .reputation-shell {
    grid-template-columns: 1.25fr 0.75fr;
  }

  .reputation-copy {
    padding: 80px 56px;
  }

  .reputation-photo {
    height: 100%;
    min-height: 520px;
    border-top: 0;
    border-left: 1px solid var(--border-dark);
  }

  .footer-top {
    grid-template-columns: 2.2fr repeat(3, 1fr);
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
    padding-bottom: 36px;
  }

  .legal-content {
    padding: 48px 56px;
  }
}

/* ── Desktop (≥960px) ── */

@media (min-width: 960px) {
  :root {
    --header-height: 90px;
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 32px;
  }

  .desktop-nav a {
    position: relative;
    padding: 24px 0;
    color: var(--gray-700);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: 18px;
    left: 0;
    height: 2px;
    content: "";
    background: linear-gradient(90deg, var(--gold), var(--gold-bright));
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform var(--transition);
  }

  .desktop-nav a:hover {
    color: var(--white);
  }

  .desktop-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left center;
  }

  .header-cta {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 10px;
    padding: 0 22px;
    color: var(--ivory);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
    border-radius: var(--radius-sm);
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .header-cta:hover {
    background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.25);
    transform: translateY(-2px);
  }

  .header-cta svg {
    width: 16px;
    height: 16px;
    color: var(--ivory);
  }

  .menu-toggle,
  .mobile-nav {
    display: none;
  }

  /* Hero: layout split-screen no desktop */
  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    min-height: 100svh;
    padding-top: 0;
    align-items: stretch;
  }

  .hero-media {
    position: relative;
    inset: unset;
    width: 100%;
    height: 100%;
    object-position: 45% top;
    grid-column: 2;
    grid-row: 1;
    mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.4) 12%, black 30%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.4) 12%, black 30%);
  }

  .hero-overlay {
    grid-column: 1;
    grid-row: 1;
    position: relative;
    inset: unset;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
      rgba(10, 10, 10, 1) 0%,
      rgba(10, 10, 10, 0.95) 60%,
      rgba(10, 10, 10, 0.85) 100%);
  }

  .hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 80px;
    padding-left: max(40px, 5vw);
    padding-right: 60px;
    margin-top: 0;
  }

  .hero-copy {
    max-width: 560px;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 5.5vw, 7rem);
    margin-bottom: 20px;
  }

  .hero-lead {
    font-size: clamp(1.1rem, 1.8vw, 1.6rem);
    line-height: 1.35;
    margin-bottom: 20px;
  }

  .hero-description {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 32px;
  }

  .hero-detail {
    padding: 24px 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-deep);
  }

  .hero-detail-icon {
    width: 48px;
    height: 48px;
  }

  .hero-detail strong {
    font-size: 1rem;
  }

  .hero-detail span {
    font-size: 0.8rem;
  }

  .scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 40px;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: var(--transition);
  }

  .scroll-cue:hover {
    color: var(--white);
    transform: translateX(-50%) translateY(4px);
  }

  .scroll-cue svg {
    color: var(--gold);
    animation: bounce 2s infinite;
  }

  .story-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 96px;
  }

  .story-main-image {
    height: 600px;
  }

  .story-copy {
    padding-right: 40px;
  }

  .section-heading {
    grid-template-columns: 1.3fr 1fr;
    align-items: end;
    gap: 80px;
    margin-bottom: 64px;
  }

  .service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .service-card {
    min-height: 420px;
  }

  .service-card-wide {
    grid-column: span 4;
    grid-template-columns: 1.4fr 1fr;
    min-height: 440px;
  }

  .service-wide-copy {
    padding: 64px;
  }

  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 80px;
  }

  .map-panel,
  .map-panel iframe {
    min-height: 540px;
  }

  .whatsapp-float {
    right: 32px;
    bottom: 32px;
  }
}

/* ============================================================
   ANIMAÇÃO — Scroll Cue Bounce
   ============================================================ */

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-6px);
  }
  60% {
    transform: translateY(-3px);
  }
}

/* ============================================================
   ACESSIBILIDADE — Reduced Motion
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
