* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #000000;
  --white: #ffffff;
  --text: #111111;
  --muted: #777777;
  --light: #aaaaaa;
  --line: #e8e8e8;
  --blue: #08274e;
  --orange: #e8752b;
}

html,
body {
  min-height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--white);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font-family: inherit;
}

button {
  border: 0;
}

/* Topo estilo ferramenta premium */

/* Topo premium */

.vm-tool-header {
  width: 100%;
  background: #000000;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.vm-tool-header-inner {
  width: min(1680px, calc(100% - 96px));
  height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vm-tool-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.vm-tool-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
  filter: none;
}

.vm-tool-brand-copy strong {
  display: block;
  color: #ffffff;
  font-size: 19px;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.vm-tool-brand-copy span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.vm-tool-nav {
  display: flex;
  align-items: center;
  gap: 38px;
}

.vm-tool-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.15px;
  transition: 0.18s ease;
}

.vm-tool-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 1px;
  background: #ffffff;
  transition: 0.18s ease;
}

.vm-tool-nav a:hover {
  color: #ffffff;
}

.vm-tool-nav a:hover::after {
  width: 100%;
}

/* Página */

.page {
  width: 100%;
  margin: 0;
  flex: 1;
}

.tool-page {
  padding: 0;
}

/* Hero preto */

.tool-hero {
  width: 100%;
  min-height: calc(100vh - 76px);
  padding: 120px 36px 70px;
  background: var(--black);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.eyebrow {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 6.2vw, 92px);
  line-height: 0.96;
  font-weight: 400;
  letter-spacing: -3px;
}

.subtitle {
  max-width: 520px;
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.8;
}

/* Busca */

.search-wrapper {
  position: relative;
  width: min(780px, 100%);
  margin: 48px auto 0;
  z-index: 20;
}

.search-area {
  width: 100%;
  height: 66px;
  display: grid;
  grid-template-columns: 1fr 130px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.24);
  overflow: hidden;
  transition: 0.18s ease;
}

.search-area:focus-within {
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.90);
}

.search-area input {
  width: 100%;
  height: 64px;
  border: 0;
  outline: none;
  padding: 0 24px;
  background: transparent;
  color: #111111;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: -0.2px;
}

.search-area input::placeholder {
  color: #8c8c8c;
  font-weight: 300;
}

.search-area button {
  height: 64px;
  border: 0;
  border-left: 1px solid #e6e6e6;
  background: #ffffff;
  color: #000000;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: 0.18s ease;
}

.search-area button:hover {
  background: #000000;
  color: #ffffff;
}

.search-area button:active {
  transform: scale(0.98);
}

.helper-text {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.50);
  font-size: 11px;
  font-weight: 300;
}

/* Sugestões */

.suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  display: none;
  flex-direction: column;
  border: 1px solid #222222;
  background: var(--white);
  z-index: 999;
  text-align: left;
}

.suggestions.show {
  display: flex;
}

.suggestions:empty {
  display: none;
}

.suggestion-item {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  padding: 14px 16px;
  text-align: left;
  cursor: pointer;
  transition: 0.15s ease;
}

.suggestion-item:last-child {
  border-bottom: 0;
}

.suggestion-item:hover {
  background: #f7f7f7;
}

.suggestion-item strong {
  display: block;
  color: var(--blue);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.35;
}

.suggestion-item span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.35;
}

/* Resultado */

.result-area {
  display: none;
  width: min(1120px, calc(100% - 72px));
  margin: 74px auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.result-area.show {
  display: block;
}

.result-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 0 28px;
  border-bottom: 1px solid var(--line);
}

.label {
  display: block;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.result-header h2 {
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -1.4px;
}

.result-header p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
}

.status {
  padding-top: 6px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

/* Ficha técnica */

.main-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}

.main-info div {
  min-height: 84px;
  padding: 19px 18px 19px 0;
  border-bottom: 1px solid var(--line);
}

.main-info div:nth-last-child(-n + 4) {
  border-bottom: 0;
}

.main-info span,
.notes-box span {
  display: block;
  margin-bottom: 8px;
  color: var(--light);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.main-info strong {
  display: block;
  color: var(--text);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 400;
}

/* Observação */

.notes-box {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.notes-box span {
  color: var(--orange);
}

.notes-box p {
  max-width: 880px;
  color: #222222;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.8;
}

/* Botões */

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  padding: 24px 0 30px;
}

.action-btn {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--blue);
  font-size: 12px;
  font-weight: 400;
  cursor: pointer;
  transition: 0.15s ease;
}

