* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --red: #d42020;
  --red-dark: #b01818;
  --red-light: #ff3333;
  --navy: #0d1a2e;
  --navy2: #111f30;
  --navy3: #162438;
  --navy4: #1c2d42;
  --white: #ffffff;
  --gray: #7a8fa8;
  --gray-light: #b0c4d8;
  --black: #080e18;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}

/* ─── SCROLL REVEAL — surge/desaparece ─── */
.reveal,
.reveal-left,
.reveal-right,
.section-reveal {
  opacity: 0;
  transform: translateY(55px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.section-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.hidden,
.reveal-left.hidden,
.reveal-right.hidden,
.section-reveal.hidden {
  opacity: 0;
  transform: translateY(55px);
}
.reveal-delay-1 {
  transition-delay: 0.12s;
}
.reveal-delay-2 {
  transition-delay: 0.24s;
}
.reveal-delay-3 {
  transition-delay: 0.36s;
}
.reveal-delay-4 {
  transition-delay: 0.48s;
}
.reveal-delay-5 {
  transition-delay: 0.6s;
}

/* Seções inteiras */
.hero {
  opacity: 1 !important;
  transform: none !important;
}

/* ─── GV5 LOGO ─── */
.gv5-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.gv5-logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.gv5-logo-icon svg {
  width: 52px;
  height: 52px;
}
.gv5-logo-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}
.gv5-logo-name {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
}
.gv5-logo-sub {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-top: 3px;
  width: 100%;
  text-align: center;
}
/* On dark bg */
.logo-dark .gv5-logo-name {
  color: var(--white);
}
.logo-dark .gv5-logo-sub {
  color: var(--gray);
}
/* On light/colored bg */
.logo-light .gv5-logo-name {
  color: var(--white);
}
.logo-light .gv5-logo-sub {
  color: rgba(255, 255, 255, 0.7);
}

/* ─── HERO ─── */
.hero {
  background: #0a1626;
  min-height: 540px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  position: relative;
  padding-bottom: 65px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 55% 60% at 20% 50%,
    rgba(212, 32, 32, 0.12) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.hero-left {
  padding: 28px 60px 52px 80px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: clamp(22px, 3.2vw, 40px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin: 10px 0 16px;
  text-transform: uppercase;
}
.hero h1 strong {
  font-weight: 900;
}
.hero h1 .accent {
  color: var(--red);
}
.hero-sub {
  font-size: 15px;
  color: var(--gray-light);
  margin-bottom: 32px;
  font-weight: 500;
  line-height: 1.5;
}
.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  font-size: 14px;
  padding: 16px 30px;
  border-radius: 5px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
  width: fit-content;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(212, 32, 32, 0.35);
}
.btn-red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 32, 32, 0.5);
}
.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-blob {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: var(--red);
  border-radius: 35% 0 0 0;
  opacity: 1;
  z-index: 1;
}
.hero-splats {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
}
.sp {
  position: absolute;
  background: var(--navy);
  border-radius: 50%;
  opacity: 0.7;
}
.sp1 {
  width: 20px;
  height: 20px;
  top: 55px;
  left: 15px;
}
.sp2 {
  width: 12px;
  height: 12px;
  top: 85px;
  left: 44px;
}
.sp3 {
  width: 7px;
  height: 7px;
  top: 70px;
  left: 68px;
}
.sp4 {
  width: 16px;
  height: 16px;
  top: 30px;
  left: 98px;
}
.sp5 {
  width: 9px;
  height: 9px;
  top: 118px;
  left: 20px;
}
.hero-person {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 4;
  overflow: hidden;
}

/* ─── TICKER ─── */
.ticker-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  height: 100px;
  background: transparent;
  pointer-events: none;
  z-index: 20;
}
.ticker-band {
  padding: 11px 0;
  overflow: hidden;
  white-space: nowrap;
  position: absolute;
  left: -5%;
  width: 110%;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.5);
}
.ticker-band-1 {
  background: var(--red);
  transform: rotate(-2.5deg);
  top: 14px;
  z-index: 2;
}
.ticker-band-2 {
  background: var(--white);
  transform: rotate(2deg);
  top: 38px;
  z-index: 1;
}
.ticker-track {
  display: inline-block;
  animation: tick 28s linear infinite;
  white-space: nowrap;
}
.ticker-track-rev {
  animation-direction: reverse;
  animation-duration: 22s;
}
.ticker-track span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0 24px;
}
.ticker-band-1 .ticker-track span {
  color: var(--white);
}
.ticker-band-1 .ticker-track span::after {
  content: '•';
  margin-left: 24px;
  color: rgba(255, 255, 255, 0.5);
}
.ticker-band-2 .ticker-track span {
  color: var(--black);
}
.ticker-band-2 .ticker-track span::after {
  content: '•';
  margin-left: 24px;
  color: var(--red);
}
@keyframes tick {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-25%);
  }
}

