html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: white; /* garante o fundo escuro total */
  color: white;
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
}

/* HEADLINES (ex: h2) */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  font-weight: 800;
  max-width: 90%;
  margin: 0 auto 20px auto; /* centraliza e adiciona espaçamento inferior */
  padding: 0 10px;
  color: white;
  text-align: center;
}

/* SUBHEADLINES – classe personalizada */
.subheadline {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  margin: 10px 0 20px;
  color: white;
}
.container {
  width: 100vw;             /* ✅ ocupa toda a tela */
  background-color: black;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.container.step4-screen {
  align-items: center;
  text-align: center;
}

.step1-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.hidden {
  display: none;
}
.background {
  width: 100vw;
  height: auto;
  margin: 0;
  padding: 0;
  display: block;
}
.progress-bar {
  width: 90%;
  height: 10px;
  background: #2d2d2d;
  border-radius: 50px;
  margin: 20px auto 20px;
  overflow: hidden;
  display: block;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, #ff1e52, #d40000);
  border-radius: 50px;
  transition: width 1.0s ease-in-out;
  box-shadow: 0 0 6px 2px #ff1e52; /* destaque */
}

#progressBar.hidden {
  display: none;
}

body.step2 #progressBar,
body.step3 #progressBar {
  display: block;
}

.gif-large {
  width: 100px;
  display: block;
  margin: 20px auto;
  margin-bottom: 10px; /* reduz o espaço inferior */
  margin-top: 10px; /* reduz o espaço superior */
}

.btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 21px;
  font-weight: 700;
  color: white;
  display: block;
  width: 90%;
  max-width: 340px;
  padding: 20px;
  margin: 10px auto;
  border: none;
  border-radius: 40px;
  text-align: center;
  cursor: pointer;
}

.btn-confirm {
  height: 60px;
  font-size: 18px;
  background: linear-gradient(to right, #ff2e2e, #d40000);
  transition: 0.3s;
}
.btn-confirm:hover {
  filter: brightness(1.1);
}
.btn-cancel {
  background: #444;
  color: white;
  height: 50px;
  font-size: 16px;
  border-radius: 40px;
  transition: 0.3s;
}
.btn-cancel:hover {
  background: #666;
}
#btn-investigar {
  display: none; /* esconde por padrão */
}

