/* =============================================
   Mecânica Mauricio Queiros — Landing Page
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,500;0,600;0,700;0,800;1,700&family=Barlow:wght@400;500&family=Inter:wght@400;500&display=swap');

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* --- Tokens --- */
:root {
  --mg-black:      #0A0A0A;
  --mg-black-900:  #1E1E1E;
  --mg-black-700:  #3C3C3C;
  --mg-black-500:  #787878;
  --mg-black-300:  #B4B4B4;
  --mg-yellow:     #FAC800;
  --mg-yellow-400: #FBD233;
  --mg-white:      #FFFFFF;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;
  --font-ui:      'Inter', sans-serif;

  --radius:    4px;
  --container: 1200px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--mg-black);
  color: var(--mg-white);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* --- Tipografia --- */
h1 {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--mg-white);
}
h1 em { font-style: italic; color: var(--mg-yellow); }

h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 0.93;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--mg-white);
}

h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--mg-white);
  margin-bottom: 8px;
}

p { font-family: var(--font-ui); color: var(--mg-black-300); line-height: 1.7; }

.label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mg-yellow);
  margin-bottom: 12px;
}

.highlight { color: var(--mg-yellow); }

.metric {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 80px);
  font-weight: 800;
  color: var(--mg-yellow);
  line-height: 1;
}

/* --- Botões --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary { background: var(--mg-yellow); color: var(--mg-black); border-color: var(--mg-yellow); }
.btn-primary:hover { background: var(--mg-yellow-400); border-color: var(--mg-yellow-400); transform: translateY(-2px); }

.btn-ghost { background: transparent; color: var(--mg-white); border-color: var(--mg-black-700); }
.btn-ghost:hover { border-color: var(--mg-white); }

.btn-lg { padding: 18px 44px; font-size: 20px; }

/* --- HEADER --- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--mg-black-900);
  padding: 14px 0;
  transition: border-color 0.3s;
}

.header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.header-logo {
  height: 40px;
  width: auto;
  flex-shrink: 0;
}

.header-nav { display: flex; gap: 36px; }
.header-nav a {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--mg-black-300);
  transition: color 0.2s;
}
.header-nav a:hover { color: var(--mg-yellow); }

.btn-header-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: var(--mg-yellow);
  color: var(--mg-black);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: var(--radius);
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}
.btn-header-cta:hover { background: var(--mg-yellow-400); transform: translateY(-1px); }

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 160px 0 80px;
  overflow: hidden;
  background-image: url('assets/hero.png');
  background-size: cover;
  background-position: center right;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,10,10,0.97) 0%,
    rgba(10,10,10,0.85) 45%,
    rgba(10,10,10,0.45) 70%,
    rgba(10,10,10,0.2) 100%
  );
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.hero-content { flex: 1; max-width: 680px; }

.hero-sub {
  font-size: 18px;
  color: var(--mg-black-300);
  margin: 24px 0 40px;
  max-width: 460px;
}

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-badge-wrap { flex-shrink: 0; }

.hero-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 196px;
  height: 196px;
  background: rgba(10,10,10,0.75);
  backdrop-filter: blur(8px);
  border: 2px solid var(--mg-yellow);
  border-radius: 50%;
  text-align: center;
  gap: 6px;
}

/* Badge metric: 15 centralizado, + absoluto à esquerda sem afetar o layout */
.badge-metric {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
}

.badge-plus {
  position: absolute;
  left: calc(50% - 58px);
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  color: var(--mg-yellow);
  line-height: 1;
}

.badge-num {
  font-family: var(--font-display);
  font-size: 92px;
  font-weight: 800;
  color: var(--mg-yellow);
  line-height: 1;
}

.badge-label {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--mg-black-300);
  line-height: 1.4;
  text-align: center;
}

/* --- STRIP --- */
.strip {
  background: var(--mg-yellow);
  overflow: hidden;
  padding: 14px 0;
}

.strip-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: ticker 25s linear infinite;
  animation-play-state: paused;
}

.strip-track.running {
  animation-play-state: running;
}