/* ─── AVISO + FORM ─── */
.aviso-form {
  background: var(--navy2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.aviso-left {
  padding: 60px 50px 60px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.aviso-tag {
  color: var(--red);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.aviso-left h2 {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 40px;
  text-transform: uppercase;
}
.aviso-left h2 strong {
  font-weight: 900;
}
.step-card {
  background: var(--navy3);
  border-radius: 10px;
  padding: 22px 24px 22px 32px;
  margin-bottom: 14px;
  display: flex;
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.2s;
  position: relative;
}
.step-card:hover {
  border-color: var(--red);
}
.step-num {
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  left: -12px;
  box-shadow:
    0 0 0 4px var(--navy2),
    0 0 15px rgba(212, 32, 32, 0.4);
  flex-shrink: 0;
}
.step-body h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}
.step-body p {
  font-size: 13px;
  color: var(--gray-light);
  line-height: 1.65;
}
.step-body p strong {
  color: var(--white);
}
.step-body p em {
  font-style: normal;
  text-decoration: underline;
}
.aviso-right {
  padding: 50px 60px 50px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.fld {
  margin-bottom: 12px;
}
.fld input,
.fld select {
  width: 100%;
  background: #1c2b3a;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  padding: 15px 18px;
  color: var(--white);
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  outline: none;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.fld input::placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}
.fld input:focus,
.fld select:focus {
  border-color: var(--red);
  background: #1e3044;
}
.fld select {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}
.fld select option {
  background: #1c2b3a;
  color: var(--white);
}
.fld-label {
  font-size: 11px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.phone-row {
  display: flex;
}
.phone-flag {
  background: #1c2b3a;
  border-radius: 7px 0 0 7px;
  padding: 15px 14px;
  display: flex;
  align-items: center;
  font-size: 18px;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.phone-row input {
  border-radius: 0 7px 7px 0 !important;
  border-left: none !important;
}
.btn-submit {
  width: 100%;
  background: var(--red);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 17px;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  margin-top: 4px;
  transition:
    background 0.2s,
    transform 0.2s;
  box-shadow: 0 4px 20px rgba(212, 32, 32, 0.3);
  animation: btnPulse 2s ease-in-out infinite;
}
.btn-submit:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  animation: none;
  box-shadow: 0 8px 30px rgba(212, 32, 32, 0.5);
}
@keyframes pingGreen {
  0% {
    transform: scale(1);
    opacity: 0.75;
  }
  75%,
  100% {
    transform: scale(2.4);
    opacity: 0;
  }
}
@keyframes btnPulse {
  0%,
  100% {
    box-shadow:
      0 4px 20px rgba(212, 32, 32, 0.3),
      0 0 0 0 rgba(212, 32, 32, 0.4);
  }
  50% {
    box-shadow:
      0 4px 20px rgba(212, 32, 32, 0.5),
      0 0 0 10px rgba(212, 32, 32, 0);
  }
}

/* ─── SECTION TAG ─── */
.stag {
  color: var(--red);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}

/* ─── QUEM SOMOS ─── */
.quem-somos {
  background: var(--navy);
  padding: 90px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.polaroid-scene {
  position: relative;
  height: 750px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
}
.pol {
  position: relative;
  background: var(--white);
  padding: 10px 10px 44px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.8);
  width: 260px;
  margin-bottom: -60px;
}
.pol:first-child {
  transform: rotate(-4deg);
  margin-top: 0;
  z-index: 3;
}
.pol:nth-child(2) {
  transform: rotate(3deg);
  z-index: 2;
  margin-left: 30px;
}
.pol:nth-child(3) {
  transform: rotate(-2deg);
  z-index: 1;
  margin-left: -20px;
}
.pol-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: #0d1520;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #2a3d55;
  letter-spacing: 1px;
  text-transform: uppercase;
  flex-direction: column;
  gap: 8px;
}
.pol-label {
  text-align: center;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 900;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-style: italic;
  font-family: Georgia, serif;
}

/* Binder clips */
.pol-clip {
  position: absolute;
  z-index: 10;
  width: 28px;
  height: 36px;
}
.pol-clip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 14px;
  background: linear-gradient(180deg, #1a1a1a 0%, #333 40%, #1a1a1a 100%);
  border-radius: 3px 3px 0 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
.pol-clip::after {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 24px;
  background: linear-gradient(180deg, #2a2a2a 0%, #444 30%, #2a2a2a 100%);
  border-radius: 0 0 2px 2px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  border-left: 2px solid rgba(255, 255, 255, 0.08);
  border-right: 2px solid rgba(0, 0, 0, 0.3);
}
.pol-clip-tl {
  top: -18px;
  left: 20px;
}
.pol-clip-tr {
  top: -18px;
  right: 20px;
}
.pol-clip-bl {
  bottom: -18px;
  left: 20px;
  transform: rotate(180deg);
}
.pol-clip-br {
  bottom: -18px;
  right: 20px;
  transform: rotate(180deg);
}
.qs-right h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 22px;
}
.qs-right h2 strong {
  font-weight: 900;
}
.qs-right p {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.85;
  margin-bottom: 14px;
}
.qs-right p strong {
  color: var(--white);
}

/* ─── CLIENTES / RESULTADOS ─── */
.clientes {
  background: var(--black);
  padding: 90px 80px;
  position: relative;
  overflow: hidden;
}
.clientes::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 50% 0%,
    rgba(212, 32, 32, 0.06) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.clientes-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}
.clientes-header .stag {
  justify-content: center;
  display: flex;
}
.clientes-header h2 {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 10px;
}
.clientes-header h2 strong {
  font-weight: 900;
}
.clientes-header p {
  font-size: 15px;
  color: var(--gray-light);
}
.clientes-header p em {
  font-style: normal;
  color: var(--white);
  font-weight: 700;
}

/* Logo ticker strip */
.logo-strip-wrap {
  overflow: hidden;
  margin-bottom: 60px;
  position: relative;
}
.logo-strip-wrap::before,
.logo-strip-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.logo-strip-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--black), transparent);
}
.logo-strip-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, var(--black), transparent);
}
.logo-strip {
  display: flex;
  gap: 24px;
  animation: logoScroll 40s linear infinite;
  width: max-content;
}
.logo-strip:hover {
  animation-play-state: paused;
}
.logo-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy2);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  padding: 12px;
  width: 80px;
  height: 80px;
  font-size: 12px;
  font-weight: 800;
  color: var(--gray);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
  overflow: hidden;
}
.logo-chip:hover {
  border-color: rgba(212, 32, 32, 0.4);
  color: var(--white);
  background: rgba(212, 32, 32, 0.06);
}
@keyframes logoScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Logo coverflow carousel */
.logo-coverflow {
  position: relative;
  width: 100%;
  height: 200px;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 900px;
  overflow: hidden;
}
.coverflow-track {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
}
.cflow-item {
  position: absolute;
  width: 160px;
  height: 120px;
  background: var(--navy2);
  border-radius: 14px;
  border: 2px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}
.cflow-item.active {
  border-color: transparent;
  box-shadow:
    0 0 0 2px #d42020,
    0 0 20px rgba(212, 32, 32, 0.6),
    0 0 40px rgba(212, 32, 32, 0.3);
  z-index: 10;
}
.cflow-item img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  filter: grayscale(0);
}
.coverflow-prev,
.coverflow-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--white);
  font-size: 14px;
  transition: all 0.2s;
}
.coverflow-prev {
  left: 16px;
}
.coverflow-next {
  right: 16px;
}
.coverflow-prev:hover,
.coverflow-next:hover {
  background: var(--red);
  border-color: var(--red);
}

