/* ==========================================================
   FIXES.CSS — correcoes de layout + movimento (carregar por ultimo)
   JRD Creators  |  preto #000  branco #fff  neon #D8FF57
   ========================================================== */

/* ---- Cards de servico clicaveis ---- */
.service-card.is-clickable { cursor: pointer; }
.service-card.is-clickable:focus-visible { outline: 2px solid var(--neon); outline-offset: 3px; }

/* ---- ESCOLHA RAPIDA ---- */
.escolha-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 8px;
}
.escolha-card {
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
  text-align: left;
  padding: 22px 20px;
  background: linear-gradient(160deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  color: #fff; cursor: pointer;
  font-family: var(--font, 'Open Sans', sans-serif);
  transition: transform .35s cubic-bezier(.16,1,.3,1), border-color .35s ease, box-shadow .35s ease, background .35s ease;
}
.escolha-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216,255,87,.45);
  background: linear-gradient(160deg, rgba(216,255,87,.08), rgba(255,255,255,.02));
  box-shadow: 0 0 36px rgba(216,255,87,.14), 0 22px 50px rgba(0,0,0,.5);
}
.escolha-card:focus-visible { outline: 2px solid var(--neon); outline-offset: 3px; }
.escolha-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(216,255,87,.12); border: 1px solid rgba(216,255,87,.3);
  color: var(--neon);
}
.escolha-title { font-size: 1rem; font-weight: 700; line-height: 1.2; }
.escolha-desc  { font-size: .8rem; color: #B8B8D1; }

@media (max-width: 900px) { .escolha-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .escolha-grid { grid-template-columns: 1fr; } }

/* ---- PORTFOLIO: bento grid ---- */
.portfolio-bento-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-flow: dense;
  gap: 16px;
}
.portfolio-bento-grid .pf-item { grid-column: span 2; aspect-ratio: 4/3 !important; }
.portfolio-bento-grid .pf-lg { grid-column: span 4 !important; aspect-ratio: 16/10 !important; }
.portfolio-bento-grid .pf-md { grid-column: span 3 !important; aspect-ratio: 16/10 !important; }
.portfolio-bento-grid .pf-sm { grid-column: span 2 !important; aspect-ratio: 4/3 !important; }
.pf-hidden { display: none !important; }

@media (max-width: 900px) {
  .portfolio-bento-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-bento-grid .pf-item,
  .portfolio-bento-grid .pf-lg,
  .portfolio-bento-grid .pf-md,
  .portfolio-bento-grid .pf-sm { grid-column: span 1 !important; aspect-ratio: 4/3 !important; }
}
@media (max-width: 600px) { .portfolio-bento-grid { grid-template-columns: 1fr; } }

/* ---- PROVAS: grade 3 / 2 / 1, alinhada ---- */
.provas-grid { grid-template-columns: repeat(3, 1fr) !important; align-items: stretch; }
.provas-grid .prova-card { grid-column: auto !important; height: 100%; }
.prova-card-destaque { border-color: rgba(216,255,87,.4) !important; box-shadow: 0 0 28px rgba(216,255,87,.08); }
@media (max-width: 900px) { .provas-grid { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 600px) { .provas-grid { grid-template-columns: 1fr !important; } }

/* ---- MATERIAIS: 3 por linha / 2 / 1 ---- */
.materials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
  align-items: stretch;
}
.materials-grid .material-card { height: 100%; }
@media (max-width: 900px) { .materials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .materials-grid { grid-template-columns: 1fr; } }

