 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg: #F0F0F0;
      --white: #FFFFFF;
      --border: rgba(0,0,0,0.08);
      --border-strong: rgba(0,0,0,0.15);
      --text: #111111;
      --text-secondary: #444444;
      --text-muted: #777777;
      --text-faint: #BBBBBB;

      /* Paleta amarelo/preto/cinza */
      --yellow: #F5C800;
      --yellow-dark: #d4aa00;
      --gray-ui: #555555;
      --gray-ui-dark: #333333;
      --accent: #1A9E5C;
      --accent-dark: #157a47;

      --card-shadow: 0 1px 2px rgba(0,0,0,0.05), 0 2px 8px rgba(0,0,0,0.04);
      --card-shadow-hover: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
      --radius: 14px;
      --radius-sm: 10px;
      --radius-xs: 8px;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background: var(--bg);
      color: var(--text);
      min-height: 100vh;
    }

    /* ─── HEADER ─── */
    .header {
      background: rgba(255,255,255,0.95);
      border-bottom: 3px solid var(--yellow);
      padding: 14px 24px;
      position: sticky;
      top: 0;
      z-index: 100;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }
    
    .header-container {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo-wrap { display: flex; align-items: center; }

    .logo-img {
      height: 44px;
      width: auto;
      display: block;
      object-fit: contain;
    }

    /* ─── SIDEBAR & HAMBURGER MENU ─── */
    .hamburger-btn {
      background: none;
      border: none;
      cursor: pointer;
      color: var(--text);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 8px;
      border-radius: var(--radius-xs);
      transition: background 0.2s;
    }
    .hamburger-btn:hover { background: var(--gray-ui); color: var(--white); }
    .hamburger-btn svg { width: 28px; height: 28px; }

    .menu-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.5);
      z-index: 1000;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
      backdrop-filter: blur(3px);
      -webkit-backdrop-filter: blur(3px);
    }
    .menu-overlay.open {
      opacity: 1;
      visibility: visible;
    }

    .sidebar-menu {
      position: fixed;
      top: 0;
      right: -320px;
      width: 320px;
      height: 100vh;
      background: var(--white);
      z-index: 1001;
      box-shadow: -4px 0 15px rgba(0,0,0,0.1);
      transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      display: flex;
      flex-direction: column;
    }
    .sidebar-menu.open {
      right: 0;
    }

    .sidebar-header {
      padding: 20px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid var(--border);
    }
    
    .sidebar-logo {
      font-size: 18px;
      font-weight: 800;
      color: var(--text);
    }

    .close-btn {
      background: none;
      border: none;
      cursor: pointer;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 8px;
      border-radius: var(--radius-xs);
      transition: background 0.2s, color 0.2s;
      margin-right: -8px;
    }
    .close-btn:hover { background: var(--bg); color: var(--text); }
    .close-btn svg { width: 24px; height: 24px; }

    .sidebar-nav {
      padding: 20px 0;
      overflow-y: auto;
      flex: 1;
    }

    .nav-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .nav-list li {
      margin: 0;
      padding: 0;
    }
    .nav-list a {
      display: block;
      padding: 14px 24px;
      font-size: 15px;
      font-weight: 600;
      color: var(--text);
      text-decoration: none;
      border-bottom: 1px solid var(--border);
      transition: background 0.2s, padding-left 0.2s;
    }
    .nav-list a:hover {
      background: var(--bg);
      padding-left: 28px;
      color: var(--accent);
    }
    
    @media (max-width: 400px) {
      .sidebar-menu { width: 280px; right: -280px; }
    }

    .footer-logo-img {
      height: 48px;
      width: auto;
      display: block;
      object-fit: contain;
      margin-bottom: 4px;
    }

    /* ─── CONTAINER ─── */
    .container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 28px 16px 60px;
    }

    /* ─── CONTROLS ─── */
    .controls-wrap {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 24px;
    }

    .controls-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .section-title {
      font-size: 20px;
      font-weight: 800;
      color: var(--text);
      letter-spacing: -0.3px;
    }

    .results-info {
      font-size: 11px;
      color: var(--text-faint);
      font-weight: 500;
    }

    .view-label {
      font-size: 12px;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 8px;
    }

    /* Toggle */
    .toggle-view {
      display: grid;
      grid-template-columns: 1fr 1fr;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      padding: 4px;
      gap: 4px;
    }

    .toggle-btn {
      padding: 11px 16px;
      border: none;
      border-radius: var(--radius-xs);
      font-family: 'Poppins', sans-serif;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.18s, color 0.18s, transform 0.12s;
      background: transparent;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
    }

    .toggle-btn:active { transform: scale(0.97); }

    .toggle-btn.active {
      background: var(--gray-ui);
      color: var(--white);
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }

    /* Search */
    .search-wrap {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .search-input-wrap {
      flex: 1;
      display: flex;
      align-items: center;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      overflow: hidden;
      transition: border-color 0.18s, box-shadow 0.18s;
      height: 46px;
    }

    .search-input-wrap:focus-within {
      border-color: var(--gray-ui);
      box-shadow: 0 0 0 3px rgba(85,85,85,0.1);
    }

    .search-input {
      flex: 1;
      border: none;
      outline: none;
      padding: 0 16px;
      font-family: 'Poppins', sans-serif;
      font-size: 13px;
      color: var(--text);
      background: transparent;
      height: 100%;
    }

    .search-input::placeholder { color: var(--text-faint); }

    .clear-btn {
      padding: 0 12px;
      background: none; border: none; cursor: pointer;
      color: var(--text-faint); font-size: 18px; line-height: 1;
      display: none; align-items: center;
      transition: color 0.15s; height: 100%;
    }

    .clear-btn:hover { color: var(--text); }
    .clear-btn.visible { display: flex; }

    .search-btn {
      width: 46px; height: 46px;
      background: var(--gray-ui);
      border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      border-radius: var(--radius-sm);
      transition: background 0.18s, transform 0.12s;
      flex-shrink: 0;
    }

    .search-btn:hover { background: var(--gray-ui-dark); }
    .search-btn:active { transform: scale(0.93); }

    /* Location filters */
    .location-filters {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      overflow: hidden;
      background: var(--white);
    }

    .loc-btn {
      padding: 11px 8px;
      border: none;
      border-right: 1px solid var(--border);
      background: var(--white);
      font-family: 'Poppins', sans-serif;
      font-size: 13px; font-weight: 600;
      color: var(--text-muted); cursor: pointer;
      transition: all 0.18s ease;
      text-align: center;
    }

    .loc-btn:last-child { border-right: none; }

    .loc-btn.active {
      background: var(--gray-ui);
      color: white;
    }

    .loc-btn:hover:not(.active) { background: var(--bg); color: var(--text); }

    /* ─── BRAND FILTERS ─── */
    .brand-filter-container {
      margin-top: 16px;
      margin-bottom: 8px;
    }
    .brand-filter-scroll {
      display: flex;
      overflow-x: auto;
      gap: 10px;
      padding-bottom: 8px;
      scrollbar-width: thin;
      -ms-overflow-style: none; /* IE and Edge */
    }
    .brand-filter-scroll::-webkit-scrollbar {
      height: 4px;
    }
    .brand-filter-scroll::-webkit-scrollbar-thumb {
      background: var(--border-strong);
      border-radius: 4px;
    }
    .brand-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 78px;
      height: 52px;
      padding: 8px 12px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-xs);
      cursor: pointer;
      transition: all 0.2s ease;
      flex-shrink: 0;
    }
    .brand-btn:hover {
      border-color: var(--border-strong);
      box-shadow: 0 2px 6px rgba(0,0,0,0.04);
    }
    .brand-btn.active {
      border-color: var(--yellow);
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }
    .brand-logo-wrap {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .brand-logo-img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
    }
    .brand-logo-text {
      font-size: 13px;
      font-weight: 700;
      color: var(--text-muted);
      font-family: 'Poppins', sans-serif;
    }

    /* ─── CATALOG GRID ─── */
    /* Desktop: 3 colunas. Os cards viram verticais (foto em cima, info embaixo) */
    #catalog {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }

    #catalog.view-list {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    /* ─── CARD DETALHADO — vertical no grid 3 col ─── */
    .card-detailed {
      background: var(--white);
      border-radius: var(--radius);
      border: 1px solid var(--border);
      overflow: hidden;
      box-shadow: var(--card-shadow);
      cursor: pointer;
      transition: box-shadow 0.22s, transform 0.22s, border-color 0.22s;
      display: flex;
      flex-direction: column;
    }

    .card-detailed:hover {
      box-shadow: var(--card-shadow-hover);
      transform: translateY(-2px);
      border-color: var(--border-strong);
    }

    /* Imagem em cima — proporção 16:9 */
    .card-img-wrap {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9;
      overflow: hidden;
      background: #e0e0e0;
      flex-shrink: 0;
    }

    .card-img-wrap img {
      width: 100%; height: 100%;
      object-fit: cover; display: block;
      transition: transform 0.4s ease;
    }

    .card-detailed:hover .card-img-wrap img { transform: scale(1.04); }

    .card-play-badge {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
      z-index: 2;
      background: rgba(0,0,0,0.2);
      opacity: 0;
      transition: opacity 0.2s;
    }

    .card-detailed:hover .card-play-badge { opacity: 1; }

    .play-circle {
      width: 40px; height: 40px;
      background: rgba(255,255,255,0.95);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      transform: scale(0.85);
      transition: transform 0.22s cubic-bezier(0.22,1,0.36,1);
    }

    .card-detailed:hover .play-circle { transform: scale(1); }

    /* Detalhe amarelo no topo do card */
    .card-yellow-bar {
      height: 3px;
      background: var(--yellow);
      width: 100%;
    }

    /* Info embaixo */
    .card-info {
      padding: 14px 16px 16px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      flex: 1;
    }

    .card-title {
      font-size: 12px;
      font-weight: 700;
      color: var(--text);
      line-height: 1.4;
    }

    .card-meta {
      font-size: 10px;
      color: var(--text-muted);
      margin-top: -4px;
    }

    .card-placa {
      font-size: 11px;
      font-weight: 700;
      color: var(--text);
      letter-spacing: 0.3px;
      padding-top: 8px;
      border-top: 1px solid var(--border);
    }

    .card-obs {
      font-size: 10px;
      color: var(--text-muted);
      background: var(--bg);
      border-radius: var(--radius-xs);
      padding: 5px 9px;
      line-height: 1.5;
      white-space: pre-wrap;
    }

    .card-prices {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-top: auto;
      padding-top: 4px;
    }

    .price-block { display: flex; flex-direction: column; gap: 1px; }

    .price-label {
      font-size: 8px; font-weight: 600;
      text-transform: uppercase; letter-spacing: 0.7px;
      color: var(--text-muted);
    }

    .price-fipe { font-size: 12px; font-weight: 400; color: var(--text-secondary); }

    .price-venda { font-size: 15px; font-weight: 700; color: var(--accent); }

    .card-footer {
      border-top: 1px solid var(--border);
      padding: 12px 16px 14px;
    }

    .btn-video {
      width: 100%; padding: 11px;
      background: var(--gray-ui);
      color: #fff;
      border: none; border-radius: var(--radius-xs);
      font-family: 'Poppins', sans-serif;
      font-size: 12px; font-weight: 600;
      cursor: pointer;
      transition: background 0.18s, transform 0.12s;
      display: flex; align-items: center; justify-content: center;
      gap: 6px;
    }

    .btn-video:hover { background: var(--gray-ui-dark); }
    .btn-video:active { transform: scale(0.98); }

    /* ─── CARD LISTA ─── */
    .card-list {
      background: var(--white);
      border-radius: var(--radius-sm);
      border: 1px solid var(--border);
      padding: 13px 16px;
      box-shadow: var(--card-shadow);
      cursor: pointer;
      transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
      display: flex; align-items: center; gap: 14px;
      position: relative; overflow: hidden;
    }

    .card-list::before {
      content: '';
      position: absolute; left: 0; top: 0; bottom: 0;
      width: 3px; background: var(--yellow);
      transform: scaleY(0); transform-origin: bottom;
      transition: transform 0.22s cubic-bezier(0.22,1,0.36,1);
    }

    .card-list:hover::before { transform: scaleY(1); }

    .card-list:hover {
      box-shadow: var(--card-shadow-hover);
      border-color: var(--border-strong);
      transform: translateX(3px);
    }

    .list-num {
      font-size: 10px; font-weight: 700;
      color: var(--text-faint); width: 20px;
      text-align: right; flex-shrink: 0;
    }

    .list-main { flex: 1; min-width: 0; }

    .list-title {
      font-size: 12px; font-weight: 700;
      white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    }

    .list-placa { font-size: 10px; font-weight: 600; color: var(--text-secondary); margin-top: 1px; }
    .list-sub { font-size: 10px; color: var(--text-muted); margin-top: 1px; }
    .list-obs { font-size: 10px; color: var(--text-faint); margin-top: 1px; white-space: pre-wrap; }
    .list-prices { text-align: right; flex-shrink: 0; }
    .list-fipe { font-size: 10px; color: var(--text-faint); }
    .list-venda { font-size: 13px; font-weight: 700; color: var(--accent); }

    .list-play {
      width: 28px; height: 28px;
      background: var(--bg); border-radius: 50%;
      border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      transition: background 0.15s, border-color 0.15s;
    }

    .card-list:hover .list-play { background: var(--gray-ui); border-color: var(--gray-ui); }
    .card-list:hover .list-play path { fill: white; }

    /* ─── EMPTY ─── */
    .empty-state {
      text-align: center; padding: 80px 20px; color: var(--text-muted);
      grid-column: 1 / -1;
    }

    .empty-state p { font-size: 13px; margin-top: 10px; }

    /* ─── PAGINAÇÃO ─── */
    .pagination {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      margin-top: 28px;
    }

    .page-btn {
      min-width: 36px; height: 36px;
      padding: 0 10px;
      border: 1px solid var(--border);
      border-radius: var(--radius-xs);
      background: var(--white);
      font-family: 'Poppins', sans-serif;
      font-size: 13px; font-weight: 600;
      color: var(--text-muted);
      cursor: pointer;
      transition: all 0.18s;
      display: flex; align-items: center; justify-content: center;
    }

    .page-btn:hover:not(:disabled) { border-color: var(--gray-ui); color: var(--text); }
    .page-btn:disabled { opacity: 0.35; cursor: default; }

    .page-btn.active {
      background: var(--yellow);
      border-color: var(--yellow);
      color: var(--text);
      box-shadow: 0 2px 8px rgba(245,200,0,0.3);
    }

    /* ─── ANIMATIONS ─── */
    @keyframes fadeSlideUp {
      from { opacity: 0; transform: translateY(12px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .card-animated { animation: fadeSlideUp 0.32s cubic-bezier(0.22,1,0.36,1) both; }

    /* ─── SECTION DIVIDERS ─── */
    .section-block {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 16px;
    }

    .section-heading {
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--text-faint);
      margin-bottom: 14px;
      text-align: center;
    }

    /* ─── NAV BUTTONS ─── */
    .nav-buttons-section {
      background: var(--bg);
      border-top: 3px solid var(--yellow);
      border-bottom: 1px solid var(--border);
      padding: 32px 16px;
    }

    .nav-buttons-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      max-width: 680px;
      margin: 0 auto;
    }

    .nav-btn {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 14px;
      padding: 18px 20px;
      border-radius: var(--radius-sm);
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: filter 0.18s, transform 0.12s, box-shadow 0.18s;
      box-shadow: 0 4px 14px rgba(0,0,0,0.18);
      position: relative;
      overflow: hidden;
      user-select: none;
    }

    .nav-btn-yellow {
      background: var(--yellow);
      color: var(--text);
    }

    .nav-btn-dark {
      background: var(--gray-ui-dark);
      color: var(--white);
    }

    .nav-btn:hover {
      filter: brightness(1.08);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.22);
    }

    .nav-btn:active {
      transform: scale(0.97) translateY(0);
      filter: brightness(0.96);
      box-shadow: 0 2px 6px rgba(0,0,0,0.18);
    }

    .nav-btn-icon {
      width: 42px; height: 42px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }

    .nav-btn-yellow .nav-btn-icon { background: rgba(0,0,0,0.1); }
    .nav-btn-dark   .nav-btn-icon { background: rgba(255,255,255,0.12); }

    .nav-btn-body { flex: 1; }

    .nav-btn-label {
      font-size: 14px;
      font-weight: 800;
      line-height: 1.2;
      display: block;
    }

    .nav-btn-sub {
      font-size: 10px;
      font-weight: 400;
      opacity: 0.72;
      display: block;
      margin-top: 3px;
      line-height: 1.4;
    }

    .nav-btn-arrow {
      flex-shrink: 0;
      opacity: 0.6;
      transition: transform 0.18s, opacity 0.18s;
    }

    .nav-btn:hover .nav-btn-arrow {
      transform: translateX(4px);
      opacity: 1;
    }

    @media (max-width: 480px) {
      .nav-buttons-grid { grid-template-columns: 1fr; }
      .nav-btn { padding: 16px 18px; }
      .nav-btn-label { font-size: 13px; }
    }

    /* ─── DEPOIMENTOS ─── */
    .testimonials-section {
      padding: 40px 16px 44px;
      background: var(--bg);
    }

    .testimonials-title {
      font-size: 20px;
      font-weight: 800;
      color: var(--text);
      text-align: center;
      letter-spacing: -0.3px;
      margin-bottom: 6px;
    }

    .testimonials-sub {
      font-size: 12px;
      color: var(--text-muted);
      text-align: center;
      margin-bottom: 28px;
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .testimonial-card {
      background: var(--white);
      border-radius: var(--radius);
      border: 1px solid var(--border);
      padding: 20px;
      box-shadow: var(--card-shadow);
      display: flex;
      flex-direction: column;
      gap: 12px;
      transition: box-shadow 0.22s, transform 0.2s;
    }

    .testimonial-card:hover {
      box-shadow: var(--card-shadow-hover);
      transform: translateY(-2px);
    }

    .testimonial-stars {
      display: flex;
      gap: 3px;
    }

    .star { color: var(--yellow); font-size: 14px; }

    .testimonial-text {
      font-size: 12px;
      color: var(--text-secondary);
      line-height: 1.65;
      flex: 1;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 10px;
      padding-top: 12px;
      border-top: 1px solid var(--border);
    }

    .author-avatar {
      width: 34px; height: 34px;
      border-radius: 50%;
      background: var(--gray-ui);
      display: flex; align-items: center; justify-content: center;
      font-size: 13px; font-weight: 700; color: white;
      flex-shrink: 0;
    }

    .author-name {
      font-size: 12px;
      font-weight: 700;
      color: var(--text);
    }

    .author-detail {
      font-size: 10px;
      color: var(--text-muted);
    }

    /* ─── GOOGLE MAPS ─── */
    .maps-section {
      background: var(--white);
      border-top: 1px solid var(--border);
      padding: 40px 16px 44px;
    }

    .maps-title {
      font-size: 20px;
      font-weight: 800;
      color: var(--text);
      text-align: center;
      letter-spacing: -0.3px;
      margin-bottom: 6px;
    }

    .maps-sub {
      font-size: 12px;
      color: var(--text-muted);
      text-align: center;
      margin-bottom: 24px;
    }

    .maps-inner {
      max-width: 900px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .maps-embed {
      width: 100%;
      height: 380px;
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: var(--card-shadow);
    }

    .maps-embed iframe {
      width: 100%; height: 100%;
      display: block; border: none;
    }

    .maps-info {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }

    .maps-info-card {
      background: var(--bg);
      border-radius: var(--radius-sm);
      border: 1px solid var(--border);
      padding: 14px 16px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .maps-info-icon {
      width: 36px; height: 36px;
      background: var(--yellow);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }

    .maps-info-label {
      font-size: 10px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.6px;
      color: var(--text-muted);
    }

    .maps-info-value {
      font-size: 12px;
      font-weight: 700;
      color: var(--text);
      margin-top: 2px;
      line-height: 1.35;
    }

    @media (max-width: 860px) {
      .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
      .maps-info { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 560px) {
      .nav-buttons-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .maps-info { grid-template-columns: 1fr; }
      .maps-embed { height: 260px; }
      .testimonials-title, .maps-title { font-size: 17px; }
    }

    /* Modal responsivo: nunca corta em telas pequenas */
    .modal-overlay {
      position: fixed; inset: 0;
      background: rgba(0,0,0,0.45);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      z-index: 1000;
      display: flex; align-items: flex-end; justify-content: center;
      opacity: 0; pointer-events: none;
      transition: opacity 0.28s ease;
    }

    .modal-overlay.open { opacity: 1; pointer-events: all; }

    .modal {
      background: var(--white);
      border-radius: 20px 20px 0 0;
      width: 100%; max-width: 400px;
      display: flex; flex-direction: column;
      max-height: 92dvh;
      max-height: 92vh;
      transform: translateY(28px);
      transition: transform 0.32s cubic-bezier(0.22,1,0.36,1);
      box-shadow: 0 -4px 40px rgba(0,0,0,0.15);
    }

    .modal-overlay.open .modal { transform: translateY(0); }

    @media (min-width: 540px) {
      .modal-overlay { align-items: center; padding: 20px; }
      .modal {
        border-radius: 16px;
        transform: translateY(16px) scale(0.97);
        max-height: 90dvh;
        max-height: 90vh;
        max-width: 400px;
      }
      .modal-overlay.open .modal { transform: translateY(0) scale(1); }
      .modal-handle { display: none; }
    }

    .modal-handle {
      width: 36px; height: 4px;
      background: var(--border-strong);
      border-radius: 2px; margin: 12px auto 0;
    }

    /* Barra amarela topo modal — acompanha o border-radius do modal */
    .modal-yellow-bar {
      height: 4px;
      background: var(--yellow);
      border-radius: 20px 20px 0 0; /* mobile: drawer bottom-sheet */
      flex-shrink: 0;
    }

    @media (min-width: 540px) {
      .modal-yellow-bar { border-radius: 16px 16px 0 0; } /* desktop: modal flutuante */
    }

    .modal-scroll { flex: 1; overflow-y: auto; scrollbar-width: none; }
    .modal-scroll::-webkit-scrollbar { display: none; }

    .modal-header {
      padding: 12px 16px 10px;
      border-bottom: 1px solid var(--border);
      display: flex; justify-content: space-between; align-items: flex-start; gap: 10px;
    }

    .modal-title { font-size: 13px; font-weight: 700; line-height: 1.3; }
    .modal-placa { font-size: 10px; font-weight: 600; color: var(--text-secondary); margin-top: 2px; }
    .modal-meta  { font-size: 10px; color: var(--text-muted); margin-top: 1px; }

    .modal-close {
      width: 28px; height: 28px; border-radius: 50%;
      background: var(--bg); border: 1px solid var(--border);
      cursor: pointer; display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; color: var(--text-muted); font-size: 14px;
      transition: background 0.15s, color 0.15s;
    }

    .modal-close:hover { background: var(--text); color: white; }

    .modal-video {
      width: 100%;
      background: var(--bg);
      flex-shrink: 0;
      padding: 10px 12px;
    }
    .modal-video iframe {
      width: 100%;
      height: 180px;
      display: block;
      border: none;
      border-radius: var(--radius-sm);
      overflow: hidden;
    }

    .modal-price-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 1px; background: var(--border);
    }

    .modal-price-cell { background: var(--white); padding: 10px 16px; }

    .modal-price-label {
      font-size: 9px; font-weight: 600; text-transform: uppercase;
      letter-spacing: 0.8px; color: var(--text-faint); margin-bottom: 3px;
    }

    .modal-price-fipe  { font-size: 13px; font-weight: 500; color: var(--text-secondary); }
    .modal-price-venda { font-size: 15px; font-weight: 700; color: var(--accent); }

    .modal-obs {
      padding: 9px 16px; font-size: 11px; color: var(--text-muted);
      background: var(--bg); border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border); line-height: 1.5;
      white-space: pre-wrap;
    }

    .modal-actions { padding: 10px 16px 14px; display: flex; flex-direction: column; gap: 7px; }

    .btn-whatsapp {
      width: 100%; padding: 11px;
      background: var(--accent); color: white;
      border: none; border-radius: var(--radius-xs);
      font-family: 'Poppins', sans-serif;
      font-size: 13px; font-weight: 600; cursor: pointer;
      transition: background 0.18s, transform 0.12s;
      display: flex; align-items: center; justify-content: center; gap: 8px;
    }

    .btn-whatsapp:hover { background: var(--accent-dark); }
    .btn-whatsapp:active { transform: scale(0.98); }

    .btn-outro {
      width: 100%; padding: 9px; background: none;
      border: 1px solid var(--border); border-radius: var(--radius-xs);
      font-family: 'Poppins', sans-serif;
      font-size: 12px; font-weight: 600; color: var(--text-muted); cursor: pointer;
      transition: border-color 0.15s, color 0.15s;
    }

    .btn-outro:hover { border-color: var(--gray-ui); color: var(--gray-ui); }

    /* ─── SELETOR DE VENDEDORES ─── */
    .modal-seller-section {
      padding: 10px 16px 6px;
      border-top: 1px solid var(--border);
    }

    .modal-seller-label {
      font-size: 9px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      color: var(--text-muted);
      margin-bottom: 7px;
    }

    .modal-seller-grid {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }

    .seller-card {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 7px 12px;
      border-radius: var(--radius-sm);
      border: 1.5px solid var(--border);
      background: var(--bg);
      cursor: pointer;
      transition: border-color 0.18s, background 0.18s, transform 0.12s;
      font-family: 'Poppins', sans-serif;
      text-align: left;
      width: 100%;
    }

    .seller-card:hover {
      border-color: var(--gray-ui);
      background: var(--white);
    }

    .seller-card.selected {
      border-color: var(--accent);
      background: rgba(26,158,92,0.06);
    }

    .seller-card:active { transform: scale(0.98); }

    .seller-avatar {
      width: 28px; height: 28px;
      border-radius: 50%;
      background: var(--gray-ui);
      display: flex; align-items: center; justify-content: center;
      font-size: 12px; font-weight: 700; color: white;
      flex-shrink: 0;
      transition: background 0.18s;
    }

    .seller-card.selected .seller-avatar { background: var(--accent); }

    .seller-info { flex: 1; }

    .seller-name {
      font-size: 11px;
      font-weight: 700;
      color: var(--text);
    }

    .seller-cargo {
      font-size: 9px;
      color: var(--text-muted);
      margin-top: 0px;
    }

    .seller-check {
      width: 17px; height: 17px;
      border-radius: 50%;
      border: 1.5px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-size: 9px; font-weight: 700;
      color: var(--accent);
      flex-shrink: 0;
      transition: border-color 0.18s, background 0.18s;
    }

    .seller-card.selected .seller-check {
      border-color: var(--accent);
      background: var(--accent);
      color: white;
    }

    /* ─── RESPONSIVE ─── */
    /* Tablet: 2 colunas */
    @media (max-width: 860px) {
      #catalog { grid-template-columns: repeat(2, 1fr); }
      .container { max-width: 700px; }
    }

    /* Mobile: 1 coluna — card volta ao layout horizontal */
    @media (max-width: 560px) {
      #catalog { grid-template-columns: 1fr; gap: 10px; }
      .container { padding: 16px 12px 60px; }

      /* Card horizontal no mobile */
      .card-detailed { flex-direction: row; flex-wrap: wrap; padding: 8px; gap: 10px; }
      .card-img-wrap {
        width: 118px;
        aspect-ratio: unset;
        align-self: stretch;       /* estica para preencher a altura do card */
        flex-shrink: 0;
        overflow: hidden;
        border-radius: 10px;
      }
      /* Scale moderado: cobre as barras pretas do letterbox (~13% cada lado) */
      .card-img-wrap img {
        transform: scale(1.22);
        object-position: center center;
        transition: transform 0.4s ease;
      }
      .card-detailed:hover .card-img-wrap img {
        transform: scale(1.28);
      }
      .card-info { flex: 1; min-width: 0; padding: 0; gap: 6px; }
      .card-yellow-bar { display: none; }
      .card-footer { width: 100%; margin: 0 -8px -8px; width: calc(100% + 16px); border-radius: 0 0 14px 14px; }

      .section-title { font-size: 17px; }
      .toggle-btn { font-size: 12px; padding: 10px 8px; }
      .search-btn { width: 42px; height: 42px; }
      .search-input-wrap { height: 42px; }
      .loc-btn { font-size: 11px; padding: 10px 4px; }

      .list-title { font-size: 11px; }
      .list-sub, .list-obs { font-size: 9px; }
      .list-venda { font-size: 12px; }
    }

    @media (max-width: 400px) {
      .logo-revenda { font-size: 16px; }
      .logo-tag { font-size: 9px; letter-spacing: 1.5px; }
      .card-img-wrap { width: 104px; }
      .card-img-wrap img { transform: scale(1.22); object-position: center center; }
      .card-detailed:hover .card-img-wrap img { transform: scale(1.28); }
      .card-title { font-size: 11px; }
    }

    /* ─── RODAPÉ ─── */
    .site-footer {
      background: #111111;
      color: #d0d0d0;
      border-top: 3px solid var(--yellow);
    }

    .footer-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 48px 24px 36px;
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1fr;
      gap: 36px;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 12px;
    }

    .footer-logo-name {
      font-size: 16px;
      font-weight: 900;
      color: #ffffff;
      letter-spacing: -0.5px;
      text-transform: uppercase;
    }

    .footer-logo-dot {
      width: 6px; height: 6px;
      background: var(--yellow);
      border-radius: 50%;
    }

    .footer-tagline {
      font-size: 12px;
      line-height: 1.6;
      color: #888;
      margin-bottom: 20px;
      max-width: 220px;
    }

    .footer-social {
      display: flex;
      gap: 10px;
    }

    .footer-social-btn {
      width: 36px; height: 36px;
      border-radius: 50%;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.1);
      display: flex; align-items: center; justify-content: center;
      color: #bbb;
      text-decoration: none;
      transition: background 0.18s, color 0.18s, border-color 0.18s;
    }

    .footer-social-btn:hover {
      background: var(--yellow);
      color: #111;
      border-color: var(--yellow);
    }

    .footer-col-title {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: var(--yellow);
      margin-bottom: 16px;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-links li {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      color: #999;
      transition: color 0.15s;
    }

    .footer-links li:hover { color: #ddd; }

    .footer-links a {
      text-decoration: none;
      color: #999;
      font-size: 12px;
      transition: color 0.15s;
    }

    .footer-links a:hover { color: var(--yellow); }

    .footer-links svg { flex-shrink: 0; opacity: 0.6; }

    /* Horários com layout inline */
    .footer-hours li {
      display: flex;
      justify-content: space-between;
      gap: 8px;
    }

    .footer-hours li span:last-child {
      font-weight: 600;
      color: #bbb;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.07);
      padding: 16px 24px;
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
    }

    .footer-cnpj, .footer-copy {
      font-size: 11px;
      color: #555;
    }

    /* Footer responsive */
    @media (max-width: 860px) {
      .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
      .footer-brand { grid-column: 1 / -1; }
    }

    @media (max-width: 480px) {
      .footer-inner { grid-template-columns: 1fr; padding: 32px 20px 24px; }
      .footer-brand { grid-column: auto; }
      .footer-bottom { flex-direction: column; text-align: center; }
    }