/* Case cards grid */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  align-items: start;
}
.cases-grid .case-card:nth-child(1) { grid-column: 1 / 3 !important; }
.cases-grid .case-card:nth-child(2) { grid-column: 3 / 5 !important; }
.cases-grid .case-card:nth-child(3) { grid-column: 5 / 7 !important; }
.cases-grid .case-card:nth-child(4) { grid-column: 2 / 4 !important; }
.cases-grid .case-card:nth-child(5) { grid-column: 4 / 6 !important; }
.case-card {
  background: linear-gradient(145deg, #0a0f1a 0%, #111b2e 40%, #1a1035 70%, #0d0a1f 100%);
  border: 2px solid var(--red);
  border-radius: 14px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s,
    border-color 0.3s,
    box-shadow 0.3s;
  cursor: default;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow:
    0 0 20px rgba(212, 32, 32, 0.15),
    inset 0 0 30px rgba(10, 10, 30, 0.5);
}
.case-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 50% 0%,
    rgba(212, 32, 32, 0.08) 0%,
    transparent 65%
  );
  pointer-events: none;
  opacity: 1;
}
.case-card:hover {
  transform: translateY(-4px);
  border-color: var(--red-light);
  box-shadow:
    0 0 30px rgba(212, 32, 32, 0.25),
    0 12px 40px rgba(0, 0, 0, 0.4);
}

.case-row-center {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  grid-column: 1/-1;
  max-width: 640px;
  margin: 0 auto;
  width: 100%;
}

/* Logo badge */
.case-logo-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-bottom: 20px;
  width: 120px;
  height: 120px;
  overflow: hidden;
  transition: all 0.3s;
  position: relative;
  background: #fff;
}
.case-card:hover .case-logo-badge {
  border-color: var(--red);
  box-shadow: 0 0 15px rgba(212, 32, 32, 0.3);
}
.case-logo-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s;
}
.case-card:hover .case-logo-badge img {
  transform: scale(1.06);
}

.case-metrics {
  margin-bottom: 16px;
  width: 100%;
}
.case-metric-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 7px;
  line-height: 1.4;
  justify-content: center;
}
.case-metric-row strong {
  color: var(--white);
  font-weight: 700;
}
.case-metric-label {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #5a7a99;
  font-size: 11px;
}
.case-roi {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212, 32, 32, 0.1);
  border: 1px solid rgba(212, 32, 32, 0.25);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 900;
  color: var(--red);
  margin-top: 4px;
}
.case-roi-label {
  font-size: 11px;
  font-weight: 600;
  color: #5a7a99;
  margin-left: 2px;
}

/* Bottom CTA strip */
.clientes-cta {
  text-align: center;
  margin-top: 50px;
  font-size: 14px;
  color: var(--gray-light);
}
.clientes-cta strong {
  color: var(--white);
}

/* ─── MÉTODO / DIFERENCIAL ─── */
.metodo {
  background: var(--navy);
  padding: 90px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.metodo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 50% at 50% 60%,
    rgba(212, 32, 32, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.metodo h2 {
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 10px;
}
.metodo h2 strong {
  font-weight: 900;
}
.metodo-sub {
  color: var(--gray-light);
  font-size: 14px;
  margin-bottom: 50px;
}
.metodo-sub strong {
  color: var(--white);
  font-weight: 700;
}

/* Diagram layout */
.metodo-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0 auto 40px;
  max-width: 820px;
  position: relative;
}
.m-label-group {
  display: flex;
  flex-direction: column;
  gap: 26px;
  min-width: 150px;
}
.m-label-group.left {
  align-items: flex-end;
}
.m-label-group.right {
  align-items: flex-start;
}
.m-label-item {
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.25s;
}
.m-label-group.left .m-label-item {
  flex-direction: row;
}
.m-label-group.right .m-label-item {
  flex-direction: row;
}
.m-label-text {
  font-size: 13px;
  font-weight: 700;
  color: #5a7a99;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: color 0.25s;
  padding: 0 8px;
}
.m-label-line {
  width: 38px;
  height: 1px;
  background: rgba(212, 32, 32, 0.25);
  transition: all 0.25s;
  flex-shrink: 0;
}
.m-label-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(212, 32, 32, 0.3);
  border: 1px solid rgba(212, 32, 32, 0.5);
  flex-shrink: 0;
  transition: all 0.25s;
}
.m-label-item:hover .m-label-text,
.m-label-item.lbl-active .m-label-text {
  color: var(--white);
}
.m-label-item:hover .m-label-dot,
.m-label-item.lbl-active .m-label-dot {
  background: var(--red);
  border-color: var(--red-light);
  box-shadow: 0 0 10px rgba(212, 32, 32, 0.7);
  transform: scale(1.5);
}
.m-label-item:hover .m-label-line,
.m-label-item.lbl-active .m-label-line {
  background: rgba(212, 32, 32, 0.7);
  width: 50px;
}

/* Center G logo */
.metodo-g-wrap {
  flex-shrink: 0;
}
.logo-3d-svg {
  width: 280px;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: contain;
  display: block;
  animation: logoFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 0 32px rgba(212, 32, 32, 0.45));
}
@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 0 32px rgba(212, 32, 32, 0.45));
  }
  50% {
    transform: translateY(-10px) scale(1.02);
    filter: drop-shadow(0 0 55px rgba(212, 32, 32, 0.7));
  }
}
.logo-3d-svg .bolt {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: bolt 2.5s ease-in-out infinite;
}
@keyframes bolt {
  0% {
    stroke-dashoffset: 300;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  60% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  80%,
  100% {
    stroke-dashoffset: 0;
    opacity: 0;
  }
}

/* Pills */
.metodo-pills {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.m-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 11px 22px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-light);
  background: var(--navy2);
  cursor: pointer;
  transition: all 0.25s;
  user-select: none;
}
.m-pill:hover {
  border-color: rgba(212, 32, 32, 0.5);
  color: var(--white);
  background: rgba(212, 32, 32, 0.08);
  transform: translateY(-2px);
}
.m-pill.active {
  background: linear-gradient(135deg, #200a0a, #2e0c0c);
  border-color: var(--red);
  color: var(--white);
  box-shadow:
    0 0 22px rgba(212, 32, 32, 0.35),
    0 4px 16px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
  animation: pillGlow 2s ease-in-out infinite;
}
@keyframes pillGlow {
  0%,
  100% {
    box-shadow:
      0 0 22px rgba(212, 32, 32, 0.35),
      0 4px 16px rgba(0, 0, 0, 0.3);
  }
  50% {
    box-shadow:
      0 0 40px rgba(212, 32, 32, 0.6),
      0 4px 20px rgba(0, 0, 0, 0.4);
  }
}
.m-pill-icon {
  font-size: 16px;
  display: flex;
  align-items: center;
}

/* Description box */
.metodo-desc-box {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 580px;
  margin: 22px auto 0;
  background: rgba(212, 32, 32, 0.07);
  border: 1px solid rgba(212, 32, 32, 0.2);
  border-radius: 12px;
  padding: 16px 24px;
  transition: all 0.3s;
}
.metodo-desc-icon {
  font-size: 22px;
  flex-shrink: 0;
}
#metodoDescText {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.6;
  text-align: left;
  transition: opacity 0.2s;
}