.erro-usuario {
  display: none;
  color: red;
  font-size: 12px;
  margin: 6px 0 0 6px;
  font-family: 'Poppins', sans-serif;
}
.red {
  background: linear-gradient(to right, #ff1e52, #d40000);
  color: #fff;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 600;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  width: 100%;
}
.grey { background: #333; color: #fff; }
input {
  padding: 12px;
  font-size: 16px;
  width: 90%;
  max-width: 300px;
  margin: 10px auto;
  display: block;
  border-radius: 10px;
  border: none;
}
.alert {
  background: linear-gradient(to right, #ff5f5f, #f00);
  color: #fff;
  font-size: 14px;
  border-radius: 20px;
  margin: 10px auto;
  padding: 10px;
  width: 90%;
  max-width: 320px;
}
.secure .icon {
  width: 18px;
  opacity: 0.5;
  margin-right: 6px;
}
.formulario-box {
  background: #000;
  border: 1px solid #333;
  border-radius: 14px;
  padding: 10px;
  margin: 10px auto;
  width: 80%;
  max-width: 400px;
}

.input-label {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: white;
  margin-bottom: 6px;
  display: block;
}

.input-usuario {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: none;
  background-color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  outline: none;
  margin-bottom: 20px;
  box-sizing: border-box;
}

.input-usuario:focus {
  outline: 2px solid #ffc107; /* borda amarela no foco */
}

.alerta-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(to right, #ff004f, #ff5252);
  padding: 14px 20px;
  border-radius: 50px;
  color: white;
  margin-bottom: 20px;
}

.icon-alerta {
  width: 36px;
  height: 36px;
}

.alerta-texto {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
}

.dados-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #bbb;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  flex-direction: row; /* <-- ajuste aqui */
  margin-top: 10px;
}
.dados-box p {
  margin: 0;
  line-height: 1.2;
}

.icon-cadeado {
  width: 20px;
  height: 20px;
}

.icon { width: 20px; vertical-align: middle; margin-right: 5px; }
.page-wrapper {
  padding-bottom: 110px;
  display: flex;
  flex-direction: column;
  background-color: black;
  min-height: 100vh;
  width: 100vw;             /* ✅ ocupa toda a tela */
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.foto-blur {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  filter: blur(4px);
  object-fit: cover;
  flex-shrink: 0;
  margin: 10px;
}

.nome-blur {
  font-weight: 600;
  color: white;
  filter: blur(3.5px);
  display: block;
}

.stories-box {
  max-height: 420px;
  overflow-y: auto;
  padding-right: 4px;
}

/* Estiliza a barra de rolagem (opcional) */
.stories-box::-webkit-scrollbar {
  width: 6px;
}
.stories-box::-webkit-scrollbar-thumb {
  background-color: #444;
  border-radius: 6px;
}

.btn-revelar {
  background: linear-gradient(to right, #d40000, #ff5f5f);
  color: white;
  padding: 14px 28px;
  font-size: 18px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
}

#atividadesCadBox {
  margin: 24px auto 40px;
  max-width: 380px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.atividade-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px;
  background: linear-gradient(180.95deg, #292929 13.95%, #0C0C0E 98.77%);
  border: 1px solid #292929;
}

.atividade-card img {
  width: 100px;
  height: 100px;
  aspect-ratio: 1 / 1; /* garante quadrado */
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 10px;
}

.atividade-card .arroba {
  margin-top: 10px;
  margin-bottom: 2px; /* <--- ainda menor */
  font-weight: 700;
  font-size: 15px;
}

.atividade-card .frase {
  font-size: 14px;
  color: #ccc;
  line-height: 1.3;
  margin: 0;
}

.close-friends-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 24px auto;
  max-width: 420px;
  padding: 0 16px;
}

/* Cabeçalho */
.cf-header {
  text-align: center;
  margin-bottom: 16px;
}

.cf-header .cf-icon {
  background: #00d707;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 6px;
  border-radius: 50%;
  border: 3px solid #ffffff;
}

.cf-header h2 {
  font-size: 22px;
  font-weight: 800;
  margin: 8px 0 0;
  color: #fff;
}

.cf-header p {
  font-size: 11px;
  font-weight: 400;
  color: #e0e0e0;
  margin: 6px 0 16px;
  line-height: 1.4;
}

.cf-header .highlight {
  color: #ffffff;
  font-weight: 600;
}

/* Carrossel */
.cf-carousel {
  width: 100%;
}

.stories-swiper {
  max-width: 100%;
  overflow: hidden;
  max-width: 360px;
  padding: 12px 0;
}

.stories-swiper .swiper-slide {
  width: 250px;
  transition: transform 0.3s ease;
}

.swiper-slide.swiper-slide-active {
  transform: scale(1.25);
  z-index: 2;
}

/* Story visual */
.story-wrapper {
  position: relative;
  width: 100%;
  border: 2px solid #292929;
  aspect-ratio: 9/16;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

.story-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Estrela do close friends */
.cf-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 24px;
  height: 24px;
  background: #00d707;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 4px #00d707;
}

.cf-tag-right {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 25px;
  height: 25px;
  background: #00d707;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 4px #00d707;
  z-index: 10;
}


/* Texto abaixo do carrossel */
.cf-bottom {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
  color: #ccc;
}

.report-box {
  background: linear-gradient(180deg, #ff4f5a 0%, #fc0212 100%);
  border-radius: 32px;
  padding: 24px 18px 16px; /* Menos padding lateral e vertical ajustado */
  position: relative;
  text-align: center;
  margin-top: 5px;
  margin-bottom: 10px;
  color: white;
  font-family: 'Montserrat', sans-serif;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.report-box .icon-wrapper {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #ff4f5a 100%, #fc0212 100%);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.report-box h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  line-height: 1.3em;
}

.report-box p {
  margin-top: 3px;
  font-size: 11px;
  font-weight: 400;
}

.report-box svg {
  width: 24px;
  height: 24px;
}

.report-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto;
}

.report-card {
  background: linear-gradient(180.95deg, #292929 13.95%, #0C0C0E 98.77%);
  border-radius: 14px;
  border: 1px solid #3f3f3f;
  padding: 10px 14px 10px;
  text-align: center;
  color: white;
  font-family: 'Montserrat', sans-serif;
}

.report-card .card-icon {
  width: 35px;
  height: 35px;
  background: #ff2b38;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.report-card svg {
  width: 20px;
  height: 20px;
}

.report-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  margin-bottom: 3px;
}

.report-card p {
  font-size: 12px;
  line-height: 1.4em;
  color: #ccc;
  margin: 0;
}

.alert-access {
  background: linear-gradient(180.95deg, #292929 13.95%, #0C0C0E 98.77%);
  border: 1px solid #ff2c2c;
  color: white;
  font-weight: bold;
  padding: 12px 16px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 24px 0;
  justify-content: center;
  text-align: center;
}

.app-intro {
  text-align: center;
  color: white;
  margin-bottom: 24px;
}

.app-intro img {
  margin-bottom: 12px;
}

.app-intro h2 {
  font-size: 28px;
  margin: 0;
}

.app-intro p {
  max-width: 320px;
  margin: 8px auto 0;
  font-size: 12px;
  color: #f0f0f0;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  padding: 0 10px;  /* 🔥 margens laterais bem próximas */
  margin: 20px 0;
}

.metric-card {
  background: linear-gradient(180deg, #ff4f5a 0%, #fc0212 100%);
  border-radius: 5px;
  padding: 24px 12px;
  text-align: center;
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1.2;
}

.metric-card span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  margin-top: 6px;
}

.metrics-container {
  max-width: none; /* ou simplesmente remova essa classe */
  padding: 0 12px;  /* opcional: deixa margem lateral mínima */
}

/* CARD 1 (topo esquerdo) */
.metric-card:nth-child(1) {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 40px;
}

/* CARD 2 (topo direito) */
.metric-card:nth-child(2) {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 10px;
}

/* CARD 3 (baixo esquerdo) */
.metric-card:nth-child(3) {
  border-top-left-radius: 10px;
  border-top-right-radius: 40px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

/* CARD 4 (baixo direito) */
.metric-card:nth-child(4) {
  border-top-left-radius: 40px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.cta-final {
  text-align: center;
  margin-top: 32px;
  color: white;
}

.cta-final h3 {
  font-size: 20px;
  font-weight: 800;
}

.scroll-icon {
  margin-top: 16px;
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.relatorio-box {
  background: #1b1b1b;
  padding: 14px;
  border-radius: 20px;
  font-family: 'Montserrat', sans-serif;
  color: white;
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.relatorio-box-left {
  display: flex;
  flex-direction: column;
  gap: 5px;
  max-width: 60%;
}

.relatorio-box-left h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.relatorio-box-left p {
  font-size: 9px;
  font-weight: 400;
  margin: 0;
  color: #bfbfbf;
}

.relatorio-box-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 3px;
}

.tag-desconto {
  background: red;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 20px;
  color: white;
}

.preco-original {
  font-size: 10px;
  text-decoration: line-through;
  color: #929292;
}

.preco-novo {
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.preco-avista {
  font-size: 11px;
  color: #929292;
}

/* Checklist */
.relatorio-checklist {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
}

.relatorio-checklist-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Botão verde com degradê radial */
.botao-comprar {
  margin: 24px auto 0 auto;
  background: radial-gradient(circle, #28ec77 0%, #19a750 100%);
  color: white;
  font-size: 19px;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  padding: 15px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 0 10px #19a7507a;
  transition: transform 0.2s;
  width: 80%;
  max-width: 100%;

  /* Efeito pulsar */
  animation: pulseScale 1.8s infinite ease-in-out;
}

.botao-comprar:hover {
  transform: scale(1.03);
}

@keyframes pulseScale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
  100% {
    transform: scale(1);
  }
}

.provas-sociais-carrossel {
  margin-top: 30px;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.provas-sociais-carrossel .swiper {
  width: 100%;
  height: auto;
}

.provas-sociais-carrossel .swiper-wrapper {
  align-items: stretch;
}

.provas-sociais-carrossel .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  border-radius: 12px;
  padding: 0;
  height: auto;
}

.provas-sociais-carrossel img {
  width: 90%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  display: block;
}

/* BLOQUEIO DE FUNDO */
.popup-bloqueio {
  position: fixed;
  top: 0;
  left: 0;
  width: calc(100% - 40px); /* respeita 20px de margem de cada lado */
  height: 100vh;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(5px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* OCULTA POPUP */
.popup-bloqueio.hidden {
  display: none;
}

.popup-profile-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0;
  position: absolute;
  top: -48px; /* melhor proporção do avatar flutuando */
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.popup-profile-pic {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  padding: 5px; /* espaço preto entre imagem e borda branca */
  background-color: black;
  box-shadow: 0 0 0 3px #ffffff; /* borda branca */
  background-size: cover;
  background-position: center;
  margin-bottom: 8px;
}
.popup-username {
  background-color: #ff2b38;
  color: white;
  padding: 4px 10px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}

/* CONTEÚDO CENTRAL */
.popup-content {
  background: linear-gradient(180.95deg, #292929 13.95%, #0C0C0E 98.77%);
  border-radius: 12px;
  padding: 60px 20px 30px; /* aumentamos o top para dar espaço ao avatar flutuante */
  position: relative;
  text-align: center;
  max-width: 360px;
  width: 100%;
  border: 2px solid #292929;
  font-family: 'Montserrat', sans-serif;
  color: white;
  box-shadow: 0 0 20px rgba(0,0,0,0.8);
}

.popup-content h2 {
  margin-top: 20px; /* ou aumente se necessário */
  font-size: 22px;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
}

.popup-content p {
  font-size: 13px;
  font-weight: 400;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.1;
  margin-bottom: 20px;
}
/* ÍCONE REDONDO */
.popup-icon img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid white;
  background: white;
  margin-bottom: 12px;
}

.popup-alerta {
  font-weight: 700;
  background: red;
  padding: 10px;
  border-radius: 6px;
  margin: 12px 0;
  font-size: 14px;
}


.valor {
  font-size: 16px;
  color: #00ff90;
}

/* BOTÃO VERDE */
.btn-verde {
  display: inline-block;
  background: linear-gradient(to right, #00ff90, #00cc66);
  color: white;
  padding: 12px 16px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  font-size: 19px;
  transition: transform 0.2s ease;
}

.btn-verde:hover {
  transform: scale(1.05);
}

.popup-tempo {
  font-size: 13px;
  margin: 10px 0;
  font-weight: 600;
  color: white;
  line-height: 1.4;
  font-family: 'Montserrat', sans-serif;
}

.cronometro {
  font-size: 24px;
  font-weight: bold;
  color: #ff2b38;
  font-family: 'Courier New', monospace;
}

#cronometro {
  margin-top: 5px;
  margin-bottom: 8px;
}

footer {
  padding: 20px;
  background: black;
  color: white;
  text-align: center;
  font-size: 12px;
}

.footer-inner .links {
  margin-top: 10px;
}

.footer-inner .links a {
  color: white;
  margin: 0 8px;
  text-decoration: underline;
  font-size: 12px;
}

.profile-pic {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  justify-content: center; /* centraliza verticalmente */
  align-items: center;     /* centraliza horizontalmente */
  flex-shrink: 0;
  border: 2px solid #fff;
}

.profile-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.profile-details h2 {
  font-size: 18px;
  margin: 0 0 4px 0;
  font-weight: 600;
}

.username-pill {
  background: #1c1c1c;
  padding: 5px 10px;
  border-radius: 999px;
  justify-content: center; /* centraliza verticalmente */
  align-items: center;     /* centraliza horizontalmente */
  color: white;
  font-size: 16px;
  display: inline-block;
  margin-top: 10px;
}

.result-container {
  background: #000;
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  max-width: 420px;
  margin: 0 auto;
  box-sizing: border-box;
}

.insta-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.profile-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.profile-info h2 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.stats {
  font-size: 14px;
  color: #ccc;
  display: flex;
  gap: 10px;
  margin-bottom: 5px;
}

.profile-bio {
  font-size: 14px;
  color: #ccc;
  margin: 6px auto 16px;
  padding: 0 20px;
  text-align: center;
  line-height: 1.4;
}

.post-thumb {
  width: 32%;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
}

.alert-box {
  background: linear-gradient(to top, #151515, #2a2a2a);
  padding: 20px;
  border-radius: 30px; /* <= reduzido de 100px para 30px */
  text-align: center;
  margin: 10px auto 0;
  color: white;
  max-width: 90%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.alert-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 6px;
}

.alert-title h2 {
  white-space: nowrap;
  font-size: 31px;
  font-weight: 800;
  color: white;
  margin: 0;
}

.alert-location {
  font-size: 11px;
  color: #90ee90;
  margin: 6px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.alert-warning {
  font-size: 15px;
  color: #90ee90;
  font-weight: 600;
  margin: 0;
}

.alert-box .dot {
  width: 10px;
  height: 10px;
  background-color: #00ff4f;
  border-radius: 50%;
  box-shadow: 0 0 6px #00ff4f;
  filter: blur(1px);
  animation: pulseDot 1.2s infinite ease-in-out;
  flex-shrink: 0;
}

@keyframes pulseDot {
  0% {
    opacity: 0.3;
    box-shadow: 0 0 4px #00ff4f;
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 10px 4px #00ff4f;
  }
  100% {
    opacity: 0.3;
    box-shadow: 0 0 4px #00ff4f;
  }
}

.alert-aviso {
  font-size: 15px;
  color: white;
  font-weight: 600;
  text-align: center;
  margin: 14px auto 0;
  max-width: 90%;
}

.insta-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
}
.insta-logo {
    height: 32px;
}
.insta-icons {
    position: relative;
}
.insta-icon.inbox {
    height: 24px;
}
.notif-dot {
    position: absolute;
    top: -4px;
    right: -4px;
    background-color: red;
    color: white;
    font-size: 12px;
    border-radius: 50%;
    padding: 2px 6px;
}

.tab-icon {
    height: 28px;
}

.step5-screen .profile-pic {
  width: 96px;
  height: 96px;
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  margin: 12px auto 8px;
  border: none;
  box-shadow: 0 0 0 2px #000;
  background-repeat: no-repeat;
}

.insta-fake-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
}

.logo-instagram {
  height: 35px;
}

.nav-icons img {
  height: 24px;
  margin-left: 10px;
}

.profile-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px 16px;
  font-family: 'Arial', sans-serif;
  color: #fff;
}

.profile-top {
  display: flex;
  align-items: center;
  gap: 30px;
  width: 100%;
  margin-bottom: 0px;
}
.profile-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#fullName {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1.0;
  text-align: left !important;
  width: 100%;
  padding-left: 2px;
}

.profile-metrics {
  display: flex;
  gap: 40px;
  flex: 1;
}

.metric {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.metric strong {
  font-size: 20px;
  font-weight: 600;
}

.metric span {
  font-size: 16px;
  color: #ccc;
}

.profile-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 2px;
  line-height: 1.0;
}

#fullName {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0; /* tirar espaço inferior */
  line-height: 1.0; /* mais compacto */
}

#bio {
  white-space: pre-line;
  font-size: 16px;
  color: #ccc;
  line-height: 1.2;
  width: 100%;
  padding-left: 2px;
}

.insta-tabs {
  display: flex;
  justify-content: space-around;
  margin-top: 0px;
  border-top: none;
  border-bottom: none;
  padding: 8px 0;
}

.insta-tabs img {
  height: 22px;
  transform: scale(1.5);
}

.posts-preview {
  display: flex;
  justify-content: space-between;
  gap: 2px;
  padding: 0 1px;
}

.post-thumb {
  position: relative; /* necessário para o ::after funcionar corretamente */
  width: 100%;
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  overflow: hidden; /* garante que o ::after não vaze */
  border-radius: 0 !important;
}

.post-thumb::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 45%; /* ajuste conforme desejar */
  background: linear-gradient(to top, rgba(0, 0, 0, 2.85), rgba(0, 0, 0, 0));
  z-index: 1;
  pointer-events: none;
}
.icon-inbox {
  transform: scale(1.35);
  width: auto;
  object-fit: contain;
  background-size: cover;
  padding: 2px;
}

@media (min-width: 768px) {
  .page-wrapper,
  .container,
  .result-container {
    max-width: 420px;
    margin: 0 auto;
  }
}