/* ---- CTA intermediario ---- */
.cta-band { padding: 56px 0; position: relative; }
.cta-band-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
  padding: 30px 34px;
  background: linear-gradient(135deg, rgba(216,255,87,.08), rgba(255,255,255,.02));
  border: 1px solid rgba(216,255,87,.25);
  border-radius: 20px;
}
.cta-band-text h3 { font-size: 1.4rem; margin-bottom: 6px; }
.cta-band-text p  { font-size: .95rem; color: #B8B8D1; margin: 0; }
@media (max-width: 700px) {
  .cta-band-inner { flex-direction: column; align-items: flex-start; text-align: left; }
  .cta-band-inner .btn { width: 100%; justify-content: center; }
}

/* ---- CAMPANHA: selo "Mais Completo" sem cortar ---- */
.campanha-ofertas { overflow: visible; padding-top: 14px; }
.oferta-card { overflow: visible; }
.oferta-card.destaque { position: relative; overflow: visible; }
.oferta-popular {
  position: absolute !important;
  top: -14px; left: 50%; transform: translateX(-50%);
  z-index: 5; white-space: nowrap;
}
@media (max-width: 600px) { .oferta-popular { top: -12px; } }

/* ==========================================================
   MOVIMENTO E EXPERIENCIA (inspiracao: fluidez, encaixe)
   ========================================================== */

/* Entrada mais suave e elegante de cards (curva tipo "ease premium") */
.reveal, .fade-in {
  transition-timing-function: cubic-bezier(.22,1,.36,1) !important;
  transition-duration: .8s !important;
}

/* Profundidade no hover dos cards principais */
.pf-item, .material-card, .prova-card, .service-card, .por-que-card, .oferta-card {
  transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s ease, border-color .35s ease;
  will-change: transform;
}
.pf-item:hover { transform: translateY(-6px) scale(1.012); }
.material-card:hover, .prova-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216,255,87,.3) !important;
  box-shadow: 0 0 30px rgba(216,255,87,.1), 0 22px 48px rgba(0,0,0,.5);
}

/* Entrada suave dos cards do portfolio (termina sempre visivel) */
@keyframes pfIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.portfolio-bento-grid .pf-item { animation: pfIn .6s cubic-bezier(.22,1,.36,1) both; }
.portfolio-bento-grid .pf-item:nth-child(2) { animation-delay: .06s; }
.portfolio-bento-grid .pf-item:nth-child(3) { animation-delay: .12s; }
.portfolio-bento-grid .pf-item:nth-child(4) { animation-delay: .18s; }
.portfolio-bento-grid .pf-item:nth-child(5) { animation-delay: .24s; }
.portfolio-bento-grid .pf-item:nth-child(n+6) { animation-delay: .3s; }

/* Suaviza o scroll geral */
html { scroll-behavior: smooth; }

/* ---- Reduz decoracao para nao poluir ---- */
#particles-canvas { opacity: .45; }
.hero-orb { opacity: .7; }

/* No mobile, remove o que distrai e pesa */
@media (max-width: 768px) {
  #particles-canvas { display: none !important; }
  .hero-orb { display: none !important; }
  .pf-item:hover, .material-card:hover, .prova-card:hover,
  .service-card.is-clickable:hover, .escolha-card:hover { transform: none; }
}

/* Respeita usuarios que preferem menos movimento */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
  #particles-canvas { display: none !important; }
}

/* ==========================================================
   RODADA 3 — imagens reais no portfolio + materiais
   ========================================================== */