/* Cases nav — oculto no desktop */
.cases-nav {
  display: none;
}

/* ─── O QUE FAZEMOS ─── */
.fazemos {
  background: var(--black);
  padding: 0 0 80px;
  position: relative;
}
.fazemos-hdr {
  text-align: center;
  padding: 80px 80px 50px;
  max-width: 900px;
  margin: 0 auto;
}
.fazemos-hdr h2 {
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.25;
}
.fazemos-hdr h2 strong {
  font-weight: 900;
}

/* Slide cards — full width, one at a time */
.fz-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 10px 0 60px;
}
.fz-track {
  display: flex;
  gap: 16px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  padding: 0 14%;
}
.fz-slide {
  min-width: 72%;
  max-width: 72%;
  background: none;
  border: none;
  border-radius: 16px;
  overflow: hidden;
  height: auto;
  flex-shrink: 0;
  display: block;
  opacity: 0.4;
  transform: scale(0.96);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
  cursor: pointer;
  pointer-events: all;
}
.fz-slide.active {
  opacity: 1;
  transform: scale(1);
  border-color: transparent;
  box-shadow: none;
  cursor: default;
}

@media (max-width: 1024px) {
  .fz-track {
    padding: 0 8%;
  }
  .fz-slide {
    min-width: 80%;
    max-width: 80%;
  }
}
@media (max-width: 768px) {
  .fz-track {
    padding: 0 6%;
    gap: 12px;
  }
  .fz-slide {
    min-width: 86%;
    max-width: 86%;
    grid-template-columns: 1fr;
    height: auto;
  }
  .fz-slide-right {
    height: 180px;
  }
  .fz-slide-left {
    padding: 28px 22px;
  }
}
@media (max-width: 480px) {
  .fz-track {
    padding: 0 4%;
  }
  .fz-slide {
    min-width: 90%;
    max-width: 90%;
  }
  .fz-slide-left {
    padding: 22px 18px;
  }
  .fz-slide-title {
    font-size: 18px;
  }
  .fz-slide-right {
    height: 140px;
  }
}
.fz-slide-left {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.fz-slide-num {
  font-size: 11px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.fz-slide-title {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 28px;
}
.fz-slide-title em {
  font-style: normal;
  color: var(--red);
  display: block;
}
.fz-checks {
  list-style: none;
}
.fz-checks li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13.5px;
  color: var(--gray-light);
  line-height: 1.6;
  margin-bottom: 14px;
}
.fz-check-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: rgba(212, 32, 32, 0.15);
  border: 1px solid rgba(212, 32, 32, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  margin-top: 1px;
}
.fz-checks li strong {
  color: var(--white);
}

.fz-slide-right {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a0a18, #0d0818);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 380px;
}
.fz-slide-right::before {
  content: none;
}
.fz-mockup {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 32px;
}
/* Mockup: Tráfego */
.mock-trafego {
  background: #12101e;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  width: 240px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.6);
}
.mock-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.mock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.mock-label {
  font-size: 10px;
  font-weight: 700;
  color: #555;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.mock-metric {
  margin-bottom: 12px;
}
.mock-metric-label {
  font-size: 10px;
  color: #555;
  margin-bottom: 4px;
  font-weight: 600;
}
.mock-metric-bar {
  height: 6px;
  background: #1e1e2e;
  border-radius: 3px;
  overflow: hidden;
}
.mock-metric-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--red), #ff4444);
}
.mock-metric-val {
  font-size: 18px;
  font-weight: 900;
  color: var(--white);
  margin-top: 6px;
}
.mock-metric-val span {
  font-size: 12px;
  color: #22c55e;
  font-weight: 700;
  margin-left: 4px;
}
/* Mockup: Conteúdo */
.mock-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 200px;
}
.mock-post {
  background: #12101e;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}
.mock-post-img {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
.mock-post-body {
  padding: 8px 10px;
}
.mock-post-title {
  font-size: 9px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 3px;
}
.mock-post-sub {
  font-size: 8px;
  color: #555;
}
.mock-post-bar {
  height: 4px;
  background: #1e1e2e;
  border-radius: 2px;
  margin-top: 6px;
}
.mock-post-bar-fill {
  height: 100%;
  border-radius: 2px;
  background: var(--red);
}
/* Mockup: Redes Sociais */
.mock-social {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 220px;
}
.mock-social-card {
  background: #12101e;
  border-radius: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}
.mock-social-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.mock-social-info {
  flex: 1;
}
.mock-social-name {
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
}
.mock-social-stat {
  font-size: 10px;
  color: #555;
  margin-top: 1px;
}
.mock-social-growth {
  font-size: 11px;
  font-weight: 800;
  color: #22c55e;
  margin-left: auto;
}

/* Nav dots */
.fz-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
  position: relative;
}
.fz-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s;
}
.fz-dot.on {
  background: var(--red);
  width: 24px;
  border-radius: 4px;
}
.fz-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(20, 20, 30, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  backdrop-filter: blur(4px);
}
#fz-prev {
  left: calc(14% - 28px);
}
#fz-next {
  right: calc(14% - 28px);
}
.fz-arrow:hover {
  background: var(--red);
  border-color: var(--red);
}

@media (max-width: 768px) {
  .fz-slide {
    grid-template-columns: 1fr;
    height: auto;
  }
  .fz-slide-right {
    min-height: 200px;
    height: auto;
  }
  .fz-slider {
    padding: 0 16px;
  }
  .fazemos-hdr {
    padding: 40px 24px 30px;
  }
}