.strip-set {
  display: inline-flex;
  align-items: center;
  gap: 48px;
  padding-right: 48px;
  flex-shrink: 0;
}

.strip-set span {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mg-black);
  white-space: nowrap;
}

.strip-set .dot { font-size: 7px; opacity: 0.4; }

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* --- SERVIÇOS --- */
.servicos { padding: 100px 0; background: var(--mg-black); }

.section-header { margin-bottom: 52px; }

.servicos-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }

.servico-card {
  background: var(--mg-black-900);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
}

.servico-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--mg-yellow);
  transition: width 0.35s ease;
}

.servico-card:hover { background: var(--mg-black-700); }
.servico-card:hover::after { width: 100%; }

.servico-num {
  display: block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--mg-yellow);
  margin-bottom: 16px;
}

.servico-card h3 { font-size: 20px; margin-bottom: 10px; }
.servico-card p { font-size: 14px; color: var(--mg-black-500); line-height: 1.6; }

/* --- NÚMEROS --- */
.numeros { background: var(--mg-yellow); padding: 80px 0; }

.numeros-grid { display: flex; align-items: center; justify-content: center; }

.numero-item { flex: 1; text-align: center; padding: 0 48px; }

.numeros .metric { color: var(--mg-black); }

.numero-item p {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(10, 10, 10, 0.65);
  margin-top: 6px;
  line-height: 1.4;
}

.numero-divisor { width: 1px; height: 72px; background: rgba(10,10,10,0.18); flex-shrink: 0; }

/* --- SOBRE / POR QUE MQ --- */
.sobre { padding: 100px 0; background: var(--mg-black-900); }

.sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }

.sobre-texto h2 { margin: 8px 0 24px; }

.sobre-texto > p { margin-bottom: 36px; font-size: 16px; max-width: 440px; }

.sobre-diferenciais { display: flex; flex-direction: column; gap: 28px; }

.diferencial-item { display: flex; gap: 20px; align-items: flex-start; }

.diferencial-num {
  flex-shrink: 0;
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--mg-yellow);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--mg-yellow);
  letter-spacing: 0.04em;
}

.diferencial-item h3 { font-size: 16px; margin-bottom: 6px; }
.diferencial-item p { font-size: 14px; color: var(--mg-black-500); line-height: 1.6; }

/* --- AVALIAÇÕES --- */
.reviews { padding: 100px 0; background: var(--mg-black); }

.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

.reviews-header h2 { margin-top: 4px; }

.reviews-score-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--mg-black-900);
  border: 1px solid var(--mg-black-700);
  border-radius: var(--radius);
  padding: 16px 24px;
  flex-shrink: 0;
}

.reviews-score-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  color: var(--mg-yellow);
  line-height: 1;
}

.reviews-stars-big { font-size: 20px; color: var(--mg-yellow); letter-spacing: 2px; }

.reviews-score-wrap > div > p { font-size: 13px; color: var(--mg-black-500); margin-top: 4px; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.review-card {
  background: var(--mg-black-900);
  border: 1px solid var(--mg-black-700);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.2s;
}

.review-card:hover { border-color: var(--mg-yellow); }

.review-stars { font-size: 16px; color: var(--mg-yellow); letter-spacing: 2px; }

.review-text {
  font-size: 14px;
  color: var(--mg-black-300);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}

.review-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }

.review-avatar {
  width: 40px; height: 40px;
  background: var(--mg-yellow);
  color: var(--mg-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.review-info { display: flex; flex-direction: column; gap: 2px; }
.review-info strong { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--mg-white); text-transform: uppercase; letter-spacing: 0.03em; }
.review-info span { font-size: 12px; color: var(--mg-black-500); }

.reviews-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--mg-yellow);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.reviews-all-link:hover { border-bottom-color: var(--mg-yellow); }

/* --- CTA FINAL --- */
.cta-final {
  padding: 120px 0;
  text-align: center;
  background: var(--mg-black-900);
  border-top: 1px solid var(--mg-black-700);
  border-bottom: 1px solid var(--mg-black-700);
}