/* ---- Prints dentro dos cards do portfolio ---- */
.pf-shot { position: absolute; inset: 0; overflow: hidden; background: #0a0a0a; z-index: 1; }

/* Sites: print longo que "rola como um site" ao passar o mouse */
.pf-shot-scroll img.pf-shot-img {
  width: 100%; height: auto; display: block;
  transform: translateY(0);
  transition: transform 3.4s cubic-bezier(.33,0,.2,1);
  will-change: transform;
}

/* Apresentacoes e identidades: slide inteiro, sem cortar */
.pf-shot-contain { display: flex; align-items: center; justify-content: center; }
.pf-shot-contain img {
  width: 100%; height: 100%; object-fit: contain; display: block;
  transition: transform .6s cubic-bezier(.22,1,.36,1);
}
.pf-item:hover .pf-shot-contain img { transform: scale(1.03); }

/* Overlay/links sempre acima do print */
.pf-overlay { z-index: 2; }
.pf-link-icon { z-index: 3; }

/* No mobile nao ha hover: mostra o topo do print (cover) para nao ficar gigante */
@media (max-width: 768px) {
  .pf-shot-scroll img.pf-shot-img { height: 100%; object-fit: cover; object-position: top; }
}

/* ---- Materiais: capa + corpo ---- */
.material-card { display: flex; flex-direction: column; overflow: hidden; padding: 0 !important; }
.material-cover { width: 100%; aspect-ratio: 1200 / 912; overflow: hidden; background: #0a0a0a; }
.material-cover img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s cubic-bezier(.22,1,.36,1);
}
.material-card:hover .material-cover img { transform: scale(1.04); }
.material-body { padding: 18px 20px 22px; display: flex; flex-direction: column; flex: 1; gap: 8px; }
.material-body h3 { font-size: 1rem; }
.material-body p  { font-size: .875rem; flex: 1; }
.material-body .btn { margin-top: 6px; align-self: flex-start; }

/* ---- Banner dos materiais ---- */
.materials-banner {
  width: 100%; border-radius: 18px; overflow: hidden; margin: 0 0 28px;
  border: 1px solid rgba(255,255,255,.08);
}
.materials-banner img { width: 100%; height: auto; display: block; }
@media (max-width: 600px) { .materials-banner { margin-bottom: 20px; } }

/* ---- Frase de consentimento sob os formularios ---- */
.form-consent { font-size: .72rem; color: #8A8AA3; margin-top: 12px; line-height: 1.5; text-align: center; }
.form-consent a { color: var(--neon); text-decoration: underline; }

/* ==========================================================
   RODADA 4 — Sobre (imagem real) + portfolio em grupos alternados
   ========================================================== */

/* ---- Sobre: imagem real preenche o card ---- */
.sobre-img-wrap { overflow: hidden; border-radius: 22px; }
.sobre-img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 22px; }

/* ---- Portfolio: paineis por aba ---- */
.portfolio-panels { margin-top: 8px; }
.pf-panel { display: none; }
.pf-panel.active { display: block; }

/* ---- Grupo: 1 grande + 2 pequenos empilhados, alternando lado ---- */
.portfolio-group {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
  align-items: stretch;
}
.portfolio-group.reverse { grid-template-columns: 1fr 2fr; }
.portfolio-group.reverse > .pf-card.large { order: 2; }
.portfolio-group.reverse > .portfolio-stack { order: 1; }
.portfolio-stack { display: flex; flex-direction: column; gap: 16px; }

/* Cards */
.pf-card { position: relative; overflow: hidden; border-radius: 16px; background: #0a0a0a; border: 1px solid rgba(255,255,255,.06); }
.pf-card.small { aspect-ratio: 16/10; }
.pf-card.large { aspect-ratio: 16/10; }
@media (min-width: 769px) {
  .portfolio-group > .pf-card.large { aspect-ratio: auto; height: 100%; }
}

/* CTA dentro do fluxo do portfolio (largura total, integrado) */
.portfolio-group-cta { grid-template-columns: 1fr; margin: 4px 0 20px; }
.portfolio-group-cta .pf-cta-card {
  aspect-ratio: auto;
  display: flex; align-items: center; justify-content: center;
  padding: 30px 24px; text-align: center;
  background: linear-gradient(135deg, rgba(216,255,87,.07), rgba(255,255,255,.02));
  border: 1px solid rgba(216,255,87,.25);
}
.portfolio-group-cta .pf-cta-inner { display: flex; flex-direction: column; align-items: center; gap: 8px; max-width: 520px; }
.portfolio-group-cta .pf-cta-icon { color: var(--neon); margin-bottom: 4px; }
.portfolio-group-cta h4 { font-size: 1.15rem; }
.portfolio-group-cta p { font-size: .9rem; color: #B8B8D1; }

/* ---- Refino do "scroll como site" (mais devagar e elegante) ---- */
.pf-shot-scroll img.pf-shot-img { transition: transform 4.6s cubic-bezier(.33,0,.22,1) !important; }

/* ---- Overlay escuro leve para padronizar leitura sobre prints claros ---- */
.pf-card .pf-shot::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,0) 35%, rgba(0,0,0,.45) 100%);
  z-index: 2;
}