/* ─── PLANOS ─── */
.planos {
  background: var(--navy2);
  padding: 90px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.planos-left h2 {
  font-size: clamp(28px, 3.5vw, 50px);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 18px;
}
.planos-left h2 strong {
  font-weight: 900;
}
.planos-left p {
  font-size: 13px;
  color: var(--gray-light);
  line-height: 1.75;
}
.planos-left p strong {
  color: var(--white);
}

/* Interactive plan graph */
.plan-graph {
  background: var(--navy3);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  height: 300px;
}
.plan-tabs {
  display: flex;
  justify-content: space-around;
  padding: 14px 12px 0;
  gap: 8px;
  position: relative;
  z-index: 3;
}
.plan-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 10px;
  transition: all 0.25s;
  border: 1px solid transparent;
  flex: 1;
}
.plan-tab:hover {
  background: rgba(255, 255, 255, 0.05);
}
.plan-tab.active {
  background: rgba(212, 32, 32, 0.1);
  border-color: rgba(212, 32, 32, 0.3);
}
.plan-tab-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.25s;
  color: var(--gray-light);
}
.plan-tab.active .plan-tab-icon {
  background: rgba(212, 32, 32, 0.2);
  border-color: rgba(212, 32, 32, 0.4);
  color: var(--white);
}
.plan-tab-label {
  font-size: 9px;
  font-weight: 700;
  color: #555;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.25s;
  white-space: nowrap;
}
.plan-tab.active .plan-tab-label {
  color: var(--red);
}

/* Plan content area */
.plan-content-wrap {
  position: relative;
  height: 195px;
  overflow: hidden;
}
.plan-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 20px 16px;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.3s,
    transform 0.3s;
  pointer-events: none;
}
.plan-content.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.plan-chart-svg {
  width: 100%;
  height: 120px;
  display: block;
}
.plan-stats {
  display: flex;
  gap: 12px;
  padding: 0 4px;
  margin-top: 6px;
}
.plan-stat {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.plan-stat-val {
  font-size: 16px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 2px;
}
.plan-stat-lbl {
  font-size: 9px;
  color: #555;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ─── TIME EXCLUSIVO ─── */
.time-sec {
  background: linear-gradient(135deg, #cc0000 0%, #3d0000 100%);
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.time-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 0% 50%, rgba(0, 0, 0, 0.3) 0%, transparent 70%);
  pointer-events: none;
}
.time-left {
  position: relative;
  z-index: 1;
}
.time-left .stag {
  color: rgba(255, 255, 255, 0.7);
}
.time-left h2 {
  font-size: clamp(24px, 3.2vw, 42px);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 18px;
}
.time-left h2 strong {
  font-weight: 900;
}
.time-left p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 30px;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--red);
  font-weight: 800;
  font-size: 14px;
  padding: 16px 30px;
  border-radius: 5px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
  width: fit-content;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.btn-white:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}
.time-photo {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  overflow: hidden;
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  z-index: 1;
}

/* ─── FAQ ─── */
.faq-sec {
  background: var(--navy2);
  padding: 90px 80px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 70px;
  align-items: center;
}
.faq-left h2 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 12px;
}
.faq-left p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  overflow: hidden;
}
.faq-q {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 600;
  transition: background 0.2s;
  background: var(--navy3);
}
.faq-q:hover {
  background: var(--navy4);
}
.fq-icon {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
}
.fq-txt {
  flex: 1;
}
.fq-arr {
  color: var(--red);
  font-size: 16px;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-a {
  background: var(--navy);
  font-size: 13px;
  color: var(--gray-light);
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s;
  padding: 0 18px 0 56px;
}
.faq-item.open .faq-a {
  max-height: 160px;
  padding: 14px 18px 14px 56px;
}
.faq-item.open .fq-arr {
  transform: rotate(180deg);
}

/* ─── FOOTER ─── */
footer {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 220px;
  min-height: 72px;
}
.footer-socials {
  display: flex;
  gap: 8px;
  align-items: center;
}
.soc-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.2s;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
}
.soc-btn:hover {
  background: var(--red);
  transform: translateY(-2px);
}
.footer-copy {
  font-size: 12px;
  color: var(--white);
  white-space: nowrap;
}
.footer-badges {
  display: flex;
  align-items: center;
  gap: 8px;
}
.partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border-radius: 7px;
  padding: 7px 12px;
  height: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s;
  cursor: default;
}
.partner-badge:hover {
  transform: translateY(-2px);
}
.badge-google {
  border-left: 3px solid #4285f4;
  padding-left: 10px;
}
.badge-google-text {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1.1;
}
.badge-google-name {
  display: flex;
  gap: 0;
}
.badge-google-name span {
  font-size: 12px;
  font-weight: 700;
  font-family: 'Arial', sans-serif;
}
.badge-google-sub {
  font-size: 11px;
  font-weight: 700;
  color: #5f6368;
  font-family: 'Arial', sans-serif;
}

