/* Home — Vitrine do Artesão (design refinado) */

    /* ── Hero banners oficiais ── */
    .hero-banner {
      position: relative;
      width: 100%;
      margin: 0;
      background: #f3f1ec;
      overflow: hidden;
    }

    .hero-banner-track {
      position: relative;
      width: 100%;
      aspect-ratio: 1920 / 600;
      background: #efece6;
    }

    .hero-banner-slide {
      position: absolute;
      inset: 0;
      display: block;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.55s ease, visibility 0.55s;
      z-index: 0;
    }

    .hero-banner-slide.is-active {
      opacity: 1;
      visibility: visible;
      z-index: 1;
    }

    .hero-banner-slide picture,
    .hero-banner-slide img {
      width: 100%;
      height: 100%;
      display: block;
    }

    .hero-banner-slide img {
      object-fit: contain;
      object-position: center;
      background: #efece6;
    }

    .hero-banner-nav {
      position: absolute;
      top: 50%;
      z-index: 3;
      transform: translateY(-50%);
      width: 42px;
      height: 42px;
      border: none;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.92);
      color: var(--ink);
      display: grid;
      place-items: center;
      cursor: pointer;
      box-shadow: 0 8px 22px rgba(26, 26, 24, 0.12);
      transition: background 0.2s, transform 0.2s;
    }

    .hero-banner-nav:hover {
      background: #fff;
      transform: translateY(-50%) scale(1.04);
    }

    .hero-banner-prev { left: 18px; }
    .hero-banner-next { right: 18px; }

    .hero-banner-dots {
      position: absolute;
      left: 50%;
      bottom: 14px;
      z-index: 3;
      transform: translateX(-50%);
      display: flex;
      gap: 8px;
    }

    .hero-banner-dot {
      width: 9px;
      height: 9px;
      border: none;
      border-radius: 50%;
      background: rgba(26, 26, 24, 0.28);
      cursor: pointer;
      padding: 0;
      transition: background 0.2s, transform 0.2s;
    }

    .hero-banner-dot.is-active {
      background: var(--crimson);
      transform: scale(1.15);
    }

    .btn-ghost {
      padding: 13px 22px;
      border-radius: 999px;
      border: 1.5px solid rgba(26, 26, 24, 0.16);
      background: rgba(255, 255, 255, 0.55);
      color: var(--ink);
      font-size: 0.875rem;
      font-weight: 700;
      font-family: var(--font-sans);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      transition: background 0.2s, border-color 0.2s, transform 0.15s;
    }

    .btn-ghost:hover {
      background: #fff;
      border-color: rgba(36, 58, 110, 0.35);
      transform: translateY(-1px);
    }

    .btn-outline {
      padding: 13px 24px;
      background: transparent;
      color: var(--white);
      border: 1.5px solid rgba(255,255,255,0.55);
      border-radius: 999px;
      font-size: 0.875rem;
      font-weight: 700;
      font-family: var(--font-sans);
      cursor: pointer;
      text-decoration: none;
      transition: all 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .btn-outline:hover {
      background: rgba(255,255,255,0.12);
      border-color: #fff;
    }

    /* Catbar: herda global.css (tema claro) */

    /* ── Trust bar ── */
    .trust-bar {
      background: var(--white);
      color: var(--ink);
      padding: 18px 5%;
      display: flex;
      justify-content: center;
      gap: 36px;
      flex-wrap: wrap;
      font-size: 0.8rem;
      font-weight: 600;
      margin: 0;
      border-bottom: 1px solid var(--line);
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 10px;
      color: #4a4a45;
    }

    .trust-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--navy);
      flex-shrink: 0;
    }

    .trust-dot.gold { background: var(--gold); }

    /* ── Faixa de atalhos ── */
    .quick-strip {
      padding: 22px 5% 8px;
      background:
        linear-gradient(180deg, rgba(36, 58, 110, 0.03), transparent 70%),
        var(--paper);
    }

    .quick-strip-track {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: minmax(210px, 1fr);
      gap: 14px;
      overflow-x: auto;
      padding-bottom: 14px;
      scroll-snap-type: x mandatory;
      scrollbar-width: thin;
    }

    .quick-card {
      scroll-snap-align: start;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 18px;
      padding: 18px 16px 16px;
      display: flex;
      flex-direction: column;
      min-height: 230px;
      transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    }

    .quick-card:hover {
      border-color: rgba(36, 58, 110, 0.18);
      transform: translateY(-2px);
      box-shadow: 0 12px 28px rgba(26, 26, 24, 0.06);
    }

    .quick-icon {
      width: 48px;
      height: 48px;
      color: var(--ink);
      margin-bottom: 14px;
    }

    .quick-icon svg {
      width: 100%;
      height: 100%;
      display: block;
    }

    .quick-card h3 {
      margin: 0 0 8px;
      font-size: 1rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      color: var(--ink);
      line-height: 1.25;
    }

    .quick-card p {
      margin: 0 0 16px;
      font-size: 0.82rem;
      line-height: 1.45;
      color: var(--text-muted);
      flex: 1;
    }

    .quick-btn {
      align-self: flex-start;
      appearance: none;
      border: none;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 34px;
      padding: 0 14px;
      border-radius: 999px;
      background: rgba(36, 58, 110, 0.08);
      color: var(--navy);
      font-family: var(--font-sans);
      font-size: 0.78rem;
      font-weight: 700;
      transition: background 0.2s, color 0.2s;
    }

    .quick-btn:hover {
      background: var(--navy);
      color: #fff;
    }

    /* ── Separador pincelada ── */
    .brush-divider {
      display: flex;
      align-items: center;
      gap: 0;
      margin: 0 5%;
      overflow: hidden;
    }

    .brush-divider::before {
      content: '';
      flex: 1;
      height: 3px;
      background: var(--orange);
      border-radius: 2px;
    }

    .brush-divider::after {
      content: '';
      width: 48px;
      height: 3px;
      background: var(--black);
      border-radius: 2px;
      margin-left: 6px;
    }

    /* ── Section shell ── */
    .section { padding: 72px 5%; }
    .section-gray {
      background:
        linear-gradient(180deg, rgba(36, 58, 110, 0.035), transparent 42%),
        #efede7;
    }

    .section-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 36px;
      gap: 16px;
    }

    .section-kicker {
      margin: 0 0 8px;
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--crimson);
    }

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(1.7rem, 2.6vw, 2.4rem);
      font-weight: 700;
      color: var(--ink);
      line-height: 1.12;
      letter-spacing: -0.02em;
    }

    .section-sub {
      font-size: 0.9rem;
      font-weight: 400;
      color: var(--text-muted);
      margin-top: 8px;
    }

    .link-all {
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--navy);
      text-decoration: none;
      white-space: nowrap;
      display: flex;
      align-items: center;
      gap: 4px;
      transition: gap 0.2s, color 0.2s;
    }
    .link-all:hover { gap: 8px; color: var(--crimson); }

    /* ── Categories browse (raiz, editorial) ── */
    .cat-browse {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
    }

    .cat-browse-item {
      display: flex;
      flex-direction: column;
      gap: 12px;
      text-decoration: none;
      color: inherit;
      min-width: 0;
    }

    .cat-browse-item.is-wide {
      grid-column: span 2;
    }

    .cat-browse-media {
      position: relative;
      aspect-ratio: 4 / 3;
      overflow: hidden;
      background: #ebe7df;
    }

    .cat-browse-item.is-wide .cat-browse-media {
      aspect-ratio: 16 / 9;
    }

    .cat-browse-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.45s ease;
    }

    .cat-browse-item:hover .cat-browse-media img {
      transform: scale(1.04);
    }

    .cat-browse-copy {
      display: flex;
      flex-direction: column;
      gap: 2px;
      padding: 0 2px;
    }

    .cat-browse-copy strong {
      font-size: 1.02rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      color: var(--ink);
    }

    .cat-browse-copy span {
      font-size: 0.8rem;
      font-weight: 500;
      color: var(--text-muted);
    }

    .cat-browse-item:hover .cat-browse-copy strong {
      color: var(--navy);
    }

    /* ── Product cards ── */
    .products-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .product-card {
      background: var(--white);
      border: 1px solid transparent;
      border-radius: var(--radius-lg);
      overflow: hidden;
      cursor: pointer;
      text-decoration: none;
      color: var(--ink);
      transition: transform 0.22s, box-shadow 0.22s;
      display: flex;
      flex-direction: column;
      box-shadow: 0 1px 0 rgba(26,26,24,0.04);
    }

    .product-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-soft);
    }

    .product-card:hover .product-wishlist { opacity: 1; }

    .product-img-wrap {
      position: relative;
      background: var(--gray-light);
      aspect-ratio: 4/3;
      overflow: hidden;
    }

    .product-img-wrap img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.35s;
    }

    .product-card:hover .product-img-wrap img { transform: scale(1.04); }

    .product-badge {
      position: absolute;
      top: 10px;
      left: 10px;
      padding: 3px 10px;
      border-radius: var(--radius-sm);
      font-size: 0.68rem;
      font-weight: 900;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .badge-new  { background: var(--crimson); color: var(--white); }
    .badge-sale { background: var(--navy);    color: var(--white); }
    .badge-best { background: var(--ink);     color: var(--gold); }

    .product-wishlist {
      position: absolute;
      top: 10px;
      right: 10px;
      width: 34px;
      height: 34px;
      background: rgba(255,255,255,0.92);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.2s;
      cursor: pointer;
      border: none;
    }

    .product-wishlist svg { color: var(--orange); }

    .product-body { padding: 14px 16px 16px; flex: 1; display: flex; flex-direction: column; }

    .product-cat {
      font-size: 0.7rem;
      font-weight: 700;
      color: var(--navy);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 4px;
    }

    .product-name {
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--ink);
      line-height: 1.4;
      margin-bottom: auto;
    }

    .seller-avatar-wrap {
      display: grid;
      place-items: center;
      background: linear-gradient(145deg, #eef1f8, #f7f4ef);
    }

    .product-placeholder {
      width: 72px;
      height: 72px;
      border-radius: 22px;
      display: grid;
      place-items: center;
      background: var(--navy);
      color: #fff;
      font-weight: 800;
      font-size: 1.1rem;
      letter-spacing: 0.04em;
    }

    /* ── Lojas em destaque ── */
    .sellers-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
    }

    .seller-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
      padding: 22px 16px 20px;
      text-decoration: none;
      color: inherit;
      background: rgba(255, 255, 255, 0.72);
      border: 1px solid transparent;
      transition: transform 0.2s, border-color 0.2s, background 0.2s;
    }

    .seller-card:hover {
      transform: translateY(-3px);
      border-color: rgba(36, 58, 110, 0.14);
      background: #fff;
    }

    .seller-logo-wrap {
      width: 88px;
      height: 88px;
      border-radius: 24px;
      overflow: hidden;
      background: #fff;
      display: grid;
      place-items: center;
      box-shadow: 0 8px 20px rgba(26, 26, 24, 0.06);
    }

    .seller-logo-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .seller-card-body {
      text-align: center;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .seller-card-body strong {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--ink);
      letter-spacing: -0.01em;
    }

    .seller-card-body span {
      font-size: 0.78rem;
      font-weight: 500;
      color: var(--text-muted);
    }

    .seller-page-head {
      align-items: center;
      gap: 18px;
    }

    .seller-page-logo {
      width: 72px;
      height: 72px;
      border-radius: 20px;
      flex-shrink: 0;
    }

    .product-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 12px;
      padding-top: 12px;
      border-top: 1px solid var(--gray-light);
    }

    .product-price {
      font-size: 1.15rem;
      font-weight: 900;
      color: var(--black);
    }

    .product-price-old {
      font-size: 0.8rem;
      font-weight: 400;
      color: #888;
      text-decoration: line-through;
      margin-left: 5px;
    }

    .product-rating {
      display: flex;
      align-items: center;
      gap: 4px;
      font-size: 0.75rem;
      color: var(--text-muted);
    }

    .product-seller {
      color: var(--text-muted);
      font-weight: 500;
      max-width: 90px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .stars { color: var(--gold); letter-spacing: -1px; }

    /* ── Banner mid ── */
    .banner-mid {
      margin: 0 5%;
      border-radius: var(--radius-lg);
      overflow: hidden;
      position: relative;
      background: var(--orange);
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 300px;
    }

    .banner-mid-text {
      padding: 52px 48px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 16px;
    }

    .banner-label {
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.75);
    }

    .banner-title {
      font-size: clamp(1.7rem, 3vw, 2.5rem);
      font-weight: 900;
      color: var(--white);
      line-height: 1.1;
    }

    .banner-desc {
      font-size: 0.9rem;
      font-weight: 400;
      color: rgba(255,255,255,0.8);
      line-height: 1.75;
      max-width: 340px;
    }

    .banner-cta {
      margin-top: 8px;
      padding: 12px 26px;
      background: var(--white);
      color: var(--orange);
      border-radius: var(--radius-sm);
      font-size: 0.875rem;
      font-weight: 900;
      font-family: var(--font-sans);
      border: none;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      width: fit-content;
      transition: background 0.2s, color 0.2s;
    }
    .banner-cta:hover { background: var(--black); color: var(--white); }

    .banner-mid-img {
      position: relative;
      overflow: hidden;
      min-height: 260px;
    }

    .banner-mid-img img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* ── Artisans ── */
    .artisans-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
    }

    .artisan-card {
      text-align: center;
      cursor: pointer;
      text-decoration: none;
      color: var(--black);
      background: var(--white);
      border: 1px solid var(--gray-light);
      border-radius: var(--radius-md);
      padding: 24px 16px;
      transition: all 0.2s;
      box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    }

    .artisan-card:hover {
      border-color: var(--orange);
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(211,60,59,0.1);
    }

    .artisan-avatar {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      overflow: hidden;
      background: var(--gray-light);
      margin: 0 auto 12px;
      border: 2.5px solid var(--gray-light);
      transition: border-color 0.2s;
    }

    .artisan-card:hover .artisan-avatar { border-color: var(--orange); }

    .artisan-avatar img { width: 100%; height: 100%; object-fit: cover; }

    .artisan-name {
      font-size: 0.875rem;
      font-weight: 900;
      margin-bottom: 4px;
    }

    .artisan-location {
      font-size: 0.75rem;
      font-weight: 400;
      color: #777;
      margin-bottom: 6px;
    }

    .artisan-sales {
      font-size: 0.72rem;
      font-weight: 500;
      color: var(--orange);
    }

    /* ── Secondary product grid ── */
    .products-grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    /* ── Features ── */
    .features-section {
      background: var(--white);
      border-top: 1px solid var(--gray-light);
      border-bottom: 1px solid var(--gray-light);
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      padding: 0 5%;
    }

    .feature-item {
      padding: 36px 28px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      border-right: 1px solid var(--gray-light);
    }

    .feature-item:last-child { border-right: none; }

    .feature-icon {
      width: 44px;
      height: 44px;
      background: var(--orange);
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
    }

    .feature-title {
      font-size: 0.875rem;
      font-weight: 900;
      color: var(--black);
    }

    .feature-desc {
      font-size: 0.8rem;
      font-weight: 400;
      color: #666;
      line-height: 1.65;
    }

    /* ── Tags filtro ── */
    .tag {
      display: inline-block;
      padding: 9px 16px;
      border: 1px solid var(--line);
      border-radius: 999px;
      font-size: 0.78rem;
      font-weight: 600;
      color: #555;
      background: var(--white);
      cursor: pointer;
      transition: all 0.2s;
      text-decoration: none;
    }
    .tag:hover, .tag.active {
      background: var(--navy);
      color: var(--white);
      border-color: var(--navy);
    }

    .tags-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }

    /* ── Newsletter ── */
    /* ── Newsletter ── */
    .newsletter {
      background: var(--black);
      padding: 72px 5%;
      position: relative;
      overflow: hidden;
    }

    .newsletter::before {
      content: '';
      position: absolute;
      top: -80px;
      right: -80px;
      width: 360px;
      height: 360px;
      background: var(--orange);
      opacity: 0.06;
      border-radius: 50%;
      pointer-events: none;
    }

    .newsletter::after {
      content: '';
      position: absolute;
      bottom: -100px;
      left: 5%;
      width: 260px;
      height: 260px;
      background: var(--brown);
      opacity: 0.08;
      border-radius: 50%;
      pointer-events: none;
    }

    .newsletter-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .newsletter-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(255,226,59,0.15);
      border: 1px solid rgba(255,226,59,0.35);
      color: var(--orange-light);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 5px 12px;
      border-radius: 100px;
      margin-bottom: 16px;
    }

    .newsletter-title {
      font-size: clamp(1.5rem, 2.8vw, 2.2rem);
      font-weight: 900;
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 12px;
      letter-spacing: -0.02em;
    }

    .newsletter-title span { color: var(--orange-light); }

    .newsletter-desc {
      font-size: 0.9rem;
      font-weight: 400;
      color: rgba(255,255,255,0.55);
      line-height: 1.7;
      margin-bottom: 0;
    }

    .newsletter-proof {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 20px;
    }

    .newsletter-avatars {
      display: flex;
    }

    .newsletter-avatars span {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: var(--orange);
      border: 2px solid var(--black);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.65rem;
      font-weight: 700;
      color: var(--white);
      margin-left: -8px;
    }

    .newsletter-avatars span:first-child { margin-left: 0; }

    .newsletter-proof-text {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.5);
    }

    .newsletter-proof-text strong {
      color: rgba(255,255,255,0.85);
      font-weight: 700;
    }

    .newsletter-form-wrap {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .newsletter-form {
      display: flex;
      gap: 0;
      border-radius: var(--radius-md);
      overflow: hidden;
      border: 1.5px solid rgba(255,255,255,0.12);
      background: rgba(255,255,255,0.05);
      transition: border-color 0.2s;
    }

    .newsletter-form:focus-within {
      border-color: var(--orange-light);
    }

    .newsletter-form input {
      flex: 1;
      height: 52px;
      padding: 0 20px;
      border: none;
      background: transparent;
      font-size: 0.875rem;
      font-family: var(--font-sans);
      font-weight: 400;
      outline: none;
      color: var(--white);
    }

    .newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }

    .newsletter-form button {
      height: 52px;
      padding: 0 28px;
      background: var(--orange);
      color: var(--white);
      border: none;
      font-size: 0.85rem;
      font-weight: 900;
      font-family: var(--font-sans);
      cursor: pointer;
      transition: background 0.2s;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .newsletter-form button:hover { background: var(--brown); }

    .newsletter-fine {
      font-size: 0.75rem;
      color: rgba(255,255,255,0.3);
      display: flex;
      align-items: center;
      gap: 6px;
    }

    /* ── ≤1200px: grid de 4 produtos vira 3 ── */
    @media (max-width: 1200px) {
      .products-grid  { grid-template-columns: repeat(3, 1fr); }
      .artisans-grid  { grid-template-columns: repeat(4, 1fr); }
    }

    /* ── ≤1024px: tablet landscape ── */
    @media (max-width: 1024px) {
      .hero-banner-nav { width: 36px; height: 36px; }
      .hero-banner-prev { left: 10px; }
      .hero-banner-next { right: 10px; }

      /* Grids de produtos e artesãos */
      .products-grid         { grid-template-columns: repeat(2, 1fr); }
      .products-grid-3       { grid-template-columns: repeat(2, 1fr); }
      .artisans-grid         { grid-template-columns: repeat(3, 1fr); }
      .sellers-grid          { grid-template-columns: repeat(3, minmax(0, 1fr)); }

      /* Categorias */
      .cat-browse { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .cat-browse-item.is-wide { grid-column: span 2; }

      /* Banner mid: coluna única, esconde foto */
      .banner-mid            { grid-template-columns: 1fr; margin: 0 4%; }
      .banner-mid-img        { display: none; }
      .banner-mid-text       { padding: 40px 32px; }

      /* Banner campanha */
      .banner-campanha-grid  { grid-template-columns: 1fr; }

      /* Como funciona: 2×2 sem setas */
      .como-grid             { grid-template-columns: repeat(2, 1fr); gap: 16px; }
      .como-seta             { display: none; }

      /* Features: 2×2 */
      .features-grid         { grid-template-columns: repeat(2, 1fr); }
      .feature-item          { border-right: none; border-bottom: 1px solid var(--gray-light); }
      .feature-item:nth-child(odd) { border-right: 1px solid var(--gray-light); }
      .feature-item:last-child { border-bottom: none; }

      /* Depoimentos: 2 colunas */
      .depo-grid             { grid-template-columns: repeat(2, 1fr); }

      /* Mega menu mais estreito */
      .mega-all-grid         { grid-template-columns: repeat(2, 1fr); }
      .mega-cats             { grid-template-columns: repeat(2, 1fr); }
    }

    /* ── ≤768px: tablet portrait / mobile grande ── */
    @media (max-width: 768px) {
      .section { padding: 40px 4%; }

      .hero-banner-track { aspect-ratio: 600 / 840; }
      .hero-banner-nav { display: none; }
      .hero-banner-dots { bottom: 12px; }
      .quick-strip { padding: 18px 4% 4px; }
      .quick-strip-track { grid-auto-columns: minmax(200px, 78vw); }
      .trust-bar     { gap: 16px; justify-content: flex-start; }

      /* Produtos */
      .products-grid   { grid-template-columns: repeat(2, 1fr); gap: 12px; }
      .products-grid-3 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
      .artisans-grid   { grid-template-columns: repeat(2, 1fr); }
      .sellers-grid    { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }

      /* Categorias */
      .cat-browse { grid-template-columns: 1fr 1fr; gap: 14px; }
      .cat-browse-item.is-wide { grid-column: span 2; }

      /* Banners campanha: sem foto */
      .banner-camp        { grid-template-columns: 1fr; }
      .banner-camp-img    { display: none; }
      .banner-camp-body   { padding: 24px 20px; }

      /* Depoimentos: coluna única */
      .depo-grid { grid-template-columns: 1fr; }

      /* Features: coluna única */
      .features-grid { grid-template-columns: 1fr; }
      .feature-item  { border-right: none; }
      .feature-item:nth-child(odd) { border-right: none; }

      /* Como funciona: coluna única */
      .como-grid { grid-template-columns: 1fr; }

      /* Trust bar */
      .trust-bar { gap: 16px; justify-content: flex-start; }
    }

    /* ── ≤480px: mobile pequeno ── */
    @media (max-width: 480px) {
      .products-grid   { grid-template-columns: repeat(2, 1fr); gap: 8px; }
      .products-grid-3 { grid-template-columns: 1fr; }
      .artisans-grid   { grid-template-columns: repeat(2, 1fr); gap: 8px; }
      .cat-browse { grid-template-columns: 1fr; }
      .cat-browse-item.is-wide { grid-column: auto; }
      .cat-browse-item.is-wide .cat-browse-media { aspect-ratio: 4 / 3; }

      .section-header  { flex-direction: column; align-items: flex-start; }
    }
  