/* ---- Entrada elegante por grupo (com leve delay, sensacao de encaixe) ---- */
@keyframes groupIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
.pf-panel.active > .portfolio-group { animation: groupIn .7s cubic-bezier(.22,1,.36,1) both; }
.pf-panel.active > .portfolio-group:nth-child(1) { animation-delay: .04s; }
.pf-panel.active > .portfolio-group:nth-child(2) { animation-delay: .12s; }
.pf-panel.active > .portfolio-group:nth-child(3) { animation-delay: .20s; }
.pf-panel.active > .portfolio-group:nth-child(4) { animation-delay: .28s; }
.pf-panel.active > .portfolio-group:nth-child(n+5) { animation-delay: .34s; }

/* ---- Tablet ---- */
@media (max-width: 1024px) and (min-width: 769px) {
  .portfolio-group, .portfolio-group.reverse { grid-template-columns: 1.6fr 1fr; }
}

/* ---- Celular: tudo em 1 coluna, sem cortes ruins ---- */
@media (max-width: 768px) {
  .portfolio-group, .portfolio-group.reverse { grid-template-columns: 1fr; }
  .portfolio-group.reverse > .pf-card.large,
  .portfolio-group.reverse > .portfolio-stack { order: 0; }
  .pf-card.large { aspect-ratio: 16/10; height: auto; }
  .pf-shot-scroll img.pf-shot-img { height: 100%; object-fit: cover; object-position: top; }
  .pf-panel.active > .portfolio-group { animation-duration: .5s; }
}

/* ==========================================================
   RODADA 5 — preview da MAB no popup + portfolio mais lento/premium
   ========================================================== */