/* ─── RESPONSIVE — TABLET ─── */
@media (max-width: 900px) {
  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    padding-bottom: 65px;
  }
  .hero-left {
    padding: 32px 28px 28px;
  }
  .hero h1 {
    font-size: clamp(22px, 5vw, 34px);
  }
  .hero-right {
    display: block;
    height: 320px;
    position: relative;
  }
  .hero-right .hero-person img {
    object-position: center 20%;
  }

  /* Ticker */
  .ticker-wrap {
    height: 65px;
  }

  /* Aviso + Form */
  .aviso-form {
    grid-template-columns: 1fr;
  }
  .aviso-left {
    padding: 40px 28px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .aviso-right {
    padding: 28px;
  }
  .aviso-left h2 {
    font-size: clamp(24px, 5vw, 38px);
  }

  /* Quem Somos */
  .quem-somos {
    grid-template-columns: 1fr;
    padding: 60px 28px;
    gap: 40px;
  }
  .polaroid-scene {
    height: auto;
  }
  .quem-somos img {
    max-height: 400px !important;
  }
  .pol {
    width: 180px;
  }

  /* Clientes */
  .clientes {
    padding: 60px 28px;
  }
  .clientes-header h2 {
    font-size: clamp(22px, 4vw, 34px);
  }
  .cases-grid {
    grid-template-columns: repeat(4, 1fr);
    padding: 0 28px;
    gap: 16px;
  }
  .cases-grid .case-card:nth-child(1) { grid-column: 1 / 3 !important; }
  .cases-grid .case-card:nth-child(2) { grid-column: 3 / 5 !important; }
  .cases-grid .case-card:nth-child(3) { grid-column: 1 / 3 !important; }
  .cases-grid .case-card:nth-child(4) { grid-column: 3 / 5 !important; }
  .cases-grid .case-card:nth-child(5) { grid-column: 2 / 4 !important; }
  .case-row-center {
    grid-template-columns: 1fr 1fr;
  }

  /* Método */
  .metodo {
    padding: 60px 28px;
  }
  .metodo h2 {
    font-size: clamp(22px, 4vw, 34px);
  }
  .metodo-diagram {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .m-label-group {
    flex-direction: row;
    gap: 12px;
    min-width: auto;
    flex-wrap: wrap;
    justify-content: center;
  }
  .m-label-group.left,
  .m-label-group.right {
    align-items: center;
  }
  .m-label-line {
    width: 20px;
  }
  .logo-3d-svg {
    width: 220px;
    height: auto;
  }
  .metodo-pills {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
  .metodo-desc-box {
    margin: 0 0;
  }

  /* O que Fazemos */
  .fazemos-hdr {
    padding: 50px 28px 30px;
  }
  .fazemos-hdr h2 {
    font-size: clamp(20px, 4vw, 32px);
  }
  .fz-slider {
    padding: 0 8px;
    overflow: hidden;
  }
  .fz-slide {
    min-width: calc(88% - 8px);
    grid-template-columns: 1fr;
    height: auto;
  }
  .fz-slide-left {
    padding: 32px 28px;
  }
  .fz-slide-right {
    height: 200px;
  }
  #fz-prev {
    left: calc(6% - 22px);
  }
  #fz-next {
    right: calc(6% - 22px);
  }

  /* Planos */
  .planos {
    grid-template-columns: 1fr;
    padding: 60px 28px;
  }
  .planos-left h2 {
    font-size: clamp(26px, 4vw, 40px);
  }
  .plan-tabs {
    gap: 4px;
  }
  .plan-tab {
    padding: 6px 8px;
  }
  .plan-tab-icon {
    width: 30px;
    height: 30px;
  }
  .plan-tab-label {
    font-size: 8px;
  }

  /* Time Exclusivo */
  .time-sec {
    grid-template-columns: 1fr;
    padding: 60px 28px;
  }
  .time-left h2 {
    font-size: clamp(22px, 4vw, 34px);
  }
  .time-photo {
    height: 280px;
  }

  /* FAQ */
  .faq-sec {
    grid-template-columns: 1fr;
    padding: 60px 28px;
    gap: 30px;
  }
  .faq-left h2 {
    font-size: clamp(24px, 4vw, 36px);
  }

  /* Deps / Depoimentos */
  .deps {
    padding: 50px 28px;
  }
  .dep-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Footer */
  footer {
    padding: 24px;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-badges {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Especialistas online */
  .btn-white {
    font-size: 13px;
    padding: 14px 22px;
  }
}

/* ─── RESPONSIVE — MOBILE ─── */
@media (max-width: 600px) {
  /* ── HERO ── */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 65px;
    display: flex;
    flex-direction: column;
  }
  /* Esconde a imagem original */
  .hero-person {
    height: 100%;
    min-height: 300px;
  }

  .hero-right .hero-person {
    background-image: url('assets/mobile_hero.jpeg') !important;
    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
  }

  .hero-right .hero-person img {
    display: none !important;
  }

  .hero-right {
    order: 1;
    display: block;
    width: 100%;
    height: 320px;
    position: relative;
    flex-shrink: 0;
  }
  .hero-right::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 220px;
    background: linear-gradient(
      to bottom,
      transparent 0%,
      rgba(10, 22, 38, 0.75) 55%,
      #0a1626 100%
    );
    z-index: 2;
    pointer-events: none;
  }
  .hero-right .hero-person {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .hero-right .hero-person img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    position: absolute;
    inset: 0;
    z-index: 1;
  }
  .hero-right svg {
    width: 100%;
    height: 100%;
  }
  .hero-left {
    order: 2;
    padding: 20px 24px 48px;
    text-align: center;
    align-items: center;
    background: #0a1626;
    position: relative;
    z-index: 1;
  }
  .hero-logo {
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
    height: 100px !important;
    width: auto;
    margin-bottom: 20px;
  }
  .hero-mobile-logo {
    display: none !important;
  }
  .hero-right::before {
    display: none;
  }
  .hero h1 {
    font-size: 26px;
    line-height: 1.2;
    text-align: center;
  }
  .hero-sub {
    font-size: 15px;
    text-align: center;
    margin-bottom: 24px;
  }
  .btn-red {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 16px 24px;
  }
  .ticker-wrap {
    height: 100px;
  }
  .ticker-band {
    padding: 16px 0;
  }
  .ticker-band-1 {
    top: 10px;
  }
  .ticker-band-2 {
    top: 48px;
  }
  .ticker-track span {
    font-size: 14px;
    padding: 0 28px;
  }
  .hero-person {
    background: none;
  }

  /* ── AVISO + FORM — form primeiro, aviso depois ── */
  .aviso-form {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
  }
  .aviso-right {
    order: 1;
    padding: 28px 20px;
  }
  .aviso-left {
    order: 2;
    padding: 32px 20px;
    border-right: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
  }
  .aviso-left h2 {
    font-size: 22px;
    line-height: 1.25;
    text-align: center;
  }
  .aviso-tag {
    font-size: 18px;
    text-align: center;
    display: block;
  }
  .aviso-left {
    padding: 36px 20px 40px;
    text-align: center;
  }
  .aviso-left h2 {
    font-size: 26px !important;
    text-align: center;
    margin-bottom: 28px;
  }
  .step-card {
    text-align: left;
  }
  .step-body h4 {
    text-align: left;
  }
  .step-body p {
    text-align: left;
  }
  .step-card {
    padding: 24px 22px 24px 22px;
    margin-bottom: 16px;
    border-radius: 16px;
    align-items: flex-start;
    background: var(--navy3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    gap: 18px;
  }
  .step-num {
    min-width: 48px;
    height: 48px;
    background: var(--red);
    border-radius: 12px;
    font-size: 20px;
    left: 0;
    box-shadow: none;
    flex-shrink: 0;
  }
  .step-body h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
  }
  .step-body p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
  }
  .step-body p strong {
    color: var(--red);
    font-weight: 700;
  }

  /* ── QUEM SOMOS — polaroids em cima, texto centralizado embaixo ── */
  .quem-somos {
    grid-template-columns: 1fr;
    padding: 48px 20px;
    gap: 28px;
  }
  .polaroid-scene {
    order: 1;
    height: auto;
  }
  .qs-right {
    order: 2;
    text-align: center;
    padding: 0 4px;
  }
  .qs-right h2 {
    font-size: 26px !important;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 400;
  }
  .qs-right h2 strong {
    font-weight: 900;
  }
  .qs-right p {
    font-size: 16px;
    text-align: center;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--gray-light);
  }
  .qs-right p strong {
    color: var(--white);
    font-weight: 700;
  }
  .quem-somos img {
    max-height: 100% !important;
    width: 100% !important;
    margin: 0 auto;
  }
  .pol {
    width: 90vw;
  }
  .polaroid-scene {
    min-height: auto;
    width: 100%;
  }

  /* ── CLIENTES ── */
  .clientes {
    padding: 48px 20px;
  }
  .clientes-header {
    text-align: center;
  }
  .clientes-header h2 {
    font-size: 22px;
  }
  .clientes-header p {
    font-size: 14px;
  }
  .cases-grid {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 16px;
  }
  .case-row-center {
    grid-template-columns: 1fr;
  }
  .case-logo-badge {
    width: 100px;
    height: 100px;
    margin: 0 auto 16px;
  }
  .case-card {
    text-align: center;
  }
  .logo-chip {
    padding: 10px;
    font-size: 10px;
    width: 70px;
    height: 70px;
  }

  /* ── MÉTODO ── */
  .metodo {
    padding: 48px 20px 40px;
    text-align: center;
  }
  .metodo h2 {
    font-size: 24px !important;
    text-align: center;
    margin-bottom: 8px;
  }
  .metodo-sub {
    font-size: 15px;
    margin-bottom: 28px;
    text-align: center;
  }
  /* Esconder labels laterais no mobile — ficam confusos */
  .m-label-group {
    display: none;
  }
  /* Logo centralizada e maior */
  .metodo-diagram {
    flex-direction: column;
    gap: 0;
    align-items: center;
    margin-bottom: 24px;
  }
  .metodo-g-wrap {
    order: 1;
  }
  .logo-3d-svg {
    width: 200px;
    height: auto;
  }
  /* Pills em grid 2x2 + 1 centralizado */
  .metodo-pills {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 0 0 20px;
    width: 100%;
  }
  .m-pill {
    padding: 12px 10px;
    font-size: 13px;
    justify-content: center;
    text-align: center;
    border-radius: 10px;
  }
  /* Último pill (Ativação) centralizado sozinho */
  .m-pill:last-child {
    grid-column: 1/-1;
    max-width: 60%;
    margin: 0 auto;
  }
  .m-pill-icon {
    margin-right: 6px;
  }
  /* Desc box full width */
  .metodo-desc-box {
    padding: 16px 18px;
    gap: 12px;
    border-radius: 12px;
    width: 100%;
    text-align: left;
  }
  #metodoDescText {
    font-size: 15px;
    text-align: left;
    line-height: 1.7;
  }

  /* ── O QUE FAZEMOS — setas acima do slide ── */
  .fazemos-hdr {
    padding: 40px 20px 20px;
    text-align: center;
  }
  .fazemos-hdr h2 {
    font-size: 20px;
    text-align: center;
  }
  .fazemos {
    padding-bottom: 40px;
  }
  .fz-slider {
    padding: 0;
    overflow: hidden;
    position: relative;
  }
  .fz-track {
    padding: 0 5%;
  }
  .fz-slide {
    min-width: 90%;
    max-width: 90%;
    grid-template-columns: 1fr;
    height: auto;
  }
  .fz-slide-left {
    padding: 28px 20px;
    text-align: center;
  }
  .fz-slide-title {
    font-size: 20px;
    text-align: center;
  }
  .fz-slide-title em {
    text-align: center;
  }
  .fz-checks {
    text-align: left;
  }
  .fz-slide-right {
    height: 170px;
  }
  /* Setas centralizadas acima, não nas laterais */
  #fz-prev,
  #fz-next {
    position: static;
    transform: none;
    top: auto;
  }
  .fz-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
    margin-bottom: 8px;
    position: relative;
  }

  /* ── PLANOS ── */
  .planos {
    grid-template-columns: 1fr;
    padding: 48px 20px;
  }
  .planos-left {
    text-align: center;
  }
  .planos-left h2 {
    font-size: 26px;
    text-align: center;
  }
  .planos-left p {
    text-align: center;
  }
  .plan-tabs {
    gap: 4px;
    padding: 10px 8px 0;
  }
  .plan-tab {
    padding: 6px 6px;
  }
  .plan-tab-icon {
    width: 28px;
    height: 28px;
  }
  .plan-tab-label {
    font-size: 7px;
    letter-spacing: 0.3px;
  }
  .plan-graph {
    height: auto;
  }
  .plan-content-wrap {
    position: relative;
    height: auto !important;
    overflow: visible;
  }
  .plan-content {
    position: relative;
    inset: auto;
    opacity: 0;
    pointer-events: none;
    display: none;
  }
  .plan-content.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .plan-chart-svg {
    height: 80px;
  }

  /* ── TIME EXCLUSIVO — foto em cima com gradiente, texto centralizado embaixo ── */
  .time-sec {
    grid-template-columns: 1fr;
    padding: 0 !important;
    gap: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .time-photo {
    order: 1;
    height: auto;
    border-radius: 0 !important;
    border: none;
    box-shadow: none;
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .time-photo img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
    display: block;
    border-radius: 0;
  }
  .time-photo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 160px;
    background: linear-gradient(to bottom, transparent, rgba(20, 0, 0, 0.9));
    z-index: 2;
    pointer-events: none;
  }
  .time-left {
    order: 2;
    padding: 28px 24px 36px;
    text-align: center;
    position: relative;
    z-index: 1;
  }
  .time-left .stag {
    text-align: center;
    display: block;
  }
  .time-left h2 {
    font-size: 22px;
    text-align: center;
  }
  .time-left p {
    font-size: 14px;
    text-align: center;
  }
  .btn-white {
    width: 100%;
    justify-content: center;
    font-size: 14px;
    padding: 16px 24px;
  }
  /* Especialistas online */
  .time-left > div {
    justify-content: center;
  }

  /* ── FAQ ── */
  .faq-sec {
    grid-template-columns: 1fr;
    padding: 48px 20px;
    gap: 24px;
    display: flex;
    flex-direction: column;
  }
  .faq-left {
    text-align: center;
    order: 1;
  }
  .faq-left h2 {
    font-size: 26px;
    text-align: center;
  }
  .faq-left p {
    text-align: center;
  }
  .faq-list {
    order: 2;
  }
  .faq-q {
    font-size: 13px;
    padding: 14px;
  }

  /* ── DEPOIMENTOS ── */
  .deps {
    padding: 48px 20px;
    text-align: center;
  }
  .dep-grid {
    grid-template-columns: 1fr;
  }

  /* ── FOOTER ── */
  footer {
    padding: 28px 20px;
    gap: 14px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  footer > div {
    gap: 10px !important;
    justify-content: center !important;
    flex-direction: column;
    align-items: center;
  }
  .footer-socials {
    justify-content: center;
  }
  .footer-badges {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px !important;
  }
  .footer-copy {
    font-size: 11px;
    white-space: normal;
    text-align: center;
  }

  /* ── CLIENTES slider no mobile ── */
  .cases-slider-wrap {
    position: relative;
  }
  .cases-grid {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0;
    scroll-behavior: smooth;
  }
  .cases-grid::-webkit-scrollbar {
    display: none;
  }
  .case-card {
    min-width: 90%;
    max-width: 90%;
    flex-shrink: 0;
    scroll-snap-align: center;
    margin: 0 5%;
  }
  .case-row-center {
    display: contents;
  }
  .cases-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
  }
  .cases-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s;
  }
  .cases-dot.on {
    background: var(--red);
    width: 24px;
    border-radius: 4px;
  }
  .cases-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--navy2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
  }
  .cases-arrow:hover {
    background: var(--red);
    border-color: var(--red);
  }

  /* ── O QUE FAZEMOS — setas nas laterais do slide ── */
  #fz-prev {
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }
  #fz-next {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }
  .fz-slider {
    position: relative;
  }

  /* ── PLANOS — mostrar gráfico completo ── */
  .planos {
    display: flex;
    flex-direction: column;
  }
  .planos .reveal-right {
    width: 100%;
  }
  .plan-graph {
    height: 300px;
  }

  /* ── TIME EXCLUSIVO — foto em cima ── */
  .time-sec {
    display: flex;
    flex-direction: column;
  }
  .time-photo {
    order: 1;
  }
  .time-left {
    order: 2;
  }

  /* ── TIPOGRAFIA UNIFORME MOBILE ── */
  .stag {
    font-size: 13px !important;
    letter-spacing: 2px;
  }
  .hero h1,
  .qs-right h2,
  .aviso-left h2,
  .planos-left h2,
  .time-left h2,
  .faq-left h2 {
    font-size: 24px !important;
  }
  .metodo h2,
  .fazemos-hdr h2,
  .clientes-header h2 {
    font-size: 22px !important;
  }
  body {
    font-size: 15px;
  }
  .hero-sub,
  .qs-right p,
  .time-left p,
  .planos-left p {
    font-size: 15px;
  }
  .faq-q {
    font-size: 14px !important;
  }
  .case-roi {
    font-size: 22px;
  }

  /* ── GLOBAL ── */
  .btn-red {
    width: 100%;
    justify-content: center;
  }
}

