/* ============================================================
   MOBILE FIXES — Guianeo UX/UI Audit 2026-06
   Carregado por último — sobrepõe regras legadas com segurança
   ============================================================ */

/* ── A1: Touch targets — hamburger (44×44px mínimo) ─────── */
.gnv-hamburger {
  padding: 11px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

/* ── A1: Touch target — botão fechar menu mobile (44×44px) ─ */
.gnv-mobile-nav__close {
  padding: 11px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── M2: Ícone de categoria — mínimo 44px em mobile ──────── */
@media (max-width: 480px) {
  .gnv-cat-chip__ico {
    width: 44px;
    height: 44px;
  }
}

/* ── M4: Newsletter — botão não encolhe em flex row ──────── */
.gnv-newsletter__form button,
.gnv-newsletter__form [type="submit"] {
  flex-shrink: 0;
}

/* ── B2: Footer bottom — centraliza ao quebrar linha ──────── */
@media (max-width: 600px) {
  .gnv-footer-bottom {
    justify-content: center;
    text-align: center;
  }
  .gnv-footer-bottom a,
  .gnv-footer-bottom span {
    text-align: center;
  }
}

/* ═══════════════════════════════════════════════════════════
   PARA ANUNCIANTES — redesign mobile-first
   ═══════════════════════════════════════════════════════════ */
.gnv-adv {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  padding: 56px 0;
  overflow: hidden;
  position: relative;
}
.gnv-adv::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(99,102,241,.15) 0%, transparent 55%);
  pointer-events: none;
}
.gnv-adv__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}
.gnv-adv__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: #93c5fd;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.gnv-adv__headline {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 10px;
  font-family: 'Poppins', sans-serif;
}
.gnv-adv__sub {
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  line-height: 1.65;
  margin: 0 0 22px;
}
.gnv-adv__benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 14px;
  margin-bottom: 22px;
}
.gnv-adv__benefit {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.82);
  font-size: .82rem;
  font-weight: 500;
}
.gnv-adv__benefit i {
  color: #4ade80;
  font-size: .72rem;
  flex-shrink: 0;
  width: 12px;
  text-align: center;
}
.gnv-adv__cta-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  min-height: 56px;
  background: #16a34a;
  color: #fff;
  border-radius: 12px;
  font-size: .95rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: background .15s, transform .1s, box-shadow .15s;
  box-shadow: 0 6px 20px rgba(22,163,74,.4);
  margin-bottom: 14px;
}
.gnv-adv__cta-primary:hover {
  background: #15803d;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(22,163,74,.45);
  opacity: 1;
}
.gnv-adv__cta-primary:active { transform: translateY(0); }
.gnv-adv__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: rgba(255,255,255,.38);
  font-size: .73rem;
  margin-bottom: 12px;
}
.gnv-adv__stats i { font-size: .7rem; }
.gnv-adv__stats-num {
  color: rgba(255,255,255,.65);
  font-weight: 700;
}
.gnv-adv__cta-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: rgba(255,255,255,.45);
  font-size: .82rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .15s;
}
.gnv-adv__cta-secondary:hover { color: rgba(255,255,255,.8); opacity: 1; }
/* Cards do painel direito (desktop) */
.gnv-adv__right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.gnv-adv__card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 18px 16px;
}
.gnv-adv__card--full { grid-column: 1 / -1; }
.gnv-adv__card--wa {
  background: rgba(37,211,102,.1);
  border-color: rgba(37,211,102,.2);
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 12px;
}
.gnv-adv__card-ico {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  margin-bottom: 10px;
  flex-shrink: 0;
}
.gnv-adv__card--wa .gnv-adv__card-ico { margin-bottom: 0; }
.gnv-adv__card-num {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 3px;
  font-family: 'Poppins', sans-serif;
}
.gnv-adv__card-label {
  font-size: .7rem;
  color: rgba(255,255,255,.5);
  line-height: 1.5;
}

/* Responsivo */
@media (max-width: 900px) {
  .gnv-adv__inner { grid-template-columns: 1fr; gap: 0; }
  .gnv-adv__right  { display: none; }
}
@media (max-width: 768px) {
  .gnv-adv { padding: 40px 0; }
  .gnv-adv__headline { font-size: 1.75rem; }
}
@media (max-width: 480px) {
  .gnv-adv { padding: 32px 0; }
  .gnv-adv__headline { font-size: 1.55rem; }
  .gnv-adv__sub { font-size: .85rem; }
  .gnv-adv__benefit { font-size: .8rem; }
  .gnv-adv__benefits { gap: 8px 10px; }
}
@media (max-width: 360px) {
  .gnv-adv__benefits { grid-template-columns: 1fr; }
  .gnv-adv__cta-primary { font-size: .88rem; }
}

/* ── B4: Hamburger — animação bars → X ───────────────────── */
.gnv-hamburger span {
  transition: transform 0.25s ease, opacity 0.2s ease, background 0.15s;
}
.gnv-hamburger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.gnv-hamburger.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.gnv-hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