.cta-final h2 { margin-bottom: 20px; }
.cta-final > .container > p { font-size: 18px; max-width: 460px; margin: 0 auto 40px; }

/* --- LOCALIZAÇÃO --- */
.localizacao { padding: 100px 0; background: var(--mg-black); }

.localizacao h2 { margin: 4px 0 40px; }

.mapa-link { display: block; }

.mapa-placeholder {
  background: var(--mg-black-700);
  border: 1px solid var(--mg-black-700);
  border-radius: var(--radius);
  height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transition: border-color 0.25s;
  position: relative;
  overflow: hidden;
}

.mapa-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--mg-black) 0%, var(--mg-black-700) 100%);
}

.mapa-placeholder > * { position: relative; z-index: 1; }
.mapa-link:hover .mapa-placeholder { border-color: var(--mg-yellow); }

.mapa-pin {
  width: 28px; height: 28px;
  background: var(--mg-yellow);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 0 0 6px rgba(250,200,0,0.15);
}

.mapa-placeholder > span {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--mg-white);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* --- FOOTER --- */
.footer { background: var(--mg-black); padding: 56px 0 36px; border-top: 1px solid var(--mg-black-900); }

.footer-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }

.footer-logo { height: 36px; width: auto; }

.footer-social { display: flex; gap: 12px; }

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border: 1px solid var(--mg-black-700);
  border-radius: var(--radius);
  color: var(--mg-black-500);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.footer-social a:hover { border-color: var(--mg-yellow); color: var(--mg-yellow); background: rgba(250,200,0,0.07); }

.footer-divider { height: 1px; background: var(--mg-black-900); margin-bottom: 24px; }

.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }

.footer-copy { font-family: var(--font-ui); font-size: 13px; color: var(--mg-black-500); }

.footer-escalade {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--mg-black-500);
}

.footer-escalade a {
  color: var(--mg-yellow);
  transition: opacity 0.2s;
}
.footer-escalade a:hover { opacity: 0.8; }

/* --- YouTube Section --- */
.youtube-section {
  padding: 100px 0;
  background: var(--mg-black-900);
  border-top: 1px solid var(--mg-black-700);
  border-bottom: 1px solid var(--mg-black-700);
}

.yt-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.yt-header h2 { margin: 4px 0 12px; }
.yt-header > div > p { font-size: 16px; max-width: 440px; }

.yt-carousel {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.yt-card {
  cursor: pointer;
}

.yt-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: linear-gradient(135deg, var(--mg-black-700) 0%, var(--mg-black) 100%);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid var(--mg-black-700);
  transition: border-color 0.25s;
}

.yt-card:hover .yt-thumb { border-color: var(--mg-yellow); }

.yt-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.yt-card:hover .yt-thumb img { transform: scale(1.04); }

.yt-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 10, 0.45);
  transition: background 0.25s;
}

.yt-play-btn svg {
  width: 52px;
  height: 52px;
  color: var(--mg-white);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
  transition: transform 0.2s, color 0.2s;
}

.yt-card:hover .yt-play-btn { background: rgba(10, 10, 10, 0.25); }
.yt-card:hover .yt-play-btn svg { transform: scale(1.12); color: var(--mg-yellow); }

.yt-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--mg-white);
  line-height: 1.3;
}

/* Modal YouTube */
.yt-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}

.yt-modal.open { opacity: 1; visibility: visible; }

.yt-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.yt-modal-content {
  position: relative;
  z-index: 1;
  width: min(420px, 92vw);
}

.yt-modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: none;
  border: none;
  color: var(--mg-white);
  cursor: pointer;
  padding: 8px;
  opacity: 0.7;
  transition: opacity 0.2s;
  line-height: 0;
}
.yt-modal-close:hover { opacity: 1; }

.yt-modal-iframe-wrap {
  aspect-ratio: 9 / 16;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
}

.yt-modal-iframe-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* --- Modal de Serviço (mobile only) --- */
.servico-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 150;
  align-items: flex-end;
  pointer-events: none;
}