/* ---- Preview do site da MAB dentro do popup ---- */
.popup-preview { margin: 4px 0 16px; }
.popup-preview-card {
  position: relative; border-radius: 14px; overflow: hidden;
  height: 150px; background: #0a0a0a;
  border: 1px solid rgba(216,255,87,.25);
  box-shadow: 0 14px 34px rgba(0,0,0,.5), 0 0 26px rgba(216,255,87,.08);
}
.popup-preview-card::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,.45) 100%);
}
.popup-preview-image { position: absolute; inset: 0; overflow: hidden; }
.popup-preview-image img {
  width: 100%; height: auto; display: block;
  transform: translateY(0);
  animation: popupShot 16s ease-in-out infinite alternate;
}
@keyframes popupShot { from { transform: translateY(0); } to { transform: translateY(calc(-100% + 150px)); } }
.popup-preview-card:hover .popup-preview-image img { animation-play-state: paused; }
.popup-preview-caption { display: block; text-align: center; font-size: .72rem; color: #8A8AA3; margin-top: 8px; }
@media (max-width: 600px) { .popup-preview-card { height: 120px; } @keyframes popupShot { from { transform: translateY(0); } to { transform: translateY(calc(-100% + 120px)); } } }
@media (prefers-reduced-motion: reduce) { .popup-preview-image img { animation: none !important; } }

/* ---- Portfolio: movimento mais lento e premium ---- */
/* "scroll como site" mais devagar (era 4.6s) */
.pf-shot-scroll img.pf-shot-img { transition: transform 6s cubic-bezier(.16,1,.3,1) !important; }
.pf-shot-contain img { transition: transform .9s cubic-bezier(.16,1,.3,1) !important; }

/* entrada dos grupos: mais lenta (900-1400ms) + delay maior entre cards */
.pf-panel.active > .portfolio-group { animation: groupIn 1.15s cubic-bezier(.16,1,.3,1) both !important; }
.pf-panel.active > .portfolio-group:nth-child(1) { animation-delay: .06s !important; }
.pf-panel.active > .portfolio-group:nth-child(2) { animation-delay: .2s !important; }
.pf-panel.active > .portfolio-group:nth-child(3) { animation-delay: .34s !important; }
.pf-panel.active > .portfolio-group:nth-child(4) { animation-delay: .48s !important; }
.pf-panel.active > .portfolio-group:nth-child(n+5) { animation-delay: .6s !important; }

@media (max-width: 768px) {
  .pf-panel.active > .portfolio-group { animation-duration: .6s !important; }
  .pf-shot-scroll img.pf-shot-img { transition: transform 1s ease !important; }
}

/* ==========================================================
   RODADA 6 — telas grandes (TV) + guarda de overflow
   ========================================================== */
/* overflow-x: clip nao cria scroll-container (header sticky continua funcionando) */
html, body { overflow-x: clip; max-width: 100%; }
img { max-width: 100%; }

/* Telas grandes / TV: aproveita melhor a largura sem esticar demais */
@media (min-width: 1700px) {
  .container { max-width: 1360px; }
  html { font-size: 17px; }
}
@media (min-width: 2200px) {
  .container { max-width: 1520px; }
  html { font-size: 18px; }
}

/* ==========================================================
   RODADA 7 — selects/inputs escuros (corrige fundo branco)
   ========================================================== */
.jrd-form select,
.jrd-form input,
.jrd-form textarea {
  background-color: #0d0d16 !important;
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,.14);
  -webkit-appearance: none; appearance: none;
}
/* seta do select (custom, ja que removemos a nativa) */
.jrd-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D8FF57' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  background-size: 16px !important;
  padding-right: 40px !important;
}
/* itens da lista aberta (corrige o fundo branco do print) */
.jrd-form select option {
  background-color: #0d0d16 !important;
  color: #ffffff !important;
}
.jrd-form input::placeholder, .jrd-form textarea::placeholder { color: #8A8AA3 !important; }
.jrd-form select:focus, .jrd-form input:focus, .jrd-form textarea:focus {
  outline: none; border-color: rgba(216,255,87,.5);
  background-color: #0d0d16 !important;
}

/* ==========================================================
   RODADA 8 — popup nao cortar (rolagem interna + altura limitada)
   ========================================================== */
.popup-overlay { align-items: flex-start; overflow-y: auto; padding: 24px 16px; }
.popup-box { max-height: 92vh; overflow-y: auto; margin: auto; }
@media (max-height: 800px) {
  .popup-preview-card { height: 120px; }
  @keyframes popupShot { from { transform: translateY(0); } to { transform: translateY(calc(-100% + 120px)); } }
}
@media (max-height: 680px) {
  .popup-preview { display: none; } /* em telas bem baixas, prioriza oferta e botoes */
}

/* ==========================================================
   RODADA 9 — popup compacto no celular + barra de rolagem
   ========================================================== */
/* Popup: padding base menor para nao "tomar a tela toda" */
.popup-box { padding: 36px; }
@media (max-width: 600px) {
  .popup-overlay { padding: 14px 12px; }
  .popup-box { padding: 24px 18px; border-radius: 18px; max-height: 90vh; }
  .popup-title { font-size: 1.2rem; line-height: 1.25; }
  .popup-sub { font-size: .85rem; }
  .popup-preview-card { height: 104px; }
  .popup-preview-caption { font-size: .68rem; }
  .popup-offer { padding: 10px 12px; }
  .popup-offer-price { font-size: 1.05rem; }
  .popup-note { font-size: .68rem; }
  .popup-actions .btn { padding: 12px 16px; }
}
@media (max-width: 380px) {
  .popup-box { padding: 20px 14px; }
  .popup-preview { display: none; } /* telas muito pequenas: foca oferta + botoes */
}

/* ---- Barra de rolagem personalizada (toda a pagina) ---- */
html { scrollbar-width: thin; scrollbar-color: #2a2a3a #07070b; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #07070b; }
::-webkit-scrollbar-thumb {
  background: #2a2a3a; border-radius: 8px; border: 2px solid #07070b;
}
::-webkit-scrollbar-thumb:hover { background: #D8FF57; }

/* ==========================================================
   RODADA 10 — correcoes de mobile (overflow, hero stats, popup)
   ========================================================== */

/* 1) Numeros do hero: somem no celular, aparecem nas telas maiores */
@media (max-width: 768px) {
  .hero-stats { display: none !important; }
}

/* 2) ESQUADRIAS: corrige texto cortado (overflow de grid no mobile) */
.esquadrias-inner { min-width: 0; }
.esquadrias-inner > * { min-width: 0; max-width: 100%; }
.esquadrias-content, .esquadrias-services, .esquadrias-service,
.esquadrias-service > div, .esquadrias-notice,
.roi-wrap, .roi-results, .roi-range { min-width: 0; max-width: 100%; }
.esquadrias-content h2, .esquadrias-service-desc { overflow-wrap: anywhere; }
@media (max-width: 1100px) {
  .esquadrias-inner { grid-template-columns: 1fr !important; }
}

/* 3) TRAFEGO PAGO e SOCIAL MEDIA: grids inline viram 1 coluna no mobile */
@media (max-width: 900px) {
  #trafego-pago .container > div,
  #social-media-esq .container > div {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
}
#trafego-pago .container, #social-media-esq .container { min-width: 0; }
#trafego-pago .container *, #social-media-esq .container * { max-width: 100%; }
.traffic-charts, .chart-card, .line-chart, .phone-wrap, .phone-frame { max-width: 100%; }

/* 4) Padding padrao dos textos no mobile (Sobre e demais secoes) */
@media (max-width: 600px) {
  .container { padding: 0 20px; }
}

/* 5) POPUP ainda menor no celular */
@media (max-width: 600px) {
  .popup-preview { display: none; }            /* tira a imagem para encurtar */
  .popup-box { padding: 22px 16px; max-height: 88vh; }
  .popup-title { font-size: 1.15rem; margin-bottom: 6px; }
  .popup-sub { font-size: .82rem; margin-bottom: 12px; }
  .popup-tag { font-size: .68rem; }
  .popup-offers { gap: 8px; margin-bottom: 14px; }
  .popup-offer { padding: 9px 12px; }
  .popup-offer-label { font-size: .78rem; }
  .popup-offer-price { font-size: 1rem; }
  .popup-actions { gap: 8px; }
  .popup-actions .btn { padding: 12px 14px; font-size: .9rem; }
  .popup-note { font-size: .66rem; margin-top: 10px; }
}

/* ==========================================================
   RODADA 11 — popup PC compacto + esquadrias/secoes sem overflow
   ========================================================== */

/* Popup mais compacto em TODAS as telas (inclui PC) */
.popup-box { padding: 28px 30px; }
.popup-title { font-size: 1.4rem; line-height: 1.2; }
.popup-sub { margin-bottom: 12px; }
.popup-preview { margin: 2px 0 12px; }
.popup-preview-card { height: 128px; }
.popup-offers { margin-bottom: 14px; }
@keyframes popupShot { from { transform: translateY(0); } to { transform: translateY(calc(-100% + 128px)); } }

/* ESQUADRIAS: vira bloco no mobile -> acaba o corte de texto na direita */
@media (max-width: 1100px) {
  .esquadrias-inner { display: block !important; }
  .esquadrias-content { width: 100%; }
  .esquadrias-side { margin-top: 26px; width: 100%; }
}

/* TRAFEGO PAGO e SOCIAL MEDIA: viram bloco no mobile (sem overflow) */
@media (max-width: 900px) {
  #trafego-pago .container > div,
  #social-media-esq .container > div { display: block !important; }
  #trafego-pago .container > div > div + div,
  #social-media-esq .container > div > div + div { margin-top: 32px; }
}
