/* ============================================================
   DRA. MIKAELLY CARDOSO — PREMIUM LAYER "CHAMPAGNE NOIR"
   Couche additive par-dessus style.css — aucune fonction modifiée.
   ============================================================ */

:root {
  --pm-ivory: #FBF7F0;
  --pm-cream: #F6F0E4;
  --pm-noir: #14100A;
  --pm-noir-2: #1C1610;
  --pm-champagne: #E8D5A3;
  --pm-gold: #C9A96E;
  --pm-bronze: #A07840;
  --pm-hairline: rgba(201, 169, 110, 0.28);
  --pm-hairline-soft: rgba(201, 169, 110, 0.14);
  --pm-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --pm-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Lenis pilote le scroll — on neutralise le smooth natif */
html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

::selection { background: var(--pm-gold); color: var(--pm-noir); }

/* ---------- GRAIN FILM GLOBAL ---------- */
body::after {
  content: '';
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 99990;
  opacity: 0.032;
  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='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: pm-grain 8s steps(10) infinite;
}

@keyframes pm-grain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-5%, -10%); }
  30% { transform: translate(3%, -15%); }
  50% { transform: translate(12%, 9%); }
  70% { transform: translate(9%, 4%); }
  90% { transform: translate(-1%, 7%); }
}

/* ---------- SCROLLBAR & FOCUS ---------- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--pm-noir); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--pm-champagne), var(--pm-bronze));
  border-radius: 4px;
}

:focus-visible {
  outline: 1.5px solid var(--pm-gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- PRELOADER ---------- */
#pmLoader {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: var(--pm-noir);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition: opacity 0.9s var(--pm-ease), visibility 0.9s;
}

#pmLoader.done { opacity: 0; visibility: hidden; }

.pm-loader-mono {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(64px, 10vw, 110px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -4px;
  background: linear-gradient(110deg, #6b5530 20%, var(--pm-champagne) 45%, #fff7e0 50%, var(--pm-champagne) 55%, #6b5530 80%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: pm-shimmer 2.2s linear infinite;
}

.pm-loader-line {
  width: 160px;
  height: 1px;
  background: rgba(201, 169, 110, 0.18);
  position: relative;
  overflow: hidden;
}

.pm-loader-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, var(--pm-champagne), transparent);
  transform: translateX(-100%);
  animation: pm-loadline 1.4s var(--pm-ease) infinite;
}

.pm-loader-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(232, 213, 163, 0.55);
}

@keyframes pm-shimmer {
  0% { background-position: 120% 0; }
  100% { background-position: -130% 0; }
}

@keyframes pm-loadline {
  to { transform: translateX(100%); }
}

/* ---------- BARRE DE PROGRESSION SCROLL ---------- */
#pmProgress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 100%;
  transform-origin: 0 50%;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--pm-bronze), var(--pm-champagne));
  z-index: 99995;
  pointer-events: none;
}

/* ---------- NAVBAR : verre fumé ---------- */
#navbar {
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  background: linear-gradient(rgba(20, 16, 10, 0.55), rgba(20, 16, 10, 0.25)) !important;
  border-bottom: 1px solid rgba(201, 169, 110, 0.12);
  transition: background 0.5s var(--pm-ease), box-shadow 0.5s var(--pm-ease), border-color 0.5s;
}

#navbar.scrolled {
  background: rgba(251, 247, 240, 0.82) !important;
  backdrop-filter: blur(22px) saturate(1.4);
  -webkit-backdrop-filter: blur(22px) saturate(1.4);
  border-bottom: 1px solid rgba(160, 120, 64, 0.16);
  box-shadow: 0 12px 48px rgba(20, 16, 10, 0.08);
}

.nav-cta {
  background: linear-gradient(120deg, var(--pm-bronze), var(--pm-gold) 50%, var(--pm-champagne)) !important;
  background-size: 200% 100% !important;
  color: var(--pm-noir) !important;
  font-weight: 700 !important;
  transition: background-position 0.6s var(--pm-ease), box-shadow 0.4s, transform 0.3s !important;
}