.servico-modal.open {
  pointer-events: auto;
}

.servico-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(4px);
  cursor: pointer;
  display: none;
}

.servico-modal.open .servico-modal-overlay {
  display: block;
}

.servico-modal-sheet {
  position: relative;
  z-index: 1;
  width: 100%;
  background: var(--mg-black-900);
  border-top: 2px solid var(--mg-yellow);
  border-radius: 16px 16px 0 0;
  padding: 28px 24px 48px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.servico-modal.open .servico-modal-sheet { transform: translateY(0); }

.servico-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--mg-black-500);
  cursor: pointer;
  padding: 4px;
  line-height: 0;
  transition: color 0.2s;
}
.servico-modal-close:hover { color: var(--mg-white); }

.servico-modal-num {
  display: block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--mg-yellow);
  margin-bottom: 8px;
}

.servico-modal-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--mg-white);
  margin-bottom: 16px;
  line-height: 1.1;
}

.servico-modal-desc {
  font-family: var(--font-ui);
  font-size: 15px;
  color: var(--mg-black-300);
  line-height: 1.7;
}

@media (max-width: 480px) {
  .servico-modal { display: flex; }
  .servico-modal[aria-hidden="true"] .servico-modal-sheet { transform: translateY(100%); }
  .servico-card { cursor: pointer; }
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* --- Responsivo: Tablet --- */
@media (max-width: 900px) {
  .header-nav { display: none; }

  .hero .container { flex-direction: column; align-items: flex-start; }
  .hero-badge-wrap { display: none; }

  .servicos-grid { grid-template-columns: repeat(2, 1fr); }
  .servico-card h3 { font-size: 16px; }

  .sobre-grid { grid-template-columns: 1fr; gap: 52px; }

  .numeros-grid { flex-direction: column; gap: 0; }
  .numero-item { padding: 32px 0; }
  .numero-divisor { width: 80px; height: 1px; }

  .reviews-grid { grid-template-columns: 1fr; gap: 12px; }
  .reviews-header { flex-direction: column; align-items: flex-start; }

  .yt-carousel { grid-template-columns: repeat(3, 1fr); }
  .yt-header { flex-direction: column; align-items: flex-start; }
}

/* --- Responsivo: Mobile --- */
@media (max-width: 480px) {
  .hero {
    padding: 120px 0 60px;
    background-image:
      linear-gradient(to bottom, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.6) 60%, rgba(10,10,10,0.85) 100%),
      url('assets/hero-mobile.png');
    background-position: center center;
  }
  /* Serviços: 2 colunas, todos os cards com altura idêntica */
  .servicos-grid { grid-template-columns: repeat(2, 1fr); gap: 2px; }
  .servico-card { display: flex; flex-direction: row; align-items: center; gap: 10px; padding: 0 16px; height: 64px; overflow: hidden; box-sizing: border-box; }
  .servico-card p { display: none; }
  .servico-num { margin-bottom: 0; flex-shrink: 0; }
  .servico-card h3 { font-size: 13px; margin-bottom: 0; line-height: 1.2; }
  .hero-ctas { flex-direction: column; }
  .btn, .cta-final .btn-lg { width: 100%; justify-content: center; }
  .footer-top { flex-direction: column; align-items: flex-start; gap: 24px; }
  .mapa-placeholder { height: 200px; }

  /* Números: volta pra linha horizontal no mobile */
  .numeros-grid { flex-direction: row; justify-content: center; }
  .numero-item { padding: 24px 0; flex: 1; }
  .numero-divisor { width: 1px; height: 52px; }
  .numeros .metric { font-size: clamp(22px, 8vw, 48px); }
  .numero-item p { font-size: 10px; letter-spacing: 0.04em; }

  /* YouTube: carrossel horizontal no mobile */
  .yt-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
  }
  .yt-carousel::-webkit-scrollbar { display: none; }
  .yt-card {
    width: 62vw;
    flex-shrink: 0;
    scroll-snap-align: start;
  }
}