.action-btn:hover {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

.action-btn.primary {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

.action-btn.primary:hover {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

.action-btn.copied {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

/* Nenhum resultado */

.empty-state {
  display: none;
  width: min(720px, calc(100% - 72px));
  margin: 74px auto;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.empty-state.show {
  display: block;
}

.empty-state p {
  color: var(--blue);
  font-size: 15px;
  font-weight: 400;
}

.empty-state span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}

/* Rodapé */

.vm-tool-footer {
  width: 100%;
  min-height: 58px;
  padding: 0 36px;
  background: var(--black);
  color: rgba(255, 255, 255, 0.58);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 11px;
  font-weight: 400;
}

.vm-tool-footer span:first-child {
  color: var(--white);
  font-weight: 400;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

/* Esconder classes antigas */

.vm-site-header,
.vm-site-footer,
.vm-instagram-float,
.info-grid {
  display: none;
}

/* Responsivo */

@media (max-width: 980px) {
  .vm-tool-header-inner {
    width: min(100% - 40px, 1500px);
  }

  .result-area,
  .empty-state {
    width: min(100% - 40px, 1120px);
  }

  .main-info {
    grid-template-columns: repeat(2, 1fr);
  }

  .main-info div:nth-last-child(-n + 4) {
    border-bottom: 1px solid var(--line);
  }

  .main-info div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 720px) {
  .vm-tool-header-inner {
    height: auto;
    padding: 18px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .vm-tool-nav {
    width: 100%;
    gap: 22px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .vm-tool-nav a {
    white-space: nowrap;
  }

  .tool-hero {
    min-height: calc(100vh - 126px);
    padding: 74px 24px 54px;
    text-align: left;
    align-items: flex-start;
  }

  .hero h1 {
    font-size: 48px;
    letter-spacing: -1.8px;
  }

  .subtitle {
    margin-left: 0;
  }

  .search-wrapper {
    margin-left: 0;
    margin-right: 0;
  }

  .search-area {
    grid-template-columns: 1fr;
    height: auto;
  }

  .search-area button {
    width: 100%;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .result-header {
    flex-direction: column;
  }

  .main-info {
    grid-template-columns: 1fr;
  }

  .main-info div,
  .main-info div:nth-last-child(-n + 2),
  .main-info div:nth-last-child(-n + 4) {
    border-bottom: 1px solid var(--line);
  }

  .main-info div:last-child {
    border-bottom: 0;
  }

  .buttons {
    gap: 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  .vm-tool-footer {
    min-height: auto;
    padding: 18px 24px;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 430px) {
  .vm-tool-header-inner,
  .result-area,
  .empty-state {
    width: min(100% - 24px, 1120px);
  }

  .tool-hero {
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .result-header h2 {
    font-size: 30px;
  }
}

.hero h1 {
  max-width: 760px;
  color: var(--white);
  font-family: Georgia, "Arial Black", serif;
  font-size: clamp(48px, 6.2vw, 92px);
  line-height: 0.96;
  font-weight: 400;
  letter-spacing: -3px;
}

/* Fonte minimalista fina em todo o sistema */

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  letter-spacing: -0.1px;
}

button,
input,
a {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
}

/* Topo */

.vm-tool-brand-copy strong {
  font-weight: 300;
  letter-spacing: -0.3px;
}

.vm-tool-brand-copy span {
  font-weight: 300;
  letter-spacing: 1.6px;
}

.vm-tool-nav a {
  font-weight: 300;
  letter-spacing: 0.1px;
}

/* Hero */

.eyebrow {
  font-weight: 300;
  letter-spacing: 2.6px;
}

.hero h1 {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-weight: 200;
  letter-spacing: -4px;
}

.subtitle {
  font-weight: 300;
}

/* Busca */

.search-area input {
  font-weight: 300;
}

.search-area button {
  font-weight: 300;
}

/* Sugestões */

.suggestion-item strong {
  font-weight: 300;
}

.suggestion-item span {
  font-weight: 300;
}

/* Resultado */

.label {
  font-weight: 300;
  letter-spacing: 2.4px;
}

.result-header h2 {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-weight: 200;
  letter-spacing: -2px;
}

.result-header p {
  font-weight: 300;
}

.status {
  font-weight: 300;
  letter-spacing: 1.8px;
}

/* Ficha técnica */

.main-info span,
.notes-box span {
  font-weight: 300;
  letter-spacing: 1.8px;
}

.main-info strong {
  font-weight: 300;
}

.notes-box p {
  font-weight: 300;
}

/* Botões */

.action-btn {
  font-weight: 300;
}

/* Vazio */

.empty-state p,
.empty-state span {
  font-weight: 300;
}

/* Rodapé */

.vm-tool-footer {
  font-weight: 300;
}

.vm-tool-footer span:first-child {
  font-weight: 300;
}

/* Resultado e área abaixo em preto, no mesmo estilo do hero */

body,
.page {
  background: var(--black);
}

.result-area,
.empty-state {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.result-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.label {
  color: rgba(255, 255, 255, 0.58);
}

.result-header h2 {
  color: var(--white);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-weight: 200;
}

.result-header p {
  color: rgba(255, 255, 255, 0.62);
}

.status {
  color: rgba(255, 255, 255, 0.72);
}

.main-info {
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.main-info div {
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.main-info span,
.notes-box span {
  color: rgba(255, 255, 255, 0.42);
}

.main-info strong {
  color: var(--white);
}

.notes-box {
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.notes-box p {
  color: rgba(255, 255, 255, 0.78);
}

.buttons {
  background: transparent;
}

.action-btn {
  color: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.action-btn:hover {
  color: var(--white);
  border-bottom-color: var(--white);
}

.action-btn.primary {
  color: var(--white);
  border-bottom-color: var(--white);
}

.action-btn.primary:hover {
  color: rgba(255, 255, 255, 0.70);
  border-bottom-color: rgba(255, 255, 255, 0.70);
}

.empty-state p {
  color: var(--white);
}

.empty-state span {
  color: rgba(255, 255, 255, 0.62);
}

/* Footer grande estilo Squarespace */

.vm-tool-footer {
  display: none;
}

.vm-footer-big {
  width: 100%;
  background: #000000;
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.vm-footer-big-inner {
  width: min(1500px, calc(100% - 72px));
  margin: 0 auto;
  padding: 72px 0 52px;
  display: grid;
  grid-template-columns: 1.2fr 2.8fr;
  gap: 90px;
}

.vm-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.vm-footer-brand-logo {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
  margin-bottom: 18px;
  filter: none;
  opacity: 0.88;
}

.vm-footer-brand h2 {
  max-width: 260px;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 300;
  letter-spacing: -0.4px;
}

.vm-footer-brand p {
  max-width: 260px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
  line-height: 1.7;
  font-weight: 300;
}

.vm-footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 54px;
}

.vm-footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.vm-footer-col strong {
  display: block;
  margin-bottom: 18px;
  color: #ffffff;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 400;
}

.vm-footer-col a {
  display: inline-flex;
  margin-bottom: 11px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 300;
  transition: 0.15s ease;
}

.vm-footer-col a:hover {
  color: #ffffff;
}

.vm-footer-bottom {
  width: min(1500px, calc(100% - 72px));
  margin: 0 auto;
  padding: 22px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  font-weight: 300;
}

.vm-footer-bottom div {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.vm-footer-bottom a {
  color: rgba(255, 255, 255, 0.54);
  transition: 0.15s ease;
}

.vm-footer-bottom a:hover {
  color: #ffffff;
}

@media (max-width: 980px) {
  .vm-footer-big-inner,
  .vm-footer-bottom {
    width: min(100% - 40px, 1500px);
  }

  .vm-footer-big-inner {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .vm-footer-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 42px;
  }
}

@media (max-width: 620px) {
  .vm-footer-big-inner,
  .vm-footer-bottom {
    width: min(100% - 24px, 1500px);
  }

  .vm-footer-big-inner {
    padding: 52px 0 42px;
  }

  .vm-footer-columns {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .vm-footer-brand h2 {
    font-size: 28px;
  }

  .vm-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .vm-footer-bottom div {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

/* Loading premium */

.vm-premium-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.vm-premium-loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.vm-premium-loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  transform: translateY(8px);
  animation: vmLoaderIn 0.8s ease forwards;
}

.vm-premium-loader-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
}

.vm-premium-loader-inner span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
}

@keyframes vmLoaderIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Busca premium com digitação */

.search-wrapper {
  position: relative;
  width: min(780px, 100%);
  margin: 48px auto 0;
  z-index: 20;
}

.search-area {
  width: 100%;
  height: 66px;
  display: grid;
  grid-template-columns: 1fr 130px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.24);
  overflow: hidden;
  transition: 0.18s ease;
}

.search-area:focus-within {
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.90);
}

.search-area input {
  width: 100%;
  height: 64px;
  border: 0;
  outline: none;
  padding: 0 24px;
  background: transparent;
  color: #111111;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: -0.2px;
}

.search-area input::placeholder {
  color: #8c8c8c;
  font-weight: 300;
}

.search-area button {
  height: 64px;
  border: 0;
  border-left: 1px solid #e6e6e6;
  background: #ffffff;
  color: #000000;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: 0.18s ease;
}

.search-area button:hover {
  background: #000000;
  color: #ffffff;
}

.search-area button:active {
  transform: scale(0.98);
}

/* Toast */

.vm-toast {
  position: fixed;
  left: 50%;
  bottom: 34px;
  z-index: 9999;
  transform: translateX(-50%) translateY(20px);
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  background: #ffffff;
  color: #000000;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: -0.1px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.22s ease;
}

.vm-toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Botão extra não pesar */

#copyClientButton {
  color: rgba(255, 255, 255, 0.88);
}

#copyClientButton:hover {
  color: #ffffff;
  border-bottom-color: #ffffff;
}

@media (max-width: 720px) {
  .search-area {
    grid-template-columns: 1fr;
    height: auto;
  }

  .search-area button {
    width: 100%;
    border-left: 0;
    border-top: 1px solid #e8e8e8;
  }

  .vm-toast {
    width: calc(100% - 32px);
    bottom: 18px;
    text-align: center;
  }
}