
    :root {
      --navy:   #1e2d3d;
      --steel:  #4a6a82;
      --bg:     #f4f7fa;
      --card:   #ffffff;
      --border: rgba(30,45,61,0.1);
      --muted:  #6b7f93;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html, body { font-family: 'DM Sans', sans-serif; background: #fff; }

    /* ══════════════════════════════════════
       TOPBAR
    ══════════════════════════════════════ */
    .topbar {
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 60px;
      height: 92px;
      border-bottom: 1px solid #e8edf2;
    }
    .topbar-logo { text-decoration: none; display: flex; align-items: center; }
    .topbar-logo svg { height: 50px; width: auto; }
    .topbar-right { display: flex; align-items: center; gap: 36px; }
    .topbar-item { display: flex; align-items: center; gap: 12px; text-decoration: none; }
    .topbar-icon {
      width: 44px; height: 44px; border-radius: 50%;
      background: #eef3f8;
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .topbar-text-label { font-size: 11.5px; font-weight: 500; color: #8fa5b8; display: block; }
    .topbar-text-num   { font-size: 17px; font-weight: 700; color: var(--steel); letter-spacing: -0.3px; display: block; line-height: 1.2; }

    /* ══════════════════════════════════════
       NAVBAR
    ══════════════════════════════════════ */
    .navbar {
      background: var(--navy);
      position: sticky; top: 0; z-index: 999;
      display: flex; align-items: center; justify-content: center;
      height: 54px;
      box-shadow: 0 3px 14px rgba(30,45,61,0.3);
    }
    .nav-links { display: flex; list-style: none; height: 100%; }
    .nav-links li { height: 100%; }
    .nav-links li a {
      display: flex; align-items: center; height: 100%;
      padding: 0 26px;
      font-size: 13.5px; font-weight: 600;
      color: rgba(255,255,255,0.72); text-decoration: none;
      border-right: 1px solid rgba(255,255,255,0.08);
      transition: background 0.2s, color 0.2s;
    }
    .nav-links li:first-child a { border-left: 1px solid rgba(255,255,255,0.08); }
    .nav-links li a:hover { background: rgba(255,255,255,0.1); color: #fff; }
    .nav-links li a.active { background: var(--steel); color: #fff; }

    /* Hamburger */
    .nav-hamburger {
      display: none;
      position: absolute; right: 20px;
      flex-direction: column; gap: 5px;
      cursor: pointer; padding: 8px; background: none; border: none;
    }
    .nav-hamburger span {
      display: block; width: 22px; height: 2px;
      background: #fff; border-radius: 2px;
      transition: transform 0.3s, opacity 0.3s;
    }
    .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Drawer mobile */
    .nav-drawer {
      display: none;
      flex-direction: column;
      background: var(--navy);
      position: sticky; top: 54px; z-index: 998;
      border-top: 1px solid rgba(255,255,255,0.07);
      max-height: 0; overflow: hidden;
      transition: max-height 0.35s ease;
    }
    .nav-drawer.open { max-height: 400px; }
    .nav-drawer a {
      padding: 15px 24px;
      font-size: 15px; font-weight: 600;
      color: rgba(255, 255, 255, 0.342); text-decoration: none;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      transition: background 0.2s, color 0.2s;
    }
    .nav-drawer a:hover, .nav-drawer a.active { background: var(--steel); color: #fff; }

    /* ══════════════════════════════════════
       HERO
    ══════════════════════════════════════ */
    .hero {
      position: relative; width: 100%;
      min-height: calc(100vh - 92px - 54px);
      display: flex; align-items: center; justify-content: center;
      overflow: hidden;
    }
    .hero::before {
      content: ''; position: absolute; inset: 0;
      background-image: url('/img/img-section/hero\ foto\ principal.jpeg');
      background-size: cover; background-position: center top;
      animation: kb 18s ease forwards; z-index: 0;
    }
    @keyframes kb { from { transform: scale(1.06); } to { transform: scale(1); } }
    .hero::after {
      content: ''; position: absolute; inset: 0;
      background: rgba(255,255,255,0.58); z-index: 1;
    }
    .hero-inner {
      position: relative; z-index: 2;
      text-align: center; padding: 60px 24px;
      max-width: 820px; width: 100%;
      animation: fadeUp 0.7s ease both;
    }
    @keyframes fadeUp { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:translateY(0); } }
    .hero-logo { display: flex; align-items: center; justify-content: center; margin-bottom: 28px; }
    .hero-logo svg { height: 90px; width: auto; filter: drop-shadow(0 4px 18px rgba(30,45,61,0.18)); }
    .hero-title { font-family: 'League Spartan', sans-serif; font-weight: 900; font-size: clamp(28px, 5vw, 58px); color: var(--navy); line-height: 1.05; letter-spacing: -1.5px; margin-bottom: 16px; }
    .hero-sub { font-size: clamp(14px, 1.6vw, 17px); font-weight: 400; color: #3a4f63; line-height: 1.75; max-width: 580px; margin: 0 auto 10px; }
    .hero-sub strong { font-weight: 700; color: var(--navy); }
    .hero-tagline { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 40px; }
    .hero-btns { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
    .btn-blue {
      display: inline-block; padding: 15px 42px;
      background: var(--steel); color: #fff;
      font-size: 14px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
      text-decoration: none; border: none; cursor: pointer;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    }
    .btn-blue:hover { background: #3a5570; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(74,106,130,0.35); }
    .btn-navy {
      display: inline-block; padding: 15px 42px;
      background: var(--navy); color: #fff;
      font-size: 14px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
      text-decoration: none; border: none; cursor: pointer;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    }
    .btn-navy:hover { background: #2c3f55; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(30,45,61,0.35); }

    /* ══════════════════════════════════════
       CATEGORIAS
    ══════════════════════════════════════ */
    .categorias { padding: 72px 60px 80px; background: #fff; text-align: center; }
    .categorias-title { font-family: 'League Spartan', sans-serif; font-size: clamp(26px, 3vw, 40px); font-weight: 800; color: var(--navy); letter-spacing: -1px; margin-bottom: 8px; }
    .categorias-sub   { font-size: 15px; font-weight: 300; color: #8fa5b8; margin-bottom: 52px; }
    .cat-grid { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
    .cat-item { display: flex; flex-direction: column; align-items: center; text-decoration: none; cursor: pointer; }
    .cat-circle {
      width: 150px; height: 150px; border-radius: 50%;
      background: var(--navy);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 10px; padding: 20px;
      transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
      box-shadow: 0 6px 24px rgba(30,58,95,0.18);
      position: relative; overflow: hidden;
    }
    .cat-circle::before {
      content: ''; position: absolute;
      top: -40%; left: -40%; width: 80%; height: 60%;
      background: rgba(255,255,255,0.06); border-radius: 50%; pointer-events: none;
    }
    .cat-item:hover .cat-circle { transform: translateY(-8px) scale(1.04); box-shadow: 0 20px 48px rgba(30,58,95,0.28); background: #1a3356; }
    .cat-circle-name { font-family: 'League Spartan', sans-serif; font-size: 20px; font-weight: 800; color: #fff; letter-spacing: -0.5px; line-height: 1.1; text-align: center; position: relative; z-index: 1; }
    .cat-circle-logo { position: relative; z-index: 1; display: flex; align-items: center; }
    .cat-circle-logo svg { height: 16px; width: auto; opacity: 0.7; }
    .cat-sep { width: 1px; height: 60px; background: #e2ebf3; flex-shrink: 0; align-self: center; }


    .filter-btn:hover { border-color: var(--steel); color: var(--steel); }
    .filter-btn.active { background: var(--navy); border-color: var(--navy); color: #fff; font-weight: 600; }

    /* Grid */
    .cards-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

    /* Card */
    .card { background: var(--card); border-radius: 16px; border: 1px solid var(--border); overflow: hidden; transition: transform 0.25s, box-shadow 0.25s; }
    .card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(30,45,61,0.12); }

    /* Carrossel */
    .card-photo { position: relative; aspect-ratio: 4/3; overflow: hidden; background: #e8edf2; }
    .carousel-track { display: flex; height: 100%; transition: transform 0.55s cubic-bezier(0.4,0,0.2,1); }
    .carousel-slide { flex: 0 0 100%; height: 100%; }
    .carousel-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .slide-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; background: #e8edf2; }
    .slide-placeholder svg { opacity: 0.25; }
    .slide-placeholder span { font-size: 9px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); opacity: 0.6; }

    .card-tag-cat {
      position: absolute; top: 12px; left: 12px; z-index: 5;
      background: var(--navy); color: #fff;
      font-size: 9.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
      padding: 5px 12px; border-radius: 6px;
    }
    .card-tag-avail {
      position: absolute; top: 12px; right: 12px; z-index: 5;
      background: #fff; border: 1px solid rgba(30,45,61,0.12);
      display: flex; align-items: center; gap: 6px;
      font-size: 9.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
      color: var(--muted); padding: 5px 12px; border-radius: 6px;
    }
    .avail-dot { width: 6px; height: 6px; border-radius: 50%; background: #22c55e; animation: blink 2s ease-in-out infinite; }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

    .carousel-dots { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); display: flex; gap: 5px; z-index: 5; }
    .cdot { width: 6px; height: 6px; border-radius: 3px; background: rgba(30,45,61,0.25); border: none; cursor: pointer; padding: 0; transition: background 0.3s, width 0.3s; }
    .cdot.active { background: var(--navy); width: 20px; }

    .carr-arrow {
      position: absolute; top: 50%; transform: translateY(-50%);
      width: 28px; height: 28px;
      background: rgba(255,255,255,0.9); border: 1px solid rgba(30,45,61,0.12);
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      cursor: pointer; z-index: 6; transition: opacity 0.2s;
      box-shadow: 0 2px 8px rgba(30,45,61,0.12);
      opacity: 0;
    }
    /* No touch sempre visível */
    @media (hover: none) { .carr-arrow { opacity: 0.85 !important; } }
    .carr-arrow.prev { left: 8px; }
    .carr-arrow.next { right: 8px; }
    .card-photo:hover .carr-arrow { opacity: 1; }
    .carr-progress { position: absolute; top: 0; left: 0; height: 2.5px; background: var(--steel); z-index: 5; width: 0; }

    .card-info { padding: 16px 18px 20px; }
    .card-name { font-family: 'League Spartan', sans-serif; font-size: 14px; font-weight: 800; letter-spacing: -0.2px; text-transform: uppercase; color: var(--navy); margin-bottom: 7px; }
    .card-desc { font-size: 12px; font-weight: 300; color: var(--muted); line-height: 1.65; margin-bottom: 14px; }
    .card-specs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
    .spec-tag { padding: 4px 10px; border-radius: 6px; border: 1px solid var(--border); background: var(--bg); font-size: 10.5px; font-weight: 500; color: var(--muted); }
    .card-cta { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600; color: var(--steel); background: none; border: none; cursor: pointer; padding: 0; transition: gap 0.2s, color 0.2s; }
    .card-cta:hover { color: var(--navy); gap: 10px; }
    .card-cta svg { transition: transform 0.2s; }
    .card-cta:hover svg { transform: translateX(3px); }

    .catalogo-footer {
      margin-top: 40px; background: var(--navy); border-radius: 16px;
      padding: 28px 36px; display: flex; align-items: center;
      justify-content: space-between; gap: 20px; flex-wrap: wrap;
    }
    .catalogo-footer p { font-size: 15px; color: rgba(255,255,255,0.65); }
    .catalogo-footer p strong { color: #fff; font-weight: 700; }
    .btn-orcamento {
      display: inline-block; padding: 13px 32px;
      background: #fff; color: var(--navy); font-family: 'DM Sans', sans-serif;
      font-size: 13.5px; font-weight: 700; border-radius: 10px;
      text-decoration: none; white-space: nowrap;
      transition: opacity 0.2s, transform 0.2s;
    }
    .btn-orcamento:hover { opacity: 0.88; transform: translateY(-1px); }

    /* ══════════════════════════════════════
       RESPONSIVE — TABLET ≤ 1100px
    ══════════════════════════════════════ */
    @media (max-width: 1100px) {
      .cards-grid { grid-template-columns: repeat(3,1fr); }
    }

    /* ══════════════════════════════════════
       RESPONSIVE — MOBILE ≤ 768px
    ══════════════════════════════════════ */
    @media (max-width: 768px) {

      /* Topbar empilhada */
      .topbar {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        padding: 14px 20px;
        gap: 12px;
      }
      .topbar-logo svg { height: 36px; }
      .topbar-right { gap: 20px; width: 100%; justify-content: flex-start; }
      .topbar-icon { width: 36px; height: 36px; }
      .topbar-text-num { font-size: 14px; }
      .topbar-text-label { font-size: 10px; }

      /* Navbar mobile */
      .navbar { justify-content: flex-start; padding-left: 20px; }
      .nav-links { display: none; }
      .nav-hamburger { display: flex; }
      .nav-drawer { display: flex; }

      /* Hero */
      .hero { min-height: 75vh; }
      .hero-inner { padding: 44px 20px; }
      .hero-logo svg { height: 56px; }
      .hero-title { font-size: clamp(26px, 8vw, 38px); letter-spacing: -1px; }
      .hero-sub { font-size: 14px; line-height: 1.65; }
      .hero-tagline { font-size: 14px; margin-bottom: 28px; }
      .hero-btns { flex-direction: column; gap: 12px; }
      .btn-blue, .btn-navy { width: 260px; text-align: center; padding: 14px 28px; font-size: 13px; }

      /* Categorias */
      .categorias { padding: 48px 20px 56px; }
      .categorias-sub { margin-bottom: 36px; }
      .cat-sep { display: none; }
      .cat-grid { gap: 12px; }
      .cat-circle { width: 110px; height: 110px; gap: 7px; padding: 14px; }
      .cat-circle-name { font-size: 14px; }
      .cat-circle-logo svg { height: 12px; }

      /* Catálogo */
      .catalogo { padding: 48px 16px 60px; }
      .filters { gap: 6px; }
      .filter-btn { padding: 7px 14px; font-size: 12px; }
      .cards-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
      .card-name { font-size: 12.5px; }
      .card-desc { font-size: 11px; }
      .card-tag-cat, .card-tag-avail { font-size: 8px; padding: 4px 8px; }
      .catalogo-footer { flex-direction: column; text-align: center; padding: 20px; border-radius: 12px; }
      .btn-orcamento { width: 100%; text-align: center; }
    }

    /* ══════════════════════════════════════
       RESPONSIVE — PEQUENO ≤ 420px
    ══════════════════════════════════════ */
    @media (max-width: 420px) {
      .topbar-right { flex-direction: column; gap: 10px; }
      .cat-circle { width: 92px; height: 92px; padding: 10px; gap: 6px; }
      .cat-circle-name { font-size: 12px; }
      .cat-grid { gap: 8px; }
      .cards-grid { grid-template-columns: 1fr; }
      .hero-logo svg { height: 44px; }
    }
        /* ══════════════════════════════════════
       SOBRE
    ══════════════════════════════════════ */
    .sobre {
      padding: 96px 60px 100px;
      background: var(--bg);
      overflow: hidden;
    }
    .sobre-inner {
      max-width: 1180px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    /* ── Eyebrow ── */
    .sobre-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--steel);
      margin-bottom: 20px;
    }
    .sobre-eyebrow span {
      display: block;
      width: 32px;
      height: 1.5px;
      background: var(--steel);
      border-radius: 2px;
    }

    /* ── Título ── */
    .sobre-title {
      font-family: 'League Spartan', sans-serif;
      font-weight: 900;
      font-size: clamp(34px, 4.5vw, 62px);
      line-height: 1.0;
      letter-spacing: -2px;
      color: var(--navy);
      margin-bottom: 32px;
      text-transform: uppercase;
    }
    .sobre-title span {
      color: var(--steel);
    }

    /* ── Parágrafos ── */
    .sobre-p {
      font-size: 14.5px;
      font-weight: 400;
      color: #3a4f63;
      line-height: 1.8;
      margin-bottom: 16px;
    }
    .sobre-p strong {
      font-weight: 700;
      color: var(--navy);
    }

    /* ── Stats ── */
    .sobre-stats {
      display: flex;
      align-items: center;
      gap: 28px;
      margin-top: 40px;
      padding-top: 32px;
      border-top: 1px solid var(--border);
      flex-wrap: wrap;
    }
    .stat { display: flex; flex-direction: column; gap: 4px; }
    .stat-num {
      font-family: 'League Spartan', sans-serif;
      font-size: 38px;
      font-weight: 900;
      color: var(--navy);
      line-height: 1;
      letter-spacing: -1px;
    }
    .stat-plus {
      font-size: 22px;
      color: var(--steel);
    }
    .stat-label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--muted);
    }
    .stat-sep {
      width: 1px;
      height: 40px;
      background: var(--border);
      flex-shrink: 0;
    }

    /* ── Coluna visual ── */
    .sobre-visual {
      position: relative;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      padding-top: 24px;
    }

    /* ── Card citação ── */
    .sobre-quote-card {
      background: linear-gradient(145deg, #1e2d3d 0%, #2c4560 100%);
      border-radius: 20px;
      padding: 44px 40px 40px;
      width: 100%;
      max-width: 440px;
      position: relative;
      z-index: 2;
      box-shadow: 0 30px 80px rgba(30, 45, 61, 0.28);
    }
    .quote-marks {
      font-family: Georgia, serif;
      font-size: 90px;
      line-height: 0.6;
      color: rgba(255,255,255,0.12);
      margin-bottom: 20px;
      display: block;
    }
    .quote-text {
      font-family: 'DM Sans', sans-serif;
      font-size: 17px;
      font-weight: 400;
      color: rgba(255,255,255,0.88);
      line-height: 1.7;
      margin-bottom: 24px;
    }
    .quote-author {
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
    }

    /* ── Badge flutuante ── */
    .sobre-badge {
      position: absolute;
      bottom: -20px;
      right: -10px;
      z-index: 3;
      background: #fff;
      border-radius: 14px;
      padding: 18px 22px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 2px;
      box-shadow: 0 12px 40px rgba(30,45,61,0.18);
      border: 1px solid var(--border);
    }
    .badge-num {
      font-family: 'League Spartan', sans-serif;
      font-size: 36px;
      font-weight: 900;
      color: var(--navy);
      line-height: 1;
      letter-spacing: -1px;
    }
    .badge-num span { color: var(--steel); }
    .badge-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--muted);
      line-height: 1.4;
    }

    /* ── Decorações ── */
    .sobre-deco-ring {
      position: absolute;
      top: -30px;
      left: -30px;
      width: 160px;
      height: 160px;
      border-radius: 50%;
      border: 1.5px solid rgba(74,106,130,0.18);
      z-index: 0;
    }
    .sobre-deco-dots {
      position: absolute;
      bottom: 30px;
      left: -40px;
      z-index: 0;
      opacity: 0.7;
    }

    /* ══════════════════════════════════════
       RESPONSIVE — TABLET ≤ 960px
    ══════════════════════════════════════ */
    @media (max-width: 960px) {
      .sobre {
        padding: 72px 40px 80px;
      }
      .sobre-inner {
        grid-template-columns: 1fr;
        gap: 60px;
      }
      .sobre-visual {
        padding-top: 0;
        padding-bottom: 40px;
      }
      .sobre-badge {
        bottom: 0;
        right: 0;
      }
    }

    /* ══════════════════════════════════════
       RESPONSIVE — MOBILE ≤ 768px
    ══════════════════════════════════════ */
    @media (max-width: 768px) {
      .sobre {
        padding: 56px 20px 64px;
      }
      .sobre-title {
        font-size: clamp(30px, 9vw, 42px);
        letter-spacing: -1px;
      }
      .sobre-quote-card {
        padding: 32px 28px 28px;
      }
      .quote-text { font-size: 15px; }
      .sobre-stats {
        gap: 18px;
      }
      .stat-num { font-size: 30px; }
    }
    /* ══════════════════════════════════════
       MVV — Missão Visão Valores
    ══════════════════════════════════════ */
    .mvv {
      padding: 96px 60px 108px;
      background: #fff;
      overflow: hidden;
    }

    .mvv-inner {
      max-width: 1180px;
      margin: 0 auto;
    }

    /* ── Cabeçalho ── */
    .mvv-header {
      text-align: center;
      margin-bottom: 56px;
    }
    .mvv-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--steel);
      margin-bottom: 18px;
    }
    .mvv-line {
      display: block;
      width: 28px;
      height: 1.5px;
      background: var(--steel);
      border-radius: 2px;
    }
    .mvv-title {
      font-family: 'League Spartan', sans-serif;
      font-weight: 900;
      font-size: clamp(30px, 4vw, 52px);
      letter-spacing: -1.5px;
      color: var(--navy);
      line-height: 1.05;
      text-transform: uppercase;
    }
    .mvv-title span { color: var(--steel); }

    /* ── Grid ── */
    .mvv-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      align-items: center;
    }

    /* ── Card base ── */
    .mvv-card {
      position: relative;
      background: #f4f7fa;
      border: 1px solid rgba(30,45,61,0.09);
      border-radius: 22px;
      padding: 40px 36px 36px;
      overflow: hidden;
      cursor: default;
      transition: transform 0.4s cubic-bezier(0.16,1,0.3,1),
                  box-shadow 0.4s cubic-bezier(0.16,1,0.3,1),
                  border-color 0.3s;

      /* entrada animada */
      opacity: 0;
      transform: translateY(32px);
    }
    .mvv-card.visible {
      animation: mvvIn 0.7s cubic-bezier(0.16,1,0.3,1) forwards;
    }
    .mvv-card:nth-child(1) { animation-delay: 0s; }
    .mvv-card:nth-child(2) { animation-delay: 0.12s; }
    .mvv-card:nth-child(3) { animation-delay: 0.24s; }

    @keyframes mvvIn {
      from { opacity: 0; transform: translateY(32px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .mvv-card:hover {
      transform: translateY(-8px) scale(1.01);
      box-shadow: 0 28px 64px rgba(30,45,61,0.13);
      border-color: rgba(74,106,130,0.25);
    }

    /* Letra de fundo decorativa */
    .mvv-card-bg-letter {
      position: absolute;
      bottom: -20px;
      right: -10px;
      font-family: 'League Spartan', sans-serif;
      font-weight: 900;
      font-size: 130px;
      color: rgba(30,45,61,0.04);
      line-height: 1;
      pointer-events: none;
      user-select: none;
      transition: color 0.3s;
    }
    .mvv-card--featured .mvv-card-bg-letter {
      color: rgba(255,255,255,0.07);
    }

    /* ── Ícone ── */
    .mvv-icon-wrap {
      position: relative;
      width: 56px;
      height: 56px;
      margin-bottom: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .mvv-icon-ring {
      position: absolute;
      inset: 0;
      border-radius: 14px;
      background: rgba(74,106,130,0.12);
      transition: background 0.3s, transform 0.4s;
    }
    .mvv-card:hover .mvv-icon-ring {
      transform: scale(1.1) rotate(6deg);
      background: rgba(74,106,130,0.2);
    }
    .mvv-icon-svg {
      position: relative;
      z-index: 1;
      width: 26px;
      height: 26px;
      color: var(--steel);
    }
    .mvv-card--featured .mvv-icon-ring {
      background: rgba(255,255,255,0.12);
    }
    .mvv-card--featured .mvv-icon-svg {
      color: rgba(255,255,255,0.9);
    }
    .mvv-card--featured:hover .mvv-icon-ring {
      background: rgba(255,255,255,0.2);
    }

    /* ── Label ── */
    .mvv-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--steel);
      margin-bottom: 8px;
    }
    .mvv-card--featured .mvv-label { color: rgba(255,255,255,0.5); }

    /* ── Título do card ── */
    .mvv-card-title {
      font-family: 'League Spartan', sans-serif;
      font-weight: 900;
      font-size: 22px;
      letter-spacing: -0.5px;
      text-transform: uppercase;
      color: var(--navy);
      margin-bottom: 16px;
      line-height: 1.1;
    }
    .mvv-card--featured .mvv-card-title { color: #fff; }

    /* ── Descrição ── */
    .mvv-card-desc {
      font-size: 13.5px;
      font-weight: 400;
      color: #5a6f82;
      line-height: 1.8;
      margin-bottom: 28px;
      position: relative;
      z-index: 1;
    }
    .mvv-card--featured .mvv-card-desc { color: rgba(255,255,255,0.65); }

    /* ── Pills ── */
    .mvv-card-footer {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      position: relative;
      z-index: 1;
    }
    .mvv-pill {
      padding: 5px 14px;
      border-radius: 100px;
      font-size: 10.5px;
      font-weight: 600;
      letter-spacing: 0.5px;
      background: rgba(30,45,61,0.07);
      color: var(--steel);
      border: 1px solid rgba(74,106,130,0.15);
      transition: background 0.2s, color 0.2s;
    }
    .mvv-card:hover .mvv-pill {
      background: rgba(74,106,130,0.14);
    }
    .mvv-card--featured .mvv-pill {
      background: rgba(255,255,255,0.1);
      color: rgba(255,255,255,0.75);
      border-color: rgba(255,255,255,0.15);
    }
    .mvv-card--featured:hover .mvv-pill {
      background: rgba(255,255,255,0.18);
    }

    /* ── Card featured (Visão) ── */
    .mvv-card--featured {
      background: linear-gradient(155deg, #1e2d3d 0%, #2d4a68 60%, #1a3356 100%);
      border-color: transparent;
      box-shadow: 0 20px 60px rgba(30,45,61,0.28);
      padding: 50px 36px 44px;
      transform: translateY(-12px);
    }
    .mvv-card--featured:hover {
      transform: translateY(-20px) scale(1.01);
      box-shadow: 0 36px 80px rgba(30,45,61,0.36);
    }

    /* Brilho interno do featured */
    .mvv-featured-glow {
      position: absolute;
      top: -60px;
      right: -60px;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(74,106,130,0.3) 0%, transparent 70%);
      pointer-events: none;
    }

    /* ══════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════ */
    @media (max-width: 960px) {
      .mvv { padding: 72px 40px 80px; }
      .mvv-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
      .mvv-card--featured { transform: none; }
      .mvv-card--featured:hover { transform: translateY(-8px) scale(1.01); }
    }

    @media (max-width: 768px) {
      .mvv { padding: 56px 20px 64px; }
      .mvv-card { padding: 32px 28px 28px; }
      .mvv-card--featured { padding: 38px 28px 34px; }
    }
  .newcatalogo {
    padding: 88px 0 100px;
    background: #f7f9fb;
  }
  .newcatalogo-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 48px;
  }
  .newcatalogo-header {
    text-align: center;
    margin-bottom: 44px;
  }
  .newcatalogo-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--steel);
    margin-bottom: 16px;
  }
  .newcatalogo-eyebrow span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--steel);
    border-radius: 2px;
  }
  .newcatalogo-title {
    font-family: 'League Spartan', sans-serif;
    font-weight: 900;
    font-size: clamp(28px, 3.8vw, 50px);
    letter-spacing: -1.5px;
    color: var(--navy);
    line-height: 1.08;
    text-transform: uppercase;
  }
  .newcatalogo-title em {
    font-style: normal;
    color: var(--steel);
  }

  /* Filtros */
  .newcatalogo-filters {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
  .ncf-btn {
    padding: 9px 22px;
    border-radius: 100px;
    border: 1.5px solid #dde4ec;
    background: transparent;
    color: #8fa5b8;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
  }
  .ncf-btn:hover { border-color: var(--steel); color: var(--steel); }
  .ncf-btn.active { background: var(--navy); border-color: var(--navy); color: #fff; font-weight: 600; }

  /* Grid */
  .newcatalogo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px 24px;
  }

  /* Card */
  .nc-card {
    background: transparent;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  .nc-card.nc-visible { opacity: 1; transform: translateY(0); }
  .nc-card:nth-child(1) { transition-delay: 0.00s; }
  .nc-card:nth-child(2) { transition-delay: 0.07s; }
  .nc-card:nth-child(3) { transition-delay: 0.14s; }
  .nc-card:nth-child(4) { transition-delay: 0.21s; }
  .nc-card:nth-child(5) { transition-delay: 0.00s; }
  .nc-card:nth-child(6) { transition-delay: 0.07s; }
  .nc-card:nth-child(7) { transition-delay: 0.14s; }
  .nc-card:nth-child(8) { transition-delay: 0.21s; }
  .nc-card:nth-child(9)  { transition-delay: 0.00s; }
  .nc-card:nth-child(10) { transition-delay: 0.07s; }
  .nc-card:nth-child(11) { transition-delay: 0.14s; }
  .nc-card:nth-child(12) { transition-delay: 0.21s; }

  /* Foto */
  .nc-photo {
    position: relative;
    aspect-ratio: 1 / 1;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 14px;
    border: 1px solid #e8edf3;
    transition: box-shadow 0.35s ease, border-color 0.3s ease;
  }
  .nc-card:hover .nc-photo {
    box-shadow: 0 20px 50px rgba(30,45,61,0.11);
    border-color: #cdd8e3;
  }

  /* Carrossel */
  .nc-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  }
  .nc-slide {
    flex: 0 0 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
  }
  .nc-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.45s ease;
    display: block;
  }
  .nc-card:hover .nc-slide img { transform: scale(1.05); }

  /* Placeholder */
  .nc-ph {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .nc-ph span { font-size: 9px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: #b0bfcc; }

  /* Badge oferta */
  .nc-badge-oferta {
    position: absolute;
    top: 11px; right: 11px;
    background: #ef4444;
    color: #fff;
    font-size: 9px; font-weight: 800;
    letter-spacing: 1.5px; text-transform: uppercase;
    padding: 4px 11px; border-radius: 100px;
    z-index: 4;
  }

  /* Disponível */
  .nc-avail {
    position: absolute;
    bottom: 10px; left: 10px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(30,45,61,0.07);
    display: flex; align-items: center; gap: 5px;
    font-size: 9px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    color: #6b7f93;
    padding: 4px 10px; border-radius: 100px;
    z-index: 4;
    opacity: 0; transform: translateY(4px);
    transition: opacity 0.25s, transform 0.25s;
  }
  .nc-card:hover .nc-avail { opacity: 1; transform: translateY(0); }
  .nc-avail-dot {
    width: 5px; height: 5px; border-radius: 50%;
    background: #22c55e;
    animation: blink 2s ease-in-out infinite;
    flex-shrink: 0;
  }

  /* Setas */
  .nc-arr {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 30px; height: 30px;
    background: rgba(255,255,255,0.96);
    border: 1px solid #dde4ec; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; z-index: 5;
    opacity: 0; transition: opacity 0.2s;
    box-shadow: 0 2px 10px rgba(30,45,61,0.08);
  }
  .nc-photo:hover .nc-arr { opacity: 1; }
  @media (hover: none) { .nc-arr { opacity: 0.85 !important; } }
  .nc-arr.prev { left: 8px; }
  .nc-arr.next { right: 8px; }

  /* Dots */
  .nc-dots {
    position: absolute; bottom: 10px; right: 10px;
    display: flex; gap: 4px; z-index: 4;
  }
  .nc-dot-btn {
    width: 5px; height: 5px; border-radius: 50%;
    background: rgba(30,45,61,0.18);
    border: none; cursor: pointer; padding: 0;
    transition: background 0.2s, transform 0.2s;
  }
  .nc-dot-btn.on { background: var(--navy); transform: scale(1.3); }

  /* Info */
  .nc-info { padding: 0 2px; }
  .nc-cat {
    font-size: 10px; font-weight: 700;
    letter-spacing: 1.8px; text-transform: uppercase;
    color: #b0bfcc; margin-bottom: 5px; display: block;
  }
  .nc-name {
    font-family: 'League Spartan', sans-serif;
    font-size: 15.5px; font-weight: 800;
    color: var(--navy); letter-spacing: -0.3px;
    line-height: 1.2; margin-bottom: 10px;
    transition: color 0.2s;
  }
  .nc-card:hover .nc-name { color: var(--steel); }
  .nc-price-row {
    display: flex; align-items: baseline;
    gap: 7px; flex-wrap: wrap; margin-bottom: 12px;
  }
  .nc-price-old {
    font-size: 12px; font-weight: 500;
    color: #b0bfcc; text-decoration: line-through;
  }
  .nc-price {
    font-family: 'League Spartan', sans-serif;
    font-size: 19px; font-weight: 900;
    color: var(--navy); letter-spacing: -0.5px; line-height: 1;
  }
  .nc-period { font-size: 12px; font-weight: 400; color: var(--muted); }
  .nc-cta {
    display: inline-flex; align-items: center; gap: 5px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px; font-weight: 600;
    color: var(--steel); background: none; border: none;
    cursor: pointer; padding: 0;
    transition: color 0.2s, gap 0.2s;
  }
  .nc-cta:hover { color: var(--navy); gap: 9px; }
  .nc-cta svg { transition: transform 0.2s; }
  .nc-cta:hover svg { transform: translateX(3px); }

  /* Footer */
  .newcatalogo-footer {
    margin-top: 60px;
    background: var(--navy);
    border-radius: 18px;
    padding: 32px 40px;
    display: flex; align-items: center;
    justify-content: space-between;
    gap: 24px; flex-wrap: wrap;
  }
  .ncf-footer-title {
    font-family: 'League Spartan', sans-serif;
    font-size: 18px; font-weight: 800;
    color: #fff; letter-spacing: -0.3px; margin-bottom: 4px;
  }
  .ncf-footer-sub { font-size: 13.5px; color: rgba(255,255,255,0.55); }
  .ncf-footer-sub strong { color: rgba(255,255,255,0.85); font-weight: 600; }
  .ncf-footer-btn {
    display: inline-block; padding: 14px 34px;
    background: #fff; color: var(--navy);
    font-family: 'DM Sans', sans-serif;
    font-size: 13.5px; font-weight: 700;
    border-radius: 10px; text-decoration: none;
    white-space: nowrap; flex-shrink: 0;
    transition: opacity 0.2s, transform 0.2s;
  }
  .ncf-footer-btn:hover { opacity: 0.9; transform: translateY(-2px); }

  /* Responsive */
  @media (max-width: 1100px) { .newcatalogo-grid { grid-template-columns: repeat(3,1fr); } }
  @media (max-width: 768px) {
    .newcatalogo { padding: 56px 0 64px; }
    .newcatalogo-inner { padding: 0 20px; }
    .newcatalogo-grid { grid-template-columns: repeat(2,1fr); gap: 28px 14px; }
    .newcatalogo-footer { flex-direction: column; text-align: center; padding: 24px; border-radius: 14px; }
    .ncf-footer-btn { width: 100%; text-align: center; }
    .ncf-btn { padding: 7px 14px; font-size: 12px; }
  }
  @media (max-width: 420px) { .newcatalogo-grid { grid-template-columns: 1fr; } }

  
    /* ══════════════════════════════════════
       CHAT WIDGET
    ══════════════════════════════════════ */
    #chat-widget {
      position: fixed;
      bottom: 28px; right: 28px;
      z-index: 9999;
      font-family: 'DM Sans', sans-serif;
    }

    /* Botão flutuante */
    #chat-toggle {
      width: 62px; height: 62px;
      background: var(--navy);
      border-radius: 50%;
      border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 8px 32px rgba(30,45,61,0.4);
      transition: transform 0.3s ease, background 0.2s;
      position: relative;
    }
    #chat-toggle:hover { transform: scale(1.1); background: var(--steel); }
    #chat-toggle .chat-badge {
      position: absolute; top: -2px; right: -2px;
      width: 18px; height: 18px; background: #22c55e;
      border-radius: 50%; border: 2.5px solid #fff;
      animation: pulse-badge 2.5s ease-in-out infinite;
    }
    @keyframes pulse-badge {
      0%,100% { transform: scale(1); }
      50% { transform: scale(1.25); }
    }
    #chat-toggle .toggle-icon-chat,
    #chat-toggle .toggle-icon-close { transition: opacity 0.2s, transform 0.2s; }
    #chat-toggle.open .toggle-icon-chat { opacity: 0; transform: scale(0.5); position: absolute; }
    #chat-toggle:not(.open) .toggle-icon-close { opacity: 0; transform: scale(0.5); position: absolute; }

    /* Janela do chat */
    #chat-window {
      position: absolute;
      bottom: 76px; right: 0;
      width: 370px;
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 20px 70px rgba(30,45,61,0.22);
      border: 1px solid #e0e8f0;
      overflow: hidden;
      display: flex; flex-direction: column;
      max-height: 540px;
      opacity: 0; transform: translateY(16px) scale(0.96);
      pointer-events: none;
      transition: opacity 0.3s ease, transform 0.3s ease;
    }
    #chat-window.open {
      opacity: 1; transform: translateY(0) scale(1);
      pointer-events: all;
    }

    /* Header do chat */
    .chat-header {
      background: linear-gradient(135deg, #1e2d3d 0%, #2d4a68 100%);
      padding: 18px 20px 16px;
      display: flex; align-items: center; gap: 13px;
      flex-shrink: 0;
    }
    .chat-avatar {
      width: 44px; height: 44px; border-radius: 50%;
      background: rgba(255,255,255,0.12);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      border: 2px solid rgba(255,255,255,0.18);
    }
    .chat-header-info { flex: 1; min-width: 0; }
    .chat-header-name { font-family: 'League Spartan', sans-serif; font-size: 16px; font-weight: 800; color: #fff; letter-spacing: -0.3px; line-height: 1.1; }
    .chat-header-status { display: flex; align-items: center; gap: 5px; margin-top: 3px; }
    .chat-status-dot { width: 6px; height: 6px; border-radius: 50%; background: #22c55e; animation: blink 2s ease-in-out infinite; }
    .chat-header-status span { font-size: 11px; color: rgba(255,255,255,0.6); font-weight: 400; }
    .chat-header-close {
      background: rgba(255,255,255,0.1); border: none; cursor: pointer;
      width: 30px; height: 30px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.2s;
    }
    .chat-header-close:hover { background: rgba(255,255,255,0.2); }

    /* Área de mensagens */
    #chat-messages {
      flex: 1;
      overflow-y: auto;
      padding: 18px 16px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      scroll-behavior: smooth;
      min-height: 280px;
    }
    #chat-messages::-webkit-scrollbar { width: 4px; }
    #chat-messages::-webkit-scrollbar-track { background: transparent; }
    #chat-messages::-webkit-scrollbar-thumb { background: #d0dce8; border-radius: 4px; }

    /* Mensagens */
    .msg { display: flex; align-items: flex-end; gap: 8px; animation: msgIn 0.3s ease; }
    @keyframes msgIn { from { opacity:0; transform: translateY(8px); } to { opacity:1; transform:translateY(0); } }
    .msg.user { flex-direction: row-reverse; }
    .msg-bubble {
      max-width: 78%;
      padding: 10px 14px;
      border-radius: 16px;
      font-size: 13.5px;
      line-height: 1.55;
      word-break: break-word;
    }
    .msg.bot .msg-bubble {
      background: #f0f4f8;
      color: #1e2d3d;
      border-bottom-left-radius: 5px;
    }
    .msg.user .msg-bubble {
      background: var(--navy);
      color: #fff;
      border-bottom-right-radius: 5px;
    }
    .msg-bubble a { color: #22c55e; font-weight: 600; text-decoration: none; }
    .msg-bubble a:hover { text-decoration: underline; }
    .msg-bubble strong { font-weight: 700; }
    .msg-bubble ul { padding-left: 16px; margin-top: 4px; }
    .msg-bubble ul li { margin-bottom: 2px; }

    /* Avatar do bot */
    .bot-av {
      width: 28px; height: 28px; border-radius: 50%;
      background: var(--navy);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }

    /* Chips de sugestão */
    .chat-chips {
      padding: 4px 16px 12px;
      display: flex; gap: 7px; flex-wrap: wrap;
      flex-shrink: 0;
      border-bottom: 1px solid #eef2f7;
    }
    .chip {
      padding: 6px 14px; border-radius: 100px;
      border: 1.5px solid #dde4ec;
      background: transparent;
      font-family: 'DM Sans', sans-serif;
      font-size: 11.5px; font-weight: 500; color: var(--steel);
      cursor: pointer;
      transition: all 0.18s;
      white-space: nowrap;
    }
    .chip:hover { background: var(--navy); border-color: var(--navy); color: #fff; }

    /* Typing indicator */
    .typing-dots {
      display: flex; align-items: center; gap: 4px;
      padding: 10px 14px;
    }
    .typing-dots span {
      width: 7px; height: 7px; border-radius: 50%;
      background: #9db4c8; display: block;
      animation: dot-bounce 1.2s ease-in-out infinite;
    }
    .typing-dots span:nth-child(2) { animation-delay: 0.2s; }
    .typing-dots span:nth-child(3) { animation-delay: 0.4s; }
    @keyframes dot-bounce {
      0%,60%,100% { transform: translateY(0); }
      30% { transform: translateY(-6px); }
    }

    /* Input */
    .chat-input-row {
      display: flex; align-items: center; gap: 8px;
      padding: 12px 14px 14px;
      border-top: 1px solid #eef2f7;
      flex-shrink: 0;
    }
    #chat-input {
      flex: 1;
      border: 1.5px solid #dde4ec;
      border-radius: 100px;
      padding: 10px 16px;
      font-family: 'DM Sans', sans-serif;
      font-size: 13px; color: #1e2d3d;
      outline: none;
      transition: border-color 0.2s;
      background: #f7f9fb;
    }
    #chat-input::placeholder { color: #b0bfcc; }
    #chat-input:focus { border-color: var(--steel); background: #fff; }
    #chat-send {
      width: 40px; height: 40px; border-radius: 50%;
      background: var(--navy); border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      transition: background 0.2s, transform 0.15s;
    }
    #chat-send:hover { background: var(--steel); transform: scale(1.08); }
    #chat-send:active { transform: scale(0.95); }

    /* WA redirect card */
    .wa-card {
      background: linear-gradient(135deg, #075E54, #128C7E);
      border-radius: 12px;
      padding: 12px 14px;
      display: flex; align-items: center; gap: 12px;
      margin-top: 4px;
    }
    .wa-card-text { flex: 1; }
    .wa-card-text p { font-size: 12.5px; color: rgba(255,255,255,0.85); line-height: 1.5; }
    .wa-card-text strong { color: #fff; }
    .wa-card a {
      display: inline-block; padding: 8px 14px;
      background: #fff; color: #075E54;
      font-size: 12px; font-weight: 700;
      border-radius: 8px; text-decoration: none;
      white-space: nowrap; flex-shrink: 0;
      transition: opacity 0.2s;
    }
    .wa-card a:hover { opacity: 0.88; }

    /* ══════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════ */
    @media (max-width: 1100px) {
      .newcatalogo-grid { grid-template-columns: repeat(3,1fr); }
    }
    @media (max-width: 960px) {
      .sobre { padding: 72px 40px 80px; }
      .sobre-inner { grid-template-columns: 1fr; gap: 60px; }
      .sobre-visual { padding-top: 0; padding-bottom: 40px; }
      .sobre-badge { bottom: 0; right: 0; }
      .mvv { padding: 72px 40px 80px; }
      .mvv-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
      .mvv-card--featured { transform: none; }
    }
    @media (max-width: 768px) {
      .topbar { flex-direction: column; align-items: flex-start; height: auto; padding: 14px 20px; gap: 12px; }
      .topbar-logo svg { height: 36px; }
      .topbar-right { gap: 20px; width: 100%; justify-content: flex-start; }
      .navbar { justify-content: flex-start; padding-left: 20px; }
      .nav-links { display: none; }
      .nav-hamburger { display: flex; }
      .nav-drawer { display: flex; }
      .hero { min-height: 75vh; }
      .hero-inner { padding: 44px 20px; }
      .categorias { padding: 48px 20px 56px; }
      .cat-sep { display: none; }
      .cat-circle { width: 110px; height: 110px; gap: 7px; padding: 14px; }
      .cat-circle-name { font-size: 14px; }
      .sobre { padding: 56px 20px 64px; }
      .mvv { padding: 56px 20px 64px; }
      .newcatalogo { padding: 56px 0 64px; }
      .newcatalogo-inner { padding: 0 20px; }
      .newcatalogo-grid { grid-template-columns: repeat(2,1fr); gap: 28px 14px; }
      .newcatalogo-footer { flex-direction: column; text-align: center; padding: 24px; border-radius: 14px; }
      #chat-window { width: calc(100vw - 32px); right: 0; }
    }
    @media (max-width: 420px) {
      .topbar-right { flex-direction: column; gap: 10px; }
      .cat-circle { width: 92px; height: 92px; padding: 10px; gap: 6px; }
      .cat-circle-name { font-size: 12px; }
      .newcatalogo-grid { grid-template-columns: 1fr; }
    }