.nav-cta:hover {
  background-position: 100% 0 !important;
  box-shadow: 0 8px 28px rgba(201, 169, 110, 0.45);
  transform: translateY(-1px);
}

/* ---------- HERO ---------- */
.hero-bg {
  background:
    radial-gradient(ellipse 90% 70% at 75% 30%, rgba(64, 46, 18, 0.85) 0%, transparent 60%),
    linear-gradient(160deg, #100C06 0%, #1E1507 45%, #0F0B05 100%);
}

#pmHeroShader {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-overlay {
  background:
    radial-gradient(ellipse 70% 60% at 28% 42%, rgba(201, 169, 110, 0.07) 0%, transparent 65%),
    linear-gradient(to bottom, rgba(16, 12, 6, 0.25) 0%, transparent 30%, transparent 55%, rgba(16, 12, 6, 0.65) 100%);
}

.hero-badge {
  background: rgba(20, 16, 10, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--pm-hairline);
  box-shadow: inset 0 1px 0 rgba(232, 213, 163, 0.12), 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-title {
  font-size: clamp(56px, 7.6vw, 104px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.98;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.4);
}

.hero-title em {
  background: linear-gradient(105deg, var(--pm-bronze) 10%, var(--pm-champagne) 40%, #FFF3D6 50%, var(--pm-champagne) 60%, var(--pm-bronze) 90%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: pm-shimmer 5.5s linear infinite;
}

.hero-subtitle { color: rgba(246, 240, 228, 0.72); }

.hero-photo {
  border-radius: 18px;
  border: 1px solid rgba(232, 213, 163, 0.16);
  box-shadow: 0 1px 0 rgba(232, 213, 163, 0.12) inset, 0 32px 80px rgba(0, 0, 0, 0.6);
  will-change: transform;
}

.hero-photo img {
  transition: transform 8s var(--pm-ease-out), filter 1.2s;
  transform: scale(1.06);
}

.hero:hover .hero-photo img { transform: scale(1.0); filter: brightness(0.95) contrast(1.05); }

.stat-num {
  font-size: 42px;
  background: linear-gradient(160deg, #FFF3D6, var(--pm-gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-divider { background: linear-gradient(rgba(201, 169, 110, 0.5), transparent); }

/* ---------- MARQUEE OR ---------- */
.pm-marquee {
  position: relative;
  background: var(--pm-noir);
  border-top: 1px solid var(--pm-hairline-soft);
  border-bottom: 1px solid var(--pm-hairline-soft);
  overflow: hidden;
  padding: 22px 0;
  z-index: 5;
}

.pm-marquee-track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: pm-marquee 38s linear infinite;
  will-change: transform;
}

.pm-marquee:hover .pm-marquee-track { animation-play-state: paused; }

.pm-marquee span {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(20px, 2.4vw, 30px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(232, 213, 163, 0.6);
  padding: 0 28px;
  white-space: nowrap;
  flex-shrink: 0;
}

.pm-marquee span i {
  font-style: normal;
  color: var(--pm-gold);
  font-size: 0.5em;
  vertical-align: middle;
  padding-left: 56px;
}

@keyframes pm-marquee {
  to { transform: translateX(-50%); }
}

/* ---------- SECTIONS CLAIRES : ivoire chaud + atmosphère ---------- */
.sobre, .analise, .retornos {
  background:
    radial-gradient(ellipse 60% 50% at 85% 8%, rgba(201, 169, 110, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 8% 90%, rgba(201, 169, 110, 0.07) 0%, transparent 60%),
    var(--pm-ivory);
}

.procedimentos, .contato {
  background:
    radial-gradient(ellipse 55% 45% at 12% 10%, rgba(201, 169, 110, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 92% 85%, rgba(201, 169, 110, 0.06) 0%, transparent 55%),
    var(--pm-cream);
}

/* ---------- TAGS DE SECTION : éditorial hairline ---------- */
.section-tag {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  font-size: 11px;
  letter-spacing: 5px;
  color: var(--pm-bronze);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.section-tag::before, .section-tag::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pm-gold));
}

.section-tag::after { background: linear-gradient(90deg, var(--pm-gold), transparent); }

.section-tag.gold {
  background: transparent;
  border: none;
  color: var(--pm-champagne);
}

.section-title {
  font-size: clamp(40px, 5.6vw, 76px);
  letter-spacing: -0.02em;
  line-height: 1.04;
}

.section-title em {
  background: linear-gradient(105deg, var(--pm-bronze) 15%, var(--pm-gold) 45%, var(--pm-champagne) 55%, var(--pm-bronze) 85%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: pm-shimmer 7s linear infinite;
}

.section-title.white em {
  background: linear-gradient(105deg, var(--pm-gold) 10%, #FFF3D6 50%, var(--pm-gold) 90%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- BOUTONS : or liquide + sweep lumineux ---------- */
.btn-primary, .btn-gold {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, var(--pm-bronze) 0%, var(--pm-gold) 45%, #DDBE84 100%);
  color: var(--pm-noir);
  font-weight: 700;
  box-shadow: 0 1px 0 rgba(255, 243, 214, 0.45) inset, 0 12px 32px rgba(160, 120, 64, 0.35);
  transition: transform 0.35s var(--pm-ease), box-shadow 0.35s var(--pm-ease);
  will-change: transform;
}

.btn-primary::before, .btn-gold::before, .btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 250, 235, 0.55), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s var(--pm-ease);
  pointer-events: none;
}

.btn-primary:hover::before, .btn-gold:hover::before, .btn-secondary:hover::before { left: 130%; }

.btn-primary:hover, .btn-gold:hover {
  background: linear-gradient(120deg, var(--pm-bronze) 0%, var(--pm-gold) 45%, #DDBE84 100%);
  transform: translateY(-3px);
  box-shadow: 0 1px 0 rgba(255, 243, 214, 0.5) inset, 0 20px 48px rgba(160, 120, 64, 0.5);
}

.btn-primary svg { color: var(--pm-noir); }

.btn-secondary {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(232, 213, 163, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(232, 213, 163, 0.05);
}

.btn-secondary:hover {
  border-color: var(--pm-champagne);
  background: rgba(232, 213, 163, 0.12);
  transform: translateY(-2px);
}

/* ---------- SOBRE : cadre galerie ---------- */
.sobre-frame {
  position: relative;
  box-shadow: 0 40px 100px rgba(20, 16, 10, 0.18);
  border-radius: 4px;
}

.sobre-frame::before {
  content: '';
  position: absolute;
  inset: -16px;
  border: 1px solid var(--pm-hairline);
  border-radius: 2px;
  pointer-events: none;
  transition: inset 0.6s var(--pm-ease);
}

.sobre-frame:hover::before { inset: -10px; }

.sobre-img { transition: transform 1.4s var(--pm-ease-out), filter 0.8s; }
.sobre-frame:hover .sobre-img { transform: scale(1.04); }

.sf-item {
  border-left: 1px solid var(--pm-hairline);
  padding-left: 18px;
  transition: border-color 0.4s, transform 0.4s var(--pm-ease);
}

.sf-item:hover {
  border-left-color: var(--pm-gold);
  transform: translateX(6px);
}

/* ---------- ANALISE IA : carte lumière ---------- */
.analise-card {
  background: linear-gradient(150deg, #FFFEFB 0%, var(--pm-ivory) 100%);
  border: 1px solid rgba(160, 120, 64, 0.18);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 40px 100px rgba(20, 16, 10, 0.10),
    0 0 0 1px rgba(255, 255, 255, 0.5);
  position: relative;
}

.analise-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(140deg, rgba(201, 169, 110, 0.5), transparent 30%, transparent 70%, rgba(201, 169, 110, 0.35));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.astep-num {
  background: linear-gradient(140deg, var(--pm-gold), var(--pm-bronze)) !important;
  color: var(--pm-noir) !important;
  box-shadow: 0 8px 24px rgba(160, 120, 64, 0.35);
}

.upload-zone {
  border: 1.5px dashed rgba(160, 120, 64, 0.35) !important;
  background: rgba(201, 169, 110, 0.04) !important;
  transition: border-color 0.4s, background 0.4s, transform 0.4s var(--pm-ease) !important;
}

.upload-zone:hover {
  border-color: var(--pm-gold) !important;
  background: rgba(201, 169, 110, 0.09) !important;
  transform: translateY(-3px);
}

/* ---------- FULL FACE : noir profond + soie ---------- */
.fullface {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(64, 46, 18, 0.55) 0%, transparent 55%),
    linear-gradient(165deg, #110D07 0%, #211808 55%, #0F0B05 100%);
}

.ff-glow-1, .ff-glow-2 { filter: blur(90px); opacity: 0.5; }

.ff-card {
  background: rgba(232, 213, 163, 0.035);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(201, 169, 110, 0.16);
  box-shadow: 0 1px 0 rgba(232, 213, 163, 0.08) inset;
  transition: transform 0.5s var(--pm-ease), border-color 0.5s, background 0.5s, box-shadow 0.5s;
  will-change: transform;
}

.ff-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 169, 110, 0.45);
  background: rgba(232, 213, 163, 0.06);
  box-shadow: 0 1px 0 rgba(232, 213, 163, 0.14) inset, 0 32px 64px rgba(0, 0, 0, 0.45);
}

.ff-card.featured {
  background: linear-gradient(150deg, rgba(201, 169, 110, 0.14), rgba(201, 169, 110, 0.05));
  border-color: rgba(201, 169, 110, 0.5);
  box-shadow: 0 1px 0 rgba(232, 213, 163, 0.2) inset, 0 24px 64px rgba(0, 0, 0, 0.4), 0 0 80px rgba(201, 169, 110, 0.12);
}

.ff-tags span {
  border: 1px solid var(--pm-hairline) !important;
  background: rgba(232, 213, 163, 0.04) !important;
  transition: all 0.35s var(--pm-ease) !important;
}

.ff-tags span:hover {
  border-color: var(--pm-champagne) !important;
  background: rgba(201, 169, 110, 0.16) !important;
  transform: translateY(-2px);
  color: var(--pm-champagne) !important;
}

/* ---------- PROCEDIMENTOS : tabs + cases ---------- */
.tab-btn {
  letter-spacing: 1px;
  transition: all 0.35s var(--pm-ease) !important;
}

.tab-btn.active {
  background: linear-gradient(120deg, var(--pm-bronze), var(--pm-gold)) !important;
  color: var(--pm-noir) !important;
  box-shadow: 0 10px 28px rgba(160, 120, 64, 0.35) !important;
}

.proc-case-card {
  border-radius: 16px;
  border: 1px solid rgba(160, 120, 64, 0.15);
  box-shadow: 0 16px 40px rgba(20, 16, 10, 0.12);
  transition: transform 0.5s var(--pm-ease), box-shadow 0.5s var(--pm-ease);
  will-change: transform;
  cursor: pointer;
}

.proc-case-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 32px 72px rgba(20, 16, 10, 0.22), 0 0 0 1px rgba(201, 169, 110, 0.35);
}

.proc-case-card img { transition: transform 1.2s var(--pm-ease-out); }
.proc-case-card:hover img { transform: scale(1.07); }

.proc-card {
  border: 1px solid rgba(160, 120, 64, 0.14) !important;
  background: #FFFEFB !important;
  transition: transform 0.45s var(--pm-ease), box-shadow 0.45s, border-color 0.45s !important;
}

.proc-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 169, 110, 0.45) !important;
  box-shadow: 0 28px 64px rgba(20, 16, 10, 0.14) !important;
}

/* ---------- VIDEOS : écrin noir ---------- */
.videos-section {
  background:
    radial-gradient(ellipse 70% 50% at 50% 110%, rgba(64, 46, 18, 0.5) 0%, transparent 60%),
    linear-gradient(180deg, #14100A 0%, #1B150C 100%);
}

.sv-card {
  border: 1px solid rgba(232, 213, 163, 0.14);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s var(--pm-ease), box-shadow 0.5s, border-color 0.5s;
  will-change: transform;
}

.sv-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 169, 110, 0.5);
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(201, 169, 110, 0.12);
}

.sv-play-btn {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  transition: transform 0.4s var(--pm-ease), background 0.4s !important;
}

.sv-card:hover .sv-play-btn {
  transform: scale(1.12);
  background: rgba(201, 169, 110, 0.55) !important;
}

/* ---------- RETOURS ---------- */
.retorno-img {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(160, 120, 64, 0.14);
  box-shadow: 0 12px 32px rgba(20, 16, 10, 0.10);
  transition: transform 0.45s var(--pm-ease), box-shadow 0.45s;
  will-change: transform;
}

.retorno-img:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  box-shadow: 0 28px 56px rgba(20, 16, 10, 0.2), 0 0 0 1px rgba(201, 169, 110, 0.3);
}

.retorno-img img { transition: transform 1s var(--pm-ease-out); }
.retorno-img:hover img { transform: scale(1.05); }

/* ---------- CONTATO ---------- */
.info-card {
  background: #FFFEFB;
  border: 1px solid rgba(160, 120, 64, 0.14);
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(20, 16, 10, 0.06);
  transition: transform 0.4s var(--pm-ease), box-shadow 0.4s, border-color 0.4s;
}

.info-card:hover {
  transform: translateX(8px);
  border-color: rgba(201, 169, 110, 0.4);
  box-shadow: 0 16px 44px rgba(20, 16, 10, 0.12);
}

.contato-map iframe {
  filter: sepia(0.28) saturate(0.85) contrast(1.02);
  border: 1px solid rgba(160, 120, 64, 0.2);
  box-shadow: 0 24px 64px rgba(20, 16, 10, 0.14);
  transition: filter 0.6s;
}

.contato-map:hover iframe { filter: sepia(0.05) saturate(1); }

/* ---------- FOOTER ---------- */
.footer {
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(64, 46, 18, 0.4) 0%, transparent 60%),
    #0E0B06;
  border-top: 1px solid var(--pm-hairline-soft);
  position: relative;
}

.footer-col h4 {
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--pm-gold);
}

.footer-col a { transition: color 0.3s, padding-left 0.3s var(--pm-ease); }
.footer-col a:hover { color: var(--pm-champagne); padding-left: 6px; }

/* ---------- WHATSAPP FLOAT ---------- */
.whats-float {
  box-shadow: 0 16px 48px rgba(37, 211, 102, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.12);
  transition: transform 0.4s var(--pm-ease), box-shadow 0.4s;
}

.whats-float:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 24px 64px rgba(37, 211, 102, 0.5);
}

/* ---------- ÉTAT INITIAL DES REVEALS GSAP ----------
   .pm-reveal est posé par premium.js uniquement si GSAP est chargé,
   donc aucun risque de contenu invisible sans JS. */
.pm-reveal { opacity: 0; }

/* ---------- ACCESSIBILITÉ : motion réduite ---------- */
@media (prefers-reduced-motion: reduce) {
  body::after { animation: none; }
  .pm-marquee-track { animation: none; transform: none; }
  .hero-title em, .section-title em, .pm-loader-mono { animation: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}

/* ---------- MOBILE ---------- */
@media (max-width: 900px) {
  .pm-marquee { padding: 14px 0; }
  .hero-title { letter-spacing: -0.01em; }
  .sobre-frame::before { inset: -8px; }
}