/* ─── REALISTIC MOCKUPS ─── */
/* Laptop mockup */
.mock-laptop {
  position: relative;
  width: 280px;
}
.mock-laptop-screen {
  background: #fff;
  border-radius: 8px 8px 0 0;
  border: 3px solid #1a1a1a;
  overflow: hidden;
  box-shadow: 0 0 0 1px #333;
}
.mock-laptop-bar {
  background: #f0f0f0;
  padding: 5px 8px;
  display: flex;
  align-items: center;
  gap: 4px;
  border-bottom: 1px solid #ddd;
}
.mock-laptop-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.mock-laptop-url {
  flex: 1;
  background: #fff;
  border-radius: 3px;
  padding: 2px 6px;
  font-size: 7px;
  color: #555;
  margin-left: 4px;
  border: 1px solid #ddd;
}
.mock-laptop-content {
  background: #fff;
  padding: 8px;
  min-height: 120px;
}
.mock-laptop-base {
  height: 10px;
  background: linear-gradient(180deg, #2a2a2a, #1a1a1a);
  border-radius: 0 0 4px 4px;
  margin-top: -1px;
}
.mock-laptop-foot {
  width: 110%;
  height: 6px;
  background: #1a1a1a;
  border-radius: 4px;
  margin-left: -5%;
  margin-top: 1px;
}
/* Phone mockup */
.mock-phone {
  width: 120px;
  border-radius: 18px;
  background: #111;
  border: 3px solid #2a2a2a;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.7),
    inset 0 0 0 1px #333;
  overflow: hidden;
  position: relative;
}
.mock-phone-notch {
  height: 16px;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.mock-phone-notch::after {
  content: '';
  width: 40px;
  height: 8px;
  background: #0a0a0a;
  border-radius: 0 0 8px 8px;
  display: block;
}
.mock-phone-screen {
  background: #fff;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.mock-phone-home {
  height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
}
.mock-phone-home::after {
  content: '';
  width: 32px;
  height: 3px;
  background: #333;
  border-radius: 2px;
  display: block;
}
/* Dashboard card */
.mock-dashboard {
  background: #12101e;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.6);
  width: 220px;
}
.mock-dash-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
}
.mock-dash-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.mock-dash-title {
  font-size: 9px;
  font-weight: 800;
  color: #555;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.mock-dash-metric {
  margin-bottom: 12px;
}
.mock-dash-label {
  font-size: 9px;
  color: #444;
  margin-bottom: 3px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.mock-dash-bar {
  height: 5px;
  background: #1e1e2e;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 4px;
}
.mock-dash-fill {
  height: 100%;
  border-radius: 3px;
}
.mock-dash-val {
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.mock-dash-val span {
  font-size: 11px;
  color: #22c55e;
  font-weight: 700;
  margin-left: 4px;
}
/* Meta ads UI */
.mock-meta-ui {
  background: #fff;
  border-radius: 4px;
  padding: 8px;
  font-family: Arial, sans-serif;
}
.mock-meta-header {
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 6px;
  margin-bottom: 6px;
}
.mock-meta-logo {
  color: #1877f2;
  font-size: 11px;
  font-weight: 900;
}
.mock-meta-nav {
  font-size: 8px;
  color: #666;
}
.mock-meta-title {
  font-size: 12px;
  font-weight: 700;
  color: #1c1e21;
  margin-bottom: 4px;
}
.mock-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3px 0;
  border-bottom: 1px solid #f0f0f0;
}
.mock-meta-cell {
  font-size: 7px;
  color: #444;
}
.mock-meta-cell.green {
  color: #22c55e;
  font-weight: 700;
}
.mock-meta-btn {
  background: #1877f2;
  color: #fff;
  border-radius: 3px;
  padding: 2px 6px;
  font-size: 7px;
  font-weight: 700;
  display: inline-block;
}