/* ── RESPONSIVO ── */

/* Tablet */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: .75rem 1.5rem 1rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    width: 100%;
    padding: .7rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
  }

  .nav-links a:last-child { border-bottom: none; }

  .nav-cta {
    margin-top: .5rem;
    border-radius: var(--radius-pill) !important;
  }

  #navbar { position: relative; }

  .invest-grid {
    grid-template-columns: 1fr;
  }

  .compare-cell {
    padding: 10px 12px;
    font-size: 12px;
  }
}

/* Mobile */
@media (max-width: 580px) {
  :root { --section-pad: 3rem 1.25rem; }

  .hero { padding: 3.5rem 1.25rem 3rem; }

  .hero h1 { font-size: 1.85rem; }

  .hero p { font-size: 15px; }

  .hero-actions { flex-direction: column; align-items: center; }

  .hero-actions .btn { width: 100%; max-width: 320px; text-align: center; }

  .stats-inner { gap: .75rem; }

  .stat-num { font-size: 20px; }

  .products-grid { grid-template-columns: 1fr; }

  .product-price-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-buy, .btn-see {
    width: 100%;
    text-align: center;
  }

  .mockup-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  }

  .audience-grid {
    grid-template-columns: 1fr 1fr;
  }

  .compare-row {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .savings-badge { font-size: 15px; }
  .savings-badge span { font-size: 22px; }
}

/* Mobile muito pequeno */
@media (max-width: 360px) {
  .audience-grid { grid-template-columns: 1fr; }

  .compare-row { grid-template-columns: 1fr; }
  .compare-cell { border-bottom: 1px solid rgba(255,255,255,.05); }
  .compare-header .compare-cell { display: none; }
  .compare-cell:first-child { font-weight: 600; color: rgba(255,255,255,.5); font-size: 11px; }
}

/* ── GALERIA mobile ── */
@media (max-width: 580px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .gallery-img-wrap img {
    max-height: 360px;
    object-fit: contain;
  }
}
