/* V183 - Header/Footer Global extraído da V164 aprovada. Não alterar visual sem aprovação. */

    :root{
      --navy:#071B4D;
      --navy-2:#031029;
      --gold:#F5A900;
      --gold-2:#FFC107;
      --green:#18A74A;
      --text:#07142f;
      --muted:#6f7890;
      --line:#e9edf5;
      --bg:#ffffff;
      --soft:#f7f8fb;
      --radius:18px;
      --shadow:0 14px 36px rgba(7,27,77,.10);
      --max:1320px;
      --section-pad:22px;
    }

    *{box-sizing:border-box}
    body{
      margin:0;
      font-family:Inter, Arial, sans-serif;
      color:var(--text);
      background:#fff;
    }
    a{text-decoration:none;color:inherit}
    button{font-family:inherit;cursor:pointer;border:0}
    .container{max-width:var(--max);margin:0 auto;padding:0 22px}

    .topbar{
      background:var(--navy-2);
      color:#fff;
      font-size:13px;
      height:38px;
      display:flex;
      align-items:center;
    }
    .topbar .container{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:18px;
      width:100%;
    }
    .top-links{display:flex;align-items:center;gap:24px;white-space:nowrap}
    .top-links span{display:inline-flex;align-items:center;gap:8px;opacity:.95}
    .top-links i{color:var(--gold);font-size:15px}


    .sticky-wrap{
      position:sticky;
      top:0;
      z-index:999;
      background:linear-gradient(180deg,#082057 0%, #071B4D 100%);
      box-shadow:0 10px 30px rgba(3,16,41,.18);
    }

    .main-header{
      position:relative;
    }

    .mega-menu{
      position:absolute;
      left:50%;
      top:100%;
      transform:translateX(-50%) translateY(12px);
      width:min(1320px, calc(100vw - 44px));
      background:#fff;
      color:var(--text);
      border-radius:0 0 18px 18px;
      box-shadow:0 22px 55px rgba(7,27,77,.20);
      border:1px solid #e8edf6;
      padding:28px;
      display:grid;
      grid-template-columns:220px 1fr 230px;
      gap:28px;
      opacity:0;
      visibility:hidden;
      pointer-events:none;
      transition:opacity .22s ease, transform .22s ease, visibility .22s ease;
      z-index:1000;
    }

    .mega-holder.is-open .mega-menu{
      opacity:1;
      visibility:visible;
      pointer-events:auto;
      transform:translateX(-50%) translateY(0);
    }

    .mega-side{
      border-right:1px solid #e8edf6;
      padding-right:18px;
      display:flex;
      flex-direction:column;
      gap:7px;
    }

    .mega-side a{
      height:38px;
      display:flex;
      align-items:center;
      gap:11px;
      border-radius:8px;
      padding:0 12px;
      font-size:13px;
      font-weight:700;
      color:var(--navy);
    }

    .mega-side a:first-child,
    .mega-side a:hover{
      background:#fff7e2;
      color:var(--navy);
    }

    .mega-side i,
    .mega-group i{
      color:var(--gold);
      font-size:18px;
      width:20px;
      text-align:center;
    }

    .mega-groups{
      display:grid;
      grid-template-columns:repeat(4, minmax(0,1fr));
      gap:24px 30px;
    }

    .mega-group h4{
      margin:0 0 10px;
      display:flex;
      align-items:center;
      gap:10px;
      font-size:13px;
      text-transform:uppercase;
      color:var(--navy);
    }

    .mega-group a{
      display:block;
      font-size:12px;
      color:#26324d;
      margin:0 0 8px;
    }

    .mega-group .view-all{
      color:var(--gold);
      font-weight:800;
      margin-top:10px;
    }

    .mega-promo{
      background:linear-gradient(145deg,#071B4D,#031029);
      border-radius:12px;
      padding:18px;
      color:#fff;
      min-height:250px;
      display:flex;
      flex-direction:column;
      justify-content:flex-end;
      position:relative;
      overflow:hidden;
    }

    .mega-promo::before{
      content:"";
      position:absolute;
      inset:18px 18px auto auto;
      width:100px;
      height:130px;
      border-radius:18px;
      background:linear-gradient(160deg,#0c255f,#060b1d);
      box-shadow:-55px 38px 0 -10px #0a1f53;
    }

    .mega-promo h3{
      position:relative;
      margin:0 0 8px;
      color:var(--gold);
      text-transform:uppercase;
      font-size:20px;
      line-height:1.05;
    }

    .mega-promo p{
      position:relative;
      margin:0 0 16px;
      color:#e9eefb;
      font-size:12px;
      line-height:1.45;
    }

    .mega-promo button{
      position:relative;
      background:var(--gold);
      color:#fff;
      height:38px;
      border-radius:6px;
      font-size:12px;
      font-weight:900;
    }


    .mega-group{display:none}
    .mega-menu.mode-all .mega-group{display:block}
    .mega-menu[data-active="escritorio"] .mega-group[data-group="escritorio"],
    .mega-menu[data-active="tecnologia"] .mega-group[data-group="tecnologia"],
    .mega-menu[data-active="bebidas"] .mega-group[data-group="bebidas"],
    .mega-menu[data-active="casa"] .mega-group[data-group="casa"],
    .mega-menu[data-active="bolsas"] .mega-group[data-group="bolsas"],
    .mega-menu[data-active="kits"] .mega-group[data-group="kits"],
    .mega-menu[data-active="sazonais"] .mega-group[data-group="sazonais"],
    .mega-menu[data-active="outras"] .mega-group[data-group="outras"]{display:block}

    .mega-menu:not(.mode-all) .mega-groups{
      grid-template-columns:repeat(1, minmax(0,1fr));
      max-width:360px;
    }

    .mega-menu:not(.mode-all){
      grid-template-columns:220px 1fr 230px;
      width:min(780px, calc(100vw - 44px));
    }

    .menu-link.active-menu{
      color:var(--gold);
    }

    .floating-bar{
      position:fixed;
      left:0;
      top:0;
      width:100%;
      background:linear-gradient(180deg,#082057 0%, #071B4D 100%);
      color:#fff;
      z-index:2000;
      box-shadow:0 10px 30px rgba(3,16,41,.22);
      transform:translateY(-110%);
      opacity:0;
      transition:transform .25s ease, opacity .25s ease;
    }

    .floating-bar.show{
      transform:translateY(0);
      opacity:1;
    }

    .floating-row{
      height:74px;
      display:grid;
      grid-template-columns:210px 1fr auto;
      align-items:center;
      gap:22px;
    }

    .floating-logo{
      display:flex;
      align-items:center;
      gap:10px;
      font-weight:900;
      letter-spacing:2px;
    }

    .floating-logo .mini-m{
      width:44px;
      height:38px;
      display:grid;
      place-items:center;
      font-size:30px;
      font-weight:900;
      position:relative;
    }

    .floating-logo .mini-m::after{
      content:"✦";
      position:absolute;
      right:-4px;
      top:-8px;
      color:var(--gold);
      font-size:16px;
    }

    .floating-search{
      height:42px;
      background:#fff;
      border-radius:6px;
      border:1px solid rgba(245,169,0,.65);
      display:flex;
      align-items:center;
      overflow:hidden;
    }

    .floating-search input{
      width:100%;
      border:0;
      outline:0;
      padding:0 14px;
      font-size:13px;
    }

    .floating-search button{
      width:48px;
      height:42px;
      background:#fff;
      color:var(--navy);
      border-left:1px solid #e6e9f0;
      font-size:18px;
    }

    .floating-menu{
      height:38px;
      display:flex;
      align-items:center;
      gap:20px;
      overflow:hidden;
      font-size:12px;
      font-weight:800;
      border-top:1px solid rgba(255,255,255,.08);
    }

    .floating-menu a{
      display:flex;
      align-items:center;
      gap:7px;
      white-space:nowrap;
    }

    .floating-menu i{
      color:var(--gold);
    }


    .menu-link,
    .all-products,
    .floating-menu a{
      transition:color .18s ease, transform .18s ease, background .18s ease;
    }

    .menu-link:hover,
    .all-products:hover,
    .floating-menu a:hover{
      color:var(--gold);
      transform:translateY(-2px);
    }

    .menu-link i,
    .all-products i,
    .floating-menu i{
      transition:transform .18s ease, color .18s ease;
    }

    .menu-link:hover i,
    .all-products:hover i,
    .floating-menu a:hover i{
      transform:scale(1.12);
      color:var(--gold-2);
    }

    .mega-side a,
    .mega-group a{
      transition:background .18s ease, color .18s ease, transform .18s ease, padding-left .18s ease;
    }

    .mega-side a:hover{
      transform:translateX(4px);
    }

    .mega-group a:hover{
      color:var(--gold);
      padding-left:4px;
    }


    .mobile-bottom-nav,
    .mobile-menu-bar{
      display:none;
    }

    @media(max-width:900px){
      body{
        padding-bottom:72px;
      }

      .topbar{
        display:none;
      }

      .main-header-row{
        display:grid;
        grid-template-columns:1fr;
        min-height:auto;
        padding:14px 0 12px;
      }

      .brand{
        justify-content:center;
        transform:scale(.86);
        transform-origin:center;
        margin-bottom:-4px;
      }

      .search{
        height:44px;
        border-radius:8px;
      }

      .header-actions{
        display:none;
      }

      .nav-row{
        display:none;
      }

      .mobile-menu-bar{
        display:flex;
        align-items:center;
        gap:10px;
        overflow-x:auto;
        padding:10px 0 12px;
        scrollbar-width:none;
      }

      .mobile-menu-bar::-webkit-scrollbar{display:none}

      .mobile-menu-bar a{
        flex:0 0 auto;
        min-height:36px;
        border:1px solid rgba(245,169,0,.45);
        border-radius:999px;
        color:#fff;
        padding:0 13px;
        display:flex;
        align-items:center;
        gap:8px;
        font-size:12px;
        font-weight:800;
        background:rgba(255,255,255,.04);
      }

      .mobile-menu-bar i{
        color:var(--gold);
      }

      .hero-inner{
        padding:32px 0 0;
      }

      .hero h1{
        font-size:33px;
        line-height:1.06;
        text-align:left;
      }

      .hero p{
        font-size:15px;
        margin:14px 0 18px;
      }

      .hero-actions{
        display:grid;
        grid-template-columns:1fr;
        gap:10px;
      }

      .hero-actions .btn{
        width:100%;
        justify-content:center;
        height:44px;
        font-size:12px;
      }

      .hero-products{
        min-height:215px;
        transform:scale(.62);
        transform-origin:top center;
        margin-bottom:-82px;
        margin-top:14px;
      }

      .benefits{
        overflow:hidden;
      }

      .benefits-row{
        display:flex;
        overflow-x:auto;
        scroll-snap-type:x mandatory;
        gap:12px;
        padding:14px 6px;
        scrollbar-width:none;
      }

      .benefits-row::-webkit-scrollbar{display:none}

      .benefit{
        flex:0 0 78%;
        background:#fbfcff;
        border:1px solid #eef1f7;
        border-radius:12px;
        padding:14px;
        scroll-snap-align:start;
      }

      .section{
        padding:28px 0 12px;
      }

      .section-title{
        font-size:17px;
        margin-bottom:18px;
      }

      .category-grid{
        display:flex;
        gap:14px;
        overflow-x:auto;
        scroll-snap-type:x mandatory;
        padding:0 6px;
        scrollbar-width:none;
      }

      .category-grid::-webkit-scrollbar{display:none}

      .category-card{
        flex:0 0 82%;
        height:198px;
        scroll-snap-align:start;
      }

      .product-tabs{
        padding:0 6px;
        gap:10px;
        margin-bottom:14px;
      }

      .product-tabs a{
        flex:0 0 auto;
        white-space:nowrap;
      }

      .product-tabs .active{
        padding:11px 16px;
      }

      .product-grid{
        display:grid;
        grid-template-columns:repeat(2, minmax(0,1fr));
        gap:12px;
        padding:0 6px;
      }

      .product-card{
        height:232px;
        padding:10px;
      }

      .product-img{
        height:104px;
        font-size:62px;
      }

      .product-name{
        font-size:10.5px;
      }

      .price{
        font-size:14px;
      }

      .buy{
        min-width:66px;
        font-size:10px;
      }

      .tiny{
        width:24px;
        height:24px;
        font-size:10px;
      }

      .date-grid{
        display:flex;
        gap:14px;
        overflow-x:auto;
        scroll-snap-type:x mandatory;
        padding:0 6px;
        scrollbar-width:none;
      }

      .date-grid::-webkit-scrollbar{display:none}

      .date-card{
        flex:0 0 82%;
        height:124px;
        scroll-snap-align:start;
      }

      .steps{
        padding:0 6px;
        gap:12px;
      }

      .step{
        min-height:96px;
        padding:16px;
      }

      .institutional{
        padding:26px 0;
      }

      .inst-grid{
        gap:18px;
      }

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

      .blog-grid{
        display:flex;
        gap:14px;
        overflow-x:auto;
        scroll-snap-type:x mandatory;
        padding:0 6px 12px;
        scrollbar-width:none;
      }

      .blog-grid::-webkit-scrollbar{display:none}

      .blog-card{
        flex:0 0 78%;
        scroll-snap-align:start;
      }

      .social-grid{
        padding:4px 6px 14px;
        gap:14px;
      }

      .thumbs{
        grid-template-columns:repeat(3,1fr);
      }

      .faq{
        padding:10px 6px 22px;
      }

      .faq-grid{
        gap:10px;
      }

      .faq-item{
        height:44px;
      }

      .footer{
        padding:26px 0 90px;
      }

      .footer-grid{
        gap:20px;
      }

      .carousel-arrow{
        width:32px;
        height:32px;
        font-size:12px;
      }

      .carousel-arrow.left{
        left:8px;
      }

      .carousel-arrow.right{
        right:8px;
      }

      .mobile-bottom-nav{
        position:fixed;
        left:0;
        bottom:0;
        width:100%;
        height:68px;
        display:grid;
        grid-template-columns:repeat(5,1fr);
        background:#fff;
        border-top:1px solid #e8ecf4;
        box-shadow:0 -10px 26px rgba(7,27,77,.12);
        z-index:3000;
      }

      .mobile-bottom-nav a{
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;
        gap:5px;
        font-size:10px;
        font-weight:800;
        color:var(--navy);
      }

      .mobile-bottom-nav i{
        font-size:18px;
        color:var(--gold);
      }

      .floating-bar{
        display:none !important;
      }
    }

    @media(max-width:900px){
      .floating-bar{display:none}
    }

    @media(max-width:900px){
      .sticky-wrap{position:static}
      .mega-menu{display:none}
    }

    .main-header{
      background:linear-gradient(180deg,#082057 0%, #071B4D 100%);
      color:#fff;
      border-bottom:1px solid rgba(255,255,255,.08);
    }
    .main-header-row{
      min-height:92px;
      display:grid;
      grid-template-columns:250px 1fr 330px;
      align-items:center;
      gap:26px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:13px;
    }
    .brand-mark{
      width:74px;
      height:58px;
      position:relative;
      display:grid;
      place-items:center;
      color:#fff;
      font-size:45px;
      font-weight:900;
      line-height:1;
    }
    .brand-mark::before{
      content:"✦";
      position:absolute;
      right:0;
      top:-6px;
      color:var(--gold);
      font-size:25px;
    }
    .brand-mark::after{
      content:"";
      position:absolute;
      left:3px;
      bottom:2px;
      width:68px;
      height:22px;
      border-bottom:5px solid #fff;
      border-radius:0 0 70% 70%;
      transform:rotate(-10deg);
      box-shadow:8px 7px 0 -3px var(--gold);
    }
    .brand-name strong{
      display:block;
      font-size:28px;
      letter-spacing:4px;
      line-height:1;
      font-weight:800;
    }
    .brand-name small{
      display:flex;
      align-items:center;
      gap:8px;
      color:#fff;
      letter-spacing:6px;
      font-size:13px;
      margin-top:7px;
      font-weight:700;
    }
    .brand-name small::before,
    .brand-name small::after{
      content:"";
      width:34px;
      height:2px;
      background:var(--gold);
      display:block;
    }

    .search{
      height:48px;
      border:1px solid rgba(245,169,0,.65);
      border-radius:7px;
      display:flex;
      align-items:center;
      background:#fff;
      overflow:hidden;
    }
    .search input{
      width:100%;
      border:0;
      outline:0;
      padding:0 18px;
      font-size:14px;
      color:var(--text);
    }
    .search button{
      width:62px;
      height:48px;
      background:#fff;
      color:var(--navy);
      border-left:1px solid #e6e9f0;
      font-size:22px;
    }
    .header-actions{
      display:flex;
      justify-content:flex-end;
      align-items:center;
      gap:22px;
    }
    .header-action{
      display:flex;
      align-items:center;
      gap:10px;
      color:#fff;
      font-weight:700;
      font-size:13px;
      line-height:1.1;
    }
    .header-action i{
      color:var(--gold);
      font-size:31px;
    }
    .cart-icon{position:relative}
    .cart-count{
      position:absolute;
      right:-7px;
      top:-8px;
      background:var(--gold);
      color:var(--navy);
      border-radius:50%;
      width:18px;height:18px;
      font-size:11px;
      display:grid;place-items:center;
      font-weight:900;
    }

    .nav-row{
      min-height:48px;
      display:flex;
      align-items:center;
      gap:24px;
      color:#fff;
      font-size:13px;
      font-weight:700;
      overflow:hidden;
    }
    .all-products{
      color:var(--gold);
      display:flex;
      align-items:center;
      gap:9px;
      min-width:180px;
      text-transform:capitalize;
    }
    .menu-link{
      display:flex;
      align-items:center;
      gap:8px;
      white-space:nowrap;
      color:#fff;
    }
    .menu-link i{color:var(--gold);font-size:16px}

    .hero{
      background:linear-gradient(135deg,#071B4D 0%,#071B4D 45%,#061331 100%);
      color:#fff;
      position:relative;
      overflow:hidden;
    }
    .hero::before{
      content:"";
      position:absolute;
      right:-40px;
      top:0;
      width:45%;
      height:100%;
      background:linear-gradient(125deg,transparent 20%,rgba(245,169,0,.18),transparent 60%);
      transform:skewX(-12deg);
    }
    .hero-inner{
      min-height:400px;
      display:grid;
      grid-template-columns:44% 56%;
      align-items:center;
      position:relative;
      z-index:1;
    }
    .hero h1{
      margin:0;
      font-size:52px;
      line-height:1.02;
      letter-spacing:-1.5px;
      font-weight:900;
    }
    .hero h1 span{color:var(--gold)}
    .hero p{
      font-size:18px;
      line-height:1.55;
      max-width:430px;
      margin:24px 0 28px;
      color:#fff;
    }
    .hero-actions{display:flex;gap:14px;flex-wrap:wrap}
    .btn{
      height:48px;
      border-radius:7px;
      padding:0 20px;
      display:inline-flex;
      align-items:center;
      gap:10px;
      font-size:13px;
      font-weight:900;
      text-transform:uppercase;
      border:1px solid transparent;
    }
    .btn-gold{background:var(--gold);color:#fff}
    .btn-outline{background:transparent;color:#fff;border-color:var(--gold)}
    .btn-whats{background:transparent;color:#fff;border-color:var(--green)}
    .btn-whats i{color:#2bd766}

    .hero-products{
      min-height:360px;
      display:flex;
      align-items:flex-end;
      justify-content:center;
      gap:18px;
      position:relative;
      padding-bottom:35px;
    }
    .fake-product{
      background:linear-gradient(160deg,#0a1e50,#050b19);
      border:1px solid rgba(255,255,255,.12);
      box-shadow:0 22px 55px rgba(0,0,0,.35);
      position:relative;
    }
    .bottle{width:82px;height:255px;border-radius:42px 42px 18px 18px}
    .bottle::before{content:"";position:absolute;top:-35px;left:26px;width:30px;height:50px;background:#d9dde6;border-radius:10px 10px 3px 3px}
    .mug{width:135px;height:125px;border-radius:12px;margin-bottom:5px}
    .bag{width:220px;height:260px;border-radius:24px 24px 14px 14px}
    .notebook{width:180px;height:245px;border-radius:14px;transform:rotate(-8deg);margin-bottom:-15px}
    .gift{width:150px;height:140px;border-radius:14px;margin-bottom:70px;background:#08183d}
    .fake-product::after{
      content:"M";
      position:absolute;
      inset:0;
      display:grid;
      place-items:center;
      color:#fff;
      font-size:42px;
      font-weight:900;
      text-shadow:0 0 0 #fff;
    }
    .gift::before{
      content:"";
      position:absolute;
      left:66px;top:0;width:18px;height:140px;background:var(--gold);
      box-shadow:-66px 58px 0 -6px var(--gold), 66px 58px 0 -6px var(--gold);
    }
    .hero-dots{
      position:absolute;
      left:50%;
      bottom:22px;
      transform:translateX(-50%);
      display:flex;
      gap:10px;
    }
    .dot{width:10px;height:10px;border-radius:50%;background:#fff;opacity:.55}
    .dot.active{opacity:1}

    .benefits{
      background:#fff;
      border-bottom:1px solid var(--line);
      position:relative;
    }
    .benefits-row{
      height:82px;
      display:grid;
      grid-template-columns:repeat(5,1fr);
      gap:18px;
      align-items:center;
    }
    .benefit{
      display:flex;
      align-items:center;
      gap:13px;
      min-width:0;
    }
    .benefit i{font-size:27px;color:var(--gold)}
    .benefit strong{font-size:13px;display:block}
    .benefit small{font-size:12px;color:var(--muted)}
    .carousel-arrow{
      width:38px;height:38px;
      border:1px solid #f1c15c;
      background:#fff;
      color:var(--gold);
      border-radius:50%;
      display:grid;
      place-items:center;
      box-shadow:0 8px 20px rgba(7,27,77,.08);
      position:absolute;
      top:50%;
      transform:translateY(-50%);
      z-index:3;
    }
    .carousel-arrow.left{left:18px}
    .carousel-arrow.right{right:18px}

    .section{
      padding:34px 0 18px;
      position:relative;
      background:#fff;
    }
    .section-title{
      text-align:center;
      margin:0 0 24px;
      font-size:21px;
      line-height:1.2;
      font-weight:900;
      letter-spacing:.2px;
      text-transform:uppercase;
    }
    .section-title::after{
      content:"";
      display:block;
      width:44px;height:3px;
      background:var(--gold);
      margin:10px auto 0;
      border-radius:99px;
    }

    .category-grid{
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:28px;
      padding:0 var(--section-pad);
      position:relative;
    }
    .category-card{
      height:214px;
      background:#f4f5f8;
      border-radius:8px;
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      position:relative;
      overflow:hidden;
      box-shadow:0 12px 22px rgba(7,27,77,.05);
    }
    .category-card .badge{
      position:absolute;left:16px;top:14px;
      width:32px;height:32px;border-radius:50%;
      border:1px solid var(--gold);
      color:var(--gold);
      display:grid;place-items:center;
      font-size:14px;
      background:#fff;
    }
    .category-visual{
      width:120px;height:120px;
      display:grid;place-items:center;
      font-size:78px;
      color:#111;
      margin-bottom:10px;
    }
    .category-card strong{
      font-size:15px;
      text-transform:uppercase;
      font-weight:900;
      color:var(--navy);
    }
    .card-dots{text-align:center;margin:20px 0 0}
    .card-dots span{display:inline-block;width:9px;height:9px;border-radius:50%;background:#d8dce6;margin:0 4px}
    .card-dots span:first-child{background:var(--gold)}

    .product-tabs{
      display:flex;
      justify-content:center;
      align-items:center;
      gap:38px;
      margin:-4px 0 18px;
      font-size:12px;
      font-weight:700;
      color:#33405d;
      text-transform:uppercase;
      position:relative;
    }
    .product-tabs .active{
      background:var(--navy);
      color:#fff;
      padding:13px 22px;
      border-radius:6px;
    }
    .see-all{color:var(--gold);margin-left:10px}
    .product-grid{
      display:grid;
      grid-template-columns:repeat(6,1fr);
      gap:16px;
      padding:0 var(--section-pad);
    }
    .product-card{
      border:1px solid #e7ebf2;
      border-radius:8px;
      background:#fff;
      padding:12px;
      height:238px;
      box-shadow:0 9px 18px rgba(7,27,77,.04);
      position:relative;
    }
    .product-img{
      height:112px;
      display:grid;
      place-items:center;
      font-size:72px;
      margin-bottom:8px;
      color:#111;
    }
    .product-code{font-size:10px;color:#38435e;font-weight:700}
    .product-name{font-size:11px;line-height:1.25;color:#17223b;margin:3px 0 8px;min-height:28px}
    .price{font-size:15px;font-weight:900;margin-bottom:8px}
    .product-bottom{display:flex;align-items:center;gap:5px}
    .buy{
      background:var(--gold);
      color:#fff;
      height:27px;
      min-width:75px;
      border-radius:4px;
      font-size:11px;
      font-weight:800;
    }
    .tiny{
      width:25px;height:25px;
      border:1px solid #e1e5ee;
      border-radius:4px;
      color:#5d667c;
      display:grid;
      place-items:center;
      font-size:11px;
      background:#fff;
    }

    .date-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:22px;
      padding:0 var(--section-pad);
    }
    .date-card{
      height:132px;
      border-radius:10px;
      padding:20px;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      overflow:hidden;
      position:relative;
    }
    .date-card h3{
      margin:0 0 18px;
      font-size:20px;
      line-height:1.05;
      text-transform:uppercase;
    }
    .date-card button{
      background:#fff;
      color:#2f3d5f;
      height:28px;
      border-radius:5px;
      padding:0 12px;
      font-size:11px;
      font-weight:700;
    }
    .date-visual{
      font-size:80px;
      align-self:center;
      filter:drop-shadow(0 8px 8px rgba(0,0,0,.08));
    }
    .pink{background:#ffe2ed;color:#e52774}
    .blue{background:#dcefff;color:#1474c9}
    .xmas{background:#ffe8d8;color:#d93d24}
    .dad{background:#dff3ef;color:#185f56}

    .steps{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:18px;
      padding:0 34px 16px;
    }
    .step{
      min-height:100px;
      border:1px solid var(--line);
      border-radius:9px;
      background:#fbfcff;
      display:flex;
      align-items:center;
      gap:18px;
      padding:20px;
      position:relative;
    }
    .step:not(:last-child)::after{
      content:"›";
      position:absolute;
      right:-15px;
      color:var(--navy);
      font-size:30px;
    }
    .step i{font-size:35px;color:var(--navy)}
    .step b{font-size:12px;color:var(--gold)}
    .step strong{display:block;font-size:13px;margin:4px 0}
    .step small{color:#667088;font-size:11px;line-height:1.35}

    .institutional{
      background:var(--navy);
      color:#fff;
      padding:30px 0;
    }
    .inst-grid{
      display:grid;
      grid-template-columns:1.25fr repeat(3,1fr) 1.6fr;
      gap:28px;
      align-items:center;
    }
    .inst-box:not(:last-child){border-right:1px solid rgba(255,255,255,.22)}
    .inst-box h3{margin:0 0 10px;font-size:16px}
    .inst-box p{margin:0 0 16px;color:#d9e0f3;font-size:13px;line-height:1.5}
    .small-btn{
      border:1px solid var(--gold);
      color:#fff;
      background:transparent;
      border-radius:5px;
      height:34px;
      padding:0 14px;
      font-size:11px;
      font-weight:800;
    }
    .metric{text-align:center}
    .metric i{
      width:62px;height:62px;border-radius:50%;
      border:2px solid var(--gold);
      color:var(--gold);
      display:grid;place-items:center;
      font-size:27px;
      margin:0 auto 14px;
    }
    .metric strong{font-size:21px;display:block}
    .metric small{font-size:12px;color:#d9e0f3}
    .vip{
      border:1px solid var(--gold);
      border-radius:8px;
      padding:18px 20px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
    }
    .vip h3{font-size:16px;margin:0 0 8px}
    .vip h3 span{color:var(--gold)}
    .vip p{font-size:12px;margin:0 0 12px;color:#d9e0f3}
    .vip i{font-size:58px;color:#25d366}

    .blog-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:18px;
      padding:0 var(--section-pad) 14px;
    }
    .blog-card{
      border:1px solid var(--line);
      border-radius:7px;
      overflow:hidden;
      background:#fff;
    }
    .blog-img{
      height:98px;
      background:linear-gradient(135deg,#0B1530,#1f2c4d);
      color:var(--gold);
      display:flex;
      align-items:flex-start;
      padding:10px;
      font-weight:900;
    }
    .blog-card div:last-child{padding:12px}
    .blog-card h3{font-size:13px;line-height:1.3;margin:0 0 10px}
    .blog-card a{font-size:12px;font-weight:700;color:#25304a}

    .social-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:24px;
      padding:4px var(--section-pad) 18px;
    }
    .social-box{
      background:#fbfcff;
      border-radius:9px;
      padding:20px;
      border:1px solid #eef1f7;
    }
    .social-box h3{margin:0;font-size:15px}
    .social-box p{margin:4px 0 16px;color:#667088;font-size:12px}
    .thumbs{display:grid;grid-template-columns:repeat(5,1fr);gap:10px}
    .thumb{
      height:72px;background:#111c3d;border-radius:5px;
      display:grid;place-items:center;color:#fff;position:relative;overflow:hidden
    }
    .thumb::after{content:"▶";width:32px;height:32px;border-radius:50%;background:rgba(255,255,255,.75);color:#111;display:grid;place-items:center}
    .social-btn{
      margin-top:16px;
      border:1px solid var(--gold);
      color:var(--gold);
      background:#fff;
      height:34px;
      border-radius:4px;
      padding:0 15px;
      font-size:12px;
      font-weight:900;
    }

    .faq{
      padding:10px var(--section-pad) 28px;
    }
    .faq-title{
      color:#a16b00;
      text-transform:uppercase;
      font-size:14px;
      font-weight:900;
      margin:0 0 12px;
    }
    .faq-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:14px;
    }
    .faq-item{
      height:38px;
      background:#fbfcff;
      border:1px solid #e8ecf4;
      border-radius:6px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:0 14px;
      font-size:12px;
      font-weight:700;
    }

    .footer{
      background:var(--navy);
      color:#fff;
      padding:30px 0 18px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.25fr 1fr 1fr 1fr 1.2fr;
      gap:30px;
    }
    .footer h4{margin:0 0 13px;font-size:14px}
    .footer p,.footer li{font-size:12px;line-height:1.6;color:#d9e0f3}
    .footer ul{list-style:none;margin:0;padding:0}
    .footer-brand .brand{margin-bottom:10px}
    .footer-brand .brand-mark{width:46px;height:38px;font-size:29px}
    .footer-brand .brand-name strong{font-size:18px;letter-spacing:2px}
    .footer-brand .brand-name small{font-size:8px;letter-spacing:3px}
    .social-icons{display:flex;gap:10px;margin-top:14px}
    .social-icons span{
      width:27px;height:27px;border-radius:50%;
      border:1px solid rgba(255,255,255,.35);
      display:grid;place-items:center;
      font-size:12px;
    }
    .payments{display:flex;gap:7px;flex-wrap:wrap}
    .pay{
      background:#fff;color:var(--navy);height:30px;min-width:48px;
      border-radius:4px;display:grid;place-items:center;font-weight:900;font-size:12px;
    }
    .copy{
      margin-top:28px;
      padding-top:14px;
      border-top:1px solid rgba(255,255,255,.12);
      text-align:center;
      font-size:12px;
      color:#cfd8ee;
    }

    @media(max-width:900px){
      .topbar{height:auto;padding:8px 0}
      .topbar .container,.top-links{gap:10px;flex-wrap:wrap}
      .main-header-row{grid-template-columns:1fr;gap:14px;padding:18px 0}
      .brand{justify-content:center}
      .header-actions{justify-content:center}
      .nav-row{overflow-x:auto;padding-bottom:12px}
      .hero-inner{grid-template-columns:1fr;min-height:auto;padding:38px 0 20px}
      .hero h1{font-size:38px}
      .hero-products{min-height:260px;transform:scale(.78);transform-origin:top center;margin-bottom:-60px}
      .benefits-row{grid-template-columns:1fr 1fr;height:auto;padding:18px 0}
      .category-grid{grid-template-columns:1fr 1fr;padding:0 10px;gap:14px}
      .product-grid{grid-template-columns:1fr 1fr;padding:0 10px}
      .date-grid{grid-template-columns:1fr;padding:0 10px}
      .steps{grid-template-columns:1fr;padding:0 10px}
      .step::after{display:none}
      .inst-grid,.blog-grid,.social-grid,.faq-grid,.footer-grid{grid-template-columns:1fr}
      .inst-box:not(:last-child){border-right:0;border-bottom:1px solid rgba(255,255,255,.18);padding-bottom:18px}
      .product-tabs{overflow:auto;justify-content:flex-start;padding:0 10px;gap:16px}
    }
  
    /* MOBILE V9 - padrão igual desktop, sem segundo menu, carrosséis em 1 linha */
    @media(max-width:900px){
      .mobile-menu-bar{display:none !important;}

      .nav-row{
        display:flex !important;
        overflow-x:auto;
        gap:10px;
        padding:10px 0 14px;
        scrollbar-width:none;
      }
      .nav-row::-webkit-scrollbar{display:none;}

      .nav-row a{
        flex:0 0 auto;
        min-height:38px;
        border:1px solid rgba(245,169,0,.42);
        border-radius:999px;
        padding:0 13px;
        background:rgba(255,255,255,.04);
        font-size:12px;
      }

      .all-products{
        min-width:auto;
      }

      .mega-menu{
        display:grid !important;
        position:fixed;
        left:12px;
        right:12px;
        top:118px;
        width:auto !important;
        transform:translateY(12px);
        max-height:72vh;
        overflow:auto;
        grid-template-columns:1fr !important;
        border-radius:16px;
        padding:16px;
        gap:16px;
      }

      .mega-holder.is-open .mega-menu{
        transform:translateY(0);
      }

      .mega-side{
        display:flex;
        flex-direction:row;
        overflow-x:auto;
        border-right:0;
        border-bottom:1px solid #e8edf6;
        padding:0 0 12px;
        gap:8px;
        scrollbar-width:none;
      }
      .mega-side::-webkit-scrollbar{display:none;}

      .mega-side a{
        flex:0 0 auto;
        white-space:nowrap;
        height:34px;
        font-size:12px;
      }

      .mega-groups{
        display:grid;
        grid-template-columns:1fr !important;
        gap:12px;
      }

      .mega-menu.mode-all .mega-groups{
        grid-template-columns:1fr !important;
      }

      .mega-promo{
        min-height:150px;
      }

      .hero-inner{
        display:block;
        min-height:auto;
        padding:26px 0 18px;
      }

      .hero h1{
        font-size:30px;
        line-height:1.05;
        max-width:320px;
      }

      .hero p{
        font-size:14px;
        max-width:320px;
      }

      .hero-products{
        min-height:175px;
        transform:scale(.50);
        transform-origin:top center;
        margin-top:16px;
        margin-bottom:-92px;
        width:200%;
        margin-left:-50%;
      }

      .hero-dots{
        bottom:10px;
      }

      .category-grid,
      .date-grid,
      .blog-grid{
        display:flex !important;
        flex-wrap:nowrap !important;
        overflow-x:auto;
        scroll-snap-type:x mandatory;
        gap:14px;
        padding:0 6px;
        scrollbar-width:none;
      }

      .category-grid::-webkit-scrollbar,
      .date-grid::-webkit-scrollbar,
      .blog-grid::-webkit-scrollbar,
      .product-carousel::-webkit-scrollbar{
        display:none;
      }

      .category-card{
        flex:0 0 82%;
        scroll-snap-align:start;
      }

      .date-card{
        flex:0 0 82%;
        scroll-snap-align:start;
      }

      .blog-card{
        flex:0 0 78%;
        scroll-snap-align:start;
      }

      .product-grid{
        display:flex !important;
        flex-wrap:nowrap !important;
        overflow-x:auto;
        scroll-snap-type:x mandatory;
        gap:12px;
        padding:0 6px;
        scrollbar-width:none;
      }

      .product-card{
        flex:0 0 calc(50% - 6px);
        scroll-snap-align:start;
        height:232px;
      }

      .carousel-arrow{
        display:grid;
        top:50%;
      }

      .main-header-row{
        padding-bottom:4px;
      }

      .brand{
        margin-bottom:0;
      }

      .search{
        margin-top:4px;
      }
    }

  
    /* MOBILE V10 - ajustes reais para celular */
    @media(max-width:900px){
      html, body{
        overflow-x:hidden;
      }

      .main-header{
        position:relative;
      }

      .nav-row{
        display:flex !important;
        overflow-x:auto !important;
        overflow-y:hidden !important;
        flex-wrap:nowrap !important;
        scroll-snap-type:x proximity;
        -webkit-overflow-scrolling:touch;
        touch-action:pan-x;
        overscroll-behavior-x:contain;
      }

      .nav-row a{
        scroll-snap-align:start;
      }

      .mega-menu{
        display:grid !important;
        position:absolute !important;
        left:12px !important;
        right:12px !important;
        top:100% !important;
        width:auto !important;
        max-height:68vh;
        overflow:auto;
        z-index:5000;
        transform:translateY(10px) !important;
      }

      .mega-holder.is-open .mega-menu{
        opacity:1 !important;
        visibility:visible !important;
        pointer-events:auto !important;
        transform:translateY(0) !important;
      }

      .mega-menu.mode-all{
        grid-template-columns:1fr !important;
      }

      .mega-menu:not(.mode-all){
        grid-template-columns:1fr !important;
      }

      .mega-menu:not(.mode-all) .mega-groups{
        max-width:none !important;
      }

      /* Banner mobile em formato horizontal real, como futura imagem JPEG */
      .hero{
        background:#071B4D;
      }

      .hero-inner{
        display:grid !important;
        grid-template-columns:44% 56% !important;
        align-items:center;
        min-height:160px !important;
        padding:0 !important;
        position:relative;
      }

      .hero h1{
        font-size:19px !important;
        line-height:1.02 !important;
        letter-spacing:-.4px;
        max-width:165px;
      }

      .hero p{
        font-size:10.5px !important;
        line-height:1.25 !important;
        margin:8px 0 0 !important;
        max-width:155px;
      }

      .hero-actions{
        display:none !important;
      }

      .hero-products{
        min-height:150px !important;
        height:150px !important;
        transform:scale(.42) !important;
        transform-origin:center center !important;
        width:360px !important;
        margin:0 !important;
        padding-bottom:0 !important;
        justify-content:center;
        align-items:flex-end;
        overflow:visible;
      }

      .hero-dots{
        bottom:8px !important;
      }

      /* Todas as camadas principais em uma linha com carrossel */
      .category-grid,
      .date-grid,
      .blog-grid,
      .product-grid,
      .steps,
      .inst-grid{
        display:flex !important;
        flex-wrap:nowrap !important;
        overflow-x:auto !important;
        overflow-y:hidden !important;
        scroll-snap-type:x mandatory;
        -webkit-overflow-scrolling:touch;
        touch-action:pan-x;
        overscroll-behavior-x:contain;
        gap:14px;
        padding-left:6px !important;
        padding-right:6px !important;
        scrollbar-width:none;
      }

      .category-grid::-webkit-scrollbar,
      .date-grid::-webkit-scrollbar,
      .blog-grid::-webkit-scrollbar,
      .product-grid::-webkit-scrollbar,
      .steps::-webkit-scrollbar,
      .inst-grid::-webkit-scrollbar{
        display:none;
      }

      .category-card,
      .date-card,
      .blog-card,
      .step,
      .inst-box,
      .vip{
        scroll-snap-align:start;
        flex-shrink:0 !important;
      }

      .category-card,
      .date-card{
        flex-basis:82% !important;
      }

      .product-card{
        flex:0 0 calc(50% - 7px) !important;
        height:232px !important;
        scroll-snap-align:start;
        transform:none !important;
      }

      .product-card *{
        touch-action:pan-x;
      }

      .steps .step{
        flex-basis:82% !important;
      }

      .inst-grid .inst-box,
      .inst-grid .vip{
        flex-basis:82% !important;
        border-right:0 !important;
        border-bottom:0 !important;
        min-height:150px;
      }

      .inst-grid{
        align-items:stretch;
      }

      .metric{
        background:rgba(255,255,255,.04);
        border:1px solid rgba(255,255,255,.12);
        border-radius:12px;
        padding:18px;
      }

      .vip{
        flex-direction:column;
      }

      /* EXCEÇÕES: Instagram/Youtube e FAQ ficam 1 por linha */
      .social-grid,
      .faq-grid{
        display:grid !important;
        grid-template-columns:1fr !important;
        overflow:visible !important;
        padding-left:6px !important;
        padding-right:6px !important;
      }

      .social-box,
      .faq-item{
        width:100%;
      }

      /* evita balanço vertical quando arrasta as vitrines */
      .product-grid{
        align-items:stretch !important;
      }

      .product-card{
        will-change:transform;
      }
    }

  
    /* MOBILE V11 refinamentos finais */
    @media(max-width:900px){

      /* fecha menu mais facilmente */
      .mega-menu{
        padding-top:48px !important;
      }

      .mega-menu::before{
        content:"✕ Fechar";
        position:absolute;
        right:14px;
        top:12px;
        background:#fff7e2;
        color:var(--navy);
        border:1px solid #f2d58b;
        border-radius:999px;
        height:28px;
        padding:0 12px;
        display:flex;
        align-items:center;
        justify-content:center;
        font-size:11px;
        font-weight:900;
        z-index:5;
      }

      /* remove setas do instagram/youtube */
      .social-grid + .carousel-arrow,
      .social-grid .carousel-arrow{
        display:none !important;
      }

      /* qualidade/frete automático sem setas */
      .benefits{
        overflow:hidden;
      }

      .benefits .carousel-arrow{
        display:none !important;
      }

      .benefits-row{
        animation:benefitsScroll 28s linear infinite;
        width:max-content;
        padding-right:30px;
      }

      @keyframes benefitsScroll{
        0%{
          transform:translateX(0);
        }
        100%{
          transform:translateX(-35%);
        }
      }

      .benefit{
        min-width:255px;
      }

      /* institucional melhorado */
      .inst-grid{
        display:flex !important;
        flex-wrap:nowrap !important;
        overflow-x:auto !important;
        scroll-snap-type:x mandatory;
        gap:14px;
        padding:0 6px !important;
        align-items:stretch !important;
        scrollbar-width:none;
      }

      .inst-grid::-webkit-scrollbar{
        display:none;
      }

      .inst-box,
      .vip{
        flex:0 0 84% !important;
        scroll-snap-align:center;
        min-height:210px;
        border-radius:16px;
        padding:22px !important;
        background:rgba(255,255,255,.05);
        border:1px solid rgba(255,255,255,.10);
        display:flex;
        flex-direction:column;
        justify-content:center;
        text-align:center;
      }

      .metric{
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;
      }

      .metric i{
        margin-bottom:12px;
      }

      .vip{
        align-items:center !important;
      }

      .vip p{
        max-width:260px;
      }

      /* remove setas visualmente de insta/youtube */
      .social-grid{
        position:relative;
      }

      .social-grid::before,
      .social-grid::after{
        display:none !important;
      }

    }

  
    /* MOBILE V12 - correções solicitadas */
    @media(max-width:900px){

      /* Botão fechar flutuante dentro do menu expandido */
      .mega-close-btn{
        display:flex !important;
        position:sticky;
        top:0;
        margin-left:auto;
        margin-bottom:12px;
        z-index:30;
        width:max-content;
        height:32px;
        align-items:center;
        justify-content:center;
        padding:0 14px;
        border-radius:999px;
        background:#fff7e2;
        color:var(--navy);
        border:1px solid #f2d58b;
        font-size:11px;
        font-weight:900;
        box-shadow:0 6px 18px rgba(7,27,77,.10);
      }

      .mega-menu{
        padding-top:14px !important;
      }

      .mega-menu::before{
        display:none !important;
      }

      /* Banner do mega menu para Comunidade WhatsApp */
      .mega-promo h3{
        font-size:18px;
      }

      .mega-promo h3::before{
        content:"ENTRE PARA NOSSA ";
        color:#fff;
      }

      .mega-promo h3{
        color:var(--gold);
      }

      .mega-promo p{
        font-size:12px;
      }

      .mega-promo button{
        background:#18A74A;
      }

      /* Benefícios: linha única horizontal, sem quebrar */
      .benefits-row{
        display:flex !important;
        flex-wrap:nowrap !important;
        overflow-x:auto !important;
        overflow-y:hidden !important;
        animation:none !important;
        transform:none !important;
        width:auto !important;
        gap:12px;
        padding:14px 6px !important;
        scroll-snap-type:x mandatory;
        -webkit-overflow-scrolling:touch;
      }

      .benefit{
        flex:0 0 82% !important;
        min-width:82% !important;
        max-width:82% !important;
        scroll-snap-align:start;
        white-space:normal;
      }

      /* Evitar corte do último card nas vitrines */
      .product-grid{
        scroll-padding-left:6px;
        padding-right:28px !important;
      }

      .product-grid::after{
        content:"";
        flex:0 0 10px;
      }

      .product-card{
        flex:0 0 calc(50% - 8px) !important;
        min-width:calc(50% - 8px) !important;
        max-width:calc(50% - 8px) !important;
      }

      /* Remover setas entre Instagram e YouTube / região social */
      .social-grid ~ .carousel-arrow,
      .section:has(.social-grid) > .carousel-arrow{
        display:none !important;
      }

      /* fallback: esconde setas dentro da seção final de blog/social no mobile */
      .section:has(.blog-grid) > .carousel-arrow{
        display:none !important;
      }
    }

    .mega-close-btn{
      display:none;
    }

  
    /* MOBILE V13 - corrigir corte inferior dos cards sem alterar largura anterior */
    @media(max-width:900px){
      .product-grid{
        padding-bottom:18px !important;
        margin-bottom:-2px;
        align-items:stretch !important;
      }

      .product-card{
        height:248px !important;
        padding-bottom:14px !important;
        overflow:visible !important;
      }

      .section{
        overflow:visible;
      }

      .product-bottom{
        margin-top:2px;
      }

      /* volta a proporção lateral dos cards como antes */
      .product-card{
        flex:0 0 calc(50% - 6px) !important;
        min-width:calc(50% - 6px) !important;
        max-width:calc(50% - 6px) !important;
      }

      .product-grid::after{
        flex:0 0 6px !important;
      }
    }

  
    /* V14 - looping suave em mobile e título redes sociais */
    .social-section-title{
      text-align:center;
      margin:26px 0 18px;
      font-size:21px;
      line-height:1.2;
      font-weight:900;
      letter-spacing:.2px;
      text-transform:uppercase;
      color:var(--navy);
    }

    .social-section-title::after{
      content:"";
      display:block;
      width:44px;
      height:3px;
      background:var(--gold);
      margin:10px auto 0;
      border-radius:99px;
    }

    @media(max-width:900px){
      .social-section-title{
        font-size:17px;
        margin:24px 0 16px;
      }

      .benefits-row,
      .category-grid,
      .date-grid,
      .product-grid,
      .blog-grid{
        scroll-behavior:smooth;
      }

      .benefits-row.is-autoplaying,
      .category-grid.is-autoplaying,
      .date-grid.is-autoplaying,
      .product-grid.is-autoplaying{
        cursor:grab;
      }
    }

  
    /* V15 - volta carrosséis como antes, benefícios em movimento e topo móvel fixo */
    @media(max-width:900px){

      /* remove clones gerados pela v14, caso algum navegador mantenha cache */
      [aria-hidden="true"]{
        display:none !important;
      }

      .category-grid,
      .date-grid,
      .product-grid,
      .blog-grid{
        scroll-behavior:auto !important;
      }

      .category-grid.is-autoplaying,
      .date-grid.is-autoplaying,
      .product-grid.is-autoplaying{
        cursor:auto !important;
      }

      /* Benefícios em linha única com animação real por trilho duplicado visual */
      .benefits{
        overflow:hidden !important;
      }

      .benefits-row{
        display:flex !important;
        flex-wrap:nowrap !important;
        overflow:visible !important;
        width:max-content !important;
        gap:12px !important;
        padding:14px 6px !important;
        animation:benefitsMarquee 24s linear infinite !important;
      }

      .benefits-row:hover{
        animation-play-state:paused !important;
      }

      .benefits-row .benefit{
        flex:0 0 280px !important;
        min-width:280px !important;
        max-width:280px !important;
      }

      @keyframes benefitsMarquee{
        0%{ transform:translateX(0); }
        100%{ transform:translateX(-50%); }
      }

      /* Topo mobile congelável no mesmo estilo da home */
      .sticky-wrap{
        position:sticky !important;
        top:0 !important;
        z-index:2500 !important;
        background:linear-gradient(180deg,#082057 0%, #071B4D 100%);
        box-shadow:0 10px 26px rgba(3,16,41,.22);
      }

      .main-header-row{
        padding:10px 0 8px !important;
      }

      .brand{
        justify-content:flex-start !important;
        transform:scale(.74) !important;
        transform-origin:left center !important;
        height:44px;
        overflow:hidden;
      }

      .main-header-row{
        grid-template-columns:140px 1fr !important;
        gap:10px !important;
        align-items:center !important;
      }

      .search{
        height:40px !important;
        margin-top:0 !important;
      }

      .search input{
        font-size:12px !important;
      }

      .search button{
        height:40px !important;
        width:44px !important;
        font-size:16px !important;
      }

      .nav-row{
        padding:8px 0 10px !important;
      }

      .nav-row a{
        min-height:34px !important;
        font-size:11px !important;
        padding:0 12px !important;
      }

      /* esconde floating desktop no mobile */
      .floating-bar{
        display:none !important;
      }
    }

  
    /* V16 - ajustes finais solicitados */
    @media(max-width:900px){
      body{
        padding-bottom:0 !important;
        padding-top:132px !important;
      }

      .mobile-bottom-nav{
        display:none !important;
      }

      /* topo realmente fixo no mobile */
      .sticky-wrap{
        position:fixed !important;
        top:0 !important;
        left:0 !important;
        right:0 !important;
        width:100% !important;
        z-index:6000 !important;
        background:linear-gradient(180deg,#082057 0%, #071B4D 100%) !important;
        box-shadow:0 10px 26px rgba(3,16,41,.24) !important;
      }

      .main-header-row{
        grid-template-columns:132px 1fr !important;
        gap:8px !important;
        padding:8px 0 6px !important;
      }

      .brand{
        justify-content:flex-start !important;
        transform:scale(.68) !important;
        transform-origin:left center !important;
        height:42px !important;
        margin:0 !important;
      }

      .search{
        height:38px !important;
        border-radius:7px !important;
      }

      .search button{
        height:38px !important;
        width:42px !important;
      }

      .nav-row{
        padding:6px 0 9px !important;
        display:flex !important;
        overflow-x:auto !important;
        overflow-y:hidden !important;
        gap:8px !important;
      }

      .nav-row a{
        min-height:32px !important;
        padding:0 11px !important;
        font-size:11px !important;
      }

      /* benefícios estático, arrastável, 1 linha */
      .benefits{
        overflow:hidden !important;
      }

      .benefits .carousel-arrow{
        display:none !important;
      }

      .benefits-row{
        display:flex !important;
        flex-wrap:nowrap !important;
        overflow-x:auto !important;
        overflow-y:hidden !important;
        width:auto !important;
        transform:none !important;
        animation:none !important;
        gap:12px !important;
        padding:14px 6px !important;
        scroll-snap-type:x mandatory;
        -webkit-overflow-scrolling:touch;
        touch-action:pan-x;
        scrollbar-width:none;
      }

      .benefits-row::-webkit-scrollbar{
        display:none;
      }

      .benefits-row .benefit{
        flex:0 0 82% !important;
        min-width:82% !important;
        max-width:82% !important;
        scroll-snap-align:start;
        white-space:normal;
      }

      /* ajusta posição do mega menu porque o topo agora é fixed */
      .mega-menu{
        position:fixed !important;
        top:104px !important;
        left:12px !important;
        right:12px !important;
        max-height:calc(100vh - 118px) !important;
      }
    }

  
    /* V17 - correção do topo mobile */
    @media(max-width:900px){
      body{
        padding-top:154px !important;
      }

      .sticky-wrap{
        overflow:hidden !important;
      }

      .main-header-row{
        display:grid !important;
        grid-template-columns:96px 1fr !important;
        grid-template-areas:
          "logo search"
          "actions actions" !important;
        gap:8px 10px !important;
        padding:8px 0 4px !important;
        align-items:center !important;
      }

      .brand{
        grid-area:logo !important;
        transform:none !important;
        width:96px !important;
        height:42px !important;
        overflow:hidden !important;
        justify-content:flex-start !important;
        gap:6px !important;
        margin:0 !important;
      }

      .brand-mark{
        width:38px !important;
        height:34px !important;
        font-size:27px !important;
        flex:0 0 38px !important;
      }

      .brand-mark::before{
        font-size:14px !important;
        right:1px !important;
        top:-2px !important;
      }

      .brand-mark::after{
        width:35px !important;
        height:13px !important;
        border-bottom-width:3px !important;
        left:0 !important;
        bottom:0 !important;
        box-shadow:5px 5px 0 -3px var(--gold) !important;
      }

      .brand-name strong{
        font-size:16px !important;
        letter-spacing:1.8px !important;
        max-width:58px !important;
        white-space:nowrap !important;
        overflow:hidden !important;
      }

      .brand-name small{
        font-size:6px !important;
        letter-spacing:2px !important;
        margin-top:4px !important;
        gap:3px !important;
        white-space:nowrap !important;
      }

      .brand-name small::before,
      .brand-name small::after{
        width:10px !important;
        height:1px !important;
      }

      .search{
        grid-area:search !important;
        width:100% !important;
        min-width:0 !important;
        height:42px !important;
        margin:0 !important;
      }

      .search input{
        min-width:0 !important;
        font-size:13px !important;
        padding:0 12px !important;
      }

      .search button{
        height:42px !important;
        width:46px !important;
        flex:0 0 46px !important;
        font-size:18px !important;
      }

      .header-actions{
        grid-area:actions !important;
        display:flex !important;
        justify-content:flex-start !important;
        gap:18px !important;
        padding-left:2px !important;
        overflow:hidden !important;
      }

      .header-action{
        font-size:11px !important;
        gap:7px !important;
        line-height:1.05 !important;
        flex:0 0 auto !important;
      }

      .header-action i{
        font-size:25px !important;
      }

      .cart-count{
        width:15px !important;
        height:15px !important;
        font-size:9px !important;
        right:-5px !important;
        top:-7px !important;
      }

      .nav-row{
        padding:7px 0 10px !important;
        gap:8px !important;
      }

      .nav-row a{
        min-height:34px !important;
        font-size:11px !important;
        padding:0 12px !important;
      }

      .mega-menu{
        top:124px !important;
        max-height:calc(100vh - 136px) !important;
      }
    }

  
    /* V18 - refinamento final topo mobile */
    @media(max-width:900px){

      body{
        padding-top:144px !important;
      }

      .main-header-row{
        grid-template-columns:82px 1fr auto auto !important;
        grid-template-areas:"logo search budget cart" !important;
        gap:6px !important;
        padding:8px 0 4px !important;
      }

      .brand{
        width:82px !important;
        height:34px !important;
      }

      .brand-mark{
        width:30px !important;
        height:28px !important;
        flex:0 0 30px !important;
        font-size:22px !important;
      }

      .brand-mark::after{
        width:28px !important;
        height:10px !important;
      }

      .brand-name strong{
        font-size:13px !important;
        letter-spacing:1.1px !important;
        max-width:46px !important;
      }

      .brand-name small{
        font-size:5px !important;
        letter-spacing:1.4px !important;
      }

      .search{
        height:38px !important;
        border-radius:7px !important;
      }

      .search input{
        font-size:12px !important;
        padding:0 10px !important;
      }

      .search button{
        width:40px !important;
        flex:0 0 40px !important;
        height:38px !important;
      }

      .header-actions{
        display:contents !important;
      }

      .header-action{
        flex-direction:column !important;
        gap:2px !important;
        justify-content:center !important;
        align-items:center !important;
        min-width:42px !important;
      }

      .header-action:nth-child(1){
        grid-area:budget !important;
      }

      .header-action:nth-child(2){
        grid-area:cart !important;
      }

      .header-action i{
        font-size:20px !important;
      }

      .header-action span{
        font-size:8px !important;
        line-height:1 !important;
        text-align:center !important;
      }

      .cart-count{
        width:13px !important;
        height:13px !important;
        font-size:8px !important;
      }

      .nav-row{
        padding:6px 0 8px !important;
        margin-bottom:0 !important;
      }

      .hero{
        margin-top:0 !important;
      }

      .hero-inner{
        margin-top:0 !important;
      }

      .sticky-wrap{
        margin-bottom:0 !important;
      }

      main{
        margin-top:0 !important;
      }
    }

  
    /* V19 - topo mobile com logo centralizada e segunda linha funcional */
    @media(max-width:900px){
      body{
        padding-top:170px !important;
      }

      .main-header-row{
        display:grid !important;
        grid-template-columns:1fr auto auto !important;
        grid-template-areas:
          "logo logo logo"
          "search budget cart" !important;
        gap:7px !important;
        padding:8px 0 4px !important;
        align-items:center !important;
      }

      .brand{
        grid-area:logo !important;
        justify-self:center !important;
        justify-content:center !important;
        width:150px !important;
        height:40px !important;
        overflow:visible !important;
        transform:none !important;
        gap:7px !important;
      }

      .brand-mark{
        width:38px !important;
        height:34px !important;
        flex:0 0 38px !important;
        font-size:27px !important;
      }

      .brand-mark::before{
        font-size:15px !important;
        right:0 !important;
        top:-4px !important;
      }

      .brand-mark::after{
        width:36px !important;
        height:13px !important;
        border-bottom-width:3px !important;
        box-shadow:5px 5px 0 -3px var(--gold) !important;
      }

      .brand-name strong{
        font-size:17px !important;
        letter-spacing:1.7px !important;
        max-width:none !important;
        overflow:visible !important;
      }

      .brand-name small{
        font-size:6px !important;
        letter-spacing:2px !important;
        margin-top:3px !important;
      }

      .brand-name small::before,
      .brand-name small::after{
        width:12px !important;
      }

      .search{
        grid-area:search !important;
        height:38px !important;
        min-width:0 !important;
      }

      .search input{
        font-size:12px !important;
        padding:0 10px !important;
      }

      .search button{
        width:40px !important;
        flex:0 0 40px !important;
        height:38px !important;
        font-size:17px !important;
      }

      .header-actions{
        display:contents !important;
      }

      .header-action:nth-child(1){
        grid-area:budget !important;
      }

      .header-action:nth-child(2){
        grid-area:cart !important;
      }

      .header-action{
        flex-direction:column !important;
        align-items:center !important;
        justify-content:center !important;
        gap:1px !important;
        min-width:42px !important;
      }

      .header-action i{
        font-size:21px !important;
      }

      .header-action span{
        font-size:8px !important;
        line-height:.95 !important;
        text-align:center !important;
        white-space:normal !important;
      }

      .nav-row{
        padding:5px 0 7px !important;
        margin:0 !important;
        border-bottom:0 !important;
      }

      .nav-row a{
        min-height:32px !important;
        font-size:11px !important;
        padding:0 11px !important;
      }

      .hero{
        margin-top:-1px !important;
        border-top:0 !important;
      }

      .hero-inner{
        padding-top:0 !important;
      }

      .mega-menu{
        top:146px !important;
        max-height:calc(100vh - 158px) !important;
      }
    }

  
    /* V20 - ajuste fino topo mobile */
    @media(max-width:900px){

      body{
        padding-top:166px !important;
      }

      .brand{
        width:170px !important;
        height:44px !important;
        margin-bottom:-2px !important;
      }

      .brand-mark{
        width:42px !important;
        height:37px !important;
        flex:0 0 42px !important;
        font-size:30px !important;
      }

      .brand-mark::after{
        width:40px !important;
      }

      .brand-name strong{
        font-size:19px !important;
        letter-spacing:1.9px !important;
      }

      .brand-name small{
        font-size:6.4px !important;
      }

      .main-header-row{
        grid-template-columns:1fr auto auto !important;
        gap:6px !important;
      }

      .search{
        height:36px !important;
        max-width:100% !important;
      }

      .search input{
        font-size:11.5px !important;
        padding:0 9px !important;
      }

      .search button{
        width:38px !important;
        flex:0 0 38px !important;
        height:36px !important;
      }

      .header-action{
        min-width:38px !important;
      }

      .header-action i{
        font-size:20px !important;
      }

      .header-action span{
        font-size:7.5px !important;
      }

      .nav-row{
        margin-bottom:-1px !important;
        padding-bottom:4px !important;
      }

      .hero{
        margin-top:-8px !important;
        padding-top:0 !important;
      }

      .hero-inner{
        margin-top:0 !important;
        padding-top:0 !important;
      }

      .sticky-wrap{
        padding-bottom:0 !important;
      }
    }

  
    /* V21 - topo alternativo fixo no mobile ao rolar */
    .mobile-sticky-alt{
      display:none;
    }

    @media(max-width:900px){
      .mobile-sticky-alt{
        position:fixed;
        left:0;
        top:0;
        width:100%;
        z-index:9000;
        background:linear-gradient(180deg,#082057 0%, #071B4D 100%);
        box-shadow:0 10px 26px rgba(3,16,41,.25);
        transform:translateY(-110%);
        opacity:0;
        transition:transform .22s ease, opacity .22s ease;
        display:block;
      }

      .mobile-sticky-alt.show{
        transform:translateY(0);
        opacity:1;
      }

      .mobile-sticky-top{
        display:grid;
        grid-template-columns:44px 1fr auto auto;
        align-items:center;
        gap:8px;
        padding:8px 12px 6px;
      }

      .mobile-sticky-logo{
        width:38px;
        height:34px;
        display:grid;
        place-items:center;
        color:#fff;
        font-size:27px;
        font-weight:900;
        position:relative;
      }

      .mobile-sticky-logo::before{
        content:"✦";
        position:absolute;
        right:-2px;
        top:-7px;
        color:var(--gold);
        font-size:15px;
      }

      .mobile-sticky-logo::after{
        content:"";
        position:absolute;
        left:1px;
        bottom:0;
        width:35px;
        height:12px;
        border-bottom:3px solid #fff;
        border-radius:0 0 70% 70%;
        transform:rotate(-10deg);
        box-shadow:5px 5px 0 -3px var(--gold);
      }

      .mobile-sticky-search{
        height:36px;
        background:#fff;
        border:1px solid var(--gold);
        border-radius:8px;
        display:flex;
        overflow:hidden;
        min-width:0;
      }

      .mobile-sticky-search input{
        width:100%;
        border:0;
        outline:0;
        padding:0 10px;
        font-size:12px;
        min-width:0;
      }

      .mobile-sticky-search button{
        width:38px;
        flex:0 0 38px;
        background:#fff;
        color:var(--navy);
        border-left:1px solid #e6e9f0;
        font-size:16px;
      }

      .mobile-sticky-action{
        width:36px;
        height:36px;
        display:grid;
        place-items:center;
        color:var(--gold);
        font-size:22px;
        position:relative;
      }

      .mobile-sticky-action em{
        position:absolute;
        right:0;
        top:0;
        width:14px;
        height:14px;
        border-radius:50%;
        background:var(--gold);
        color:var(--navy);
        display:grid;
        place-items:center;
        font-size:8px;
        font-style:normal;
        font-weight:900;
      }

      .mobile-sticky-menu{
        display:flex;
        overflow-x:auto;
        gap:8px;
        padding:4px 12px 8px;
        scrollbar-width:none;
        border-top:1px solid rgba(255,255,255,.08);
      }

      .mobile-sticky-menu::-webkit-scrollbar{
        display:none;
      }

      .mobile-sticky-menu a{
        flex:0 0 auto;
        min-height:32px;
        border:1px solid rgba(245,169,0,.42);
        border-radius:999px;
        color:#fff;
        padding:0 11px;
        display:flex;
        align-items:center;
        gap:7px;
        font-size:11px;
        font-weight:800;
        background:rgba(255,255,255,.04);
      }

      .mobile-sticky-menu i{
        color:var(--gold);
      }

      .mobile-sticky-menu a:hover{
        color:var(--gold);
      }

      /* quando o alternativo aparece, o topo original deixa de ocupar visualmente */
      .sticky-wrap.mobile-hidden{
        visibility:hidden;
      }
    }

  
    /* V22 - sombra só no topo congelável alternativo */
    @media(max-width:900px){
      .sticky-wrap{
        box-shadow:none !important;
      }

      .main-header{
        box-shadow:none !important;
      }

      .nav-row{
        box-shadow:none !important;
        border-bottom:0 !important;
      }

      .mobile-sticky-alt{
        box-shadow:0 10px 26px rgba(3,16,41,.25) !important;
      }
    }

  
    /* V23 - remove espaço real entre menu e banner */
    @media(max-width:900px){
      body{
        padding-top:0 !important;
      }

      .sticky-wrap{
        position:relative !important;
        top:auto !important;
        left:auto !important;
        right:auto !important;
        width:100% !important;
      }

      .sticky-wrap.mobile-hidden{
        visibility:hidden !important;
        height:0 !important;
        overflow:hidden !important;
      }

      .main-header{
        margin-bottom:0 !important;
        padding-bottom:0 !important;
      }

      .nav-row{
        margin-bottom:0 !important;
        padding-bottom:0 !important;
      }

      .hero{
        margin-top:0 !important;
        padding-top:0 !important;
        border-top:0 !important;
      }

      .hero-inner{
        margin-top:0 !important;
        padding-top:0 !important;
      }

      .mega-menu{
        top:118px !important;
      }
    }

  
    /* V24 - topo original mobile com logo à esquerda, sem mexer no topo congelável */
    @media(max-width:900px){
      .main-header-row{
        display:grid !important;
        grid-template-columns:88px 1fr auto auto !important;
        grid-template-areas:"logo search budget cart" !important;
        gap:6px !important;
        align-items:center !important;
        padding:8px 0 6px !important;
      }

      .brand{
        grid-area:logo !important;
        justify-self:start !important;
        justify-content:flex-start !important;
        width:88px !important;
        height:38px !important;
        overflow:hidden !important;
        transform:none !important;
        gap:5px !important;
        margin:0 !important;
      }

      .brand-mark{
        width:31px !important;
        height:29px !important;
        flex:0 0 31px !important;
        font-size:23px !important;
      }

      .brand-mark::before{
        font-size:13px !important;
        right:0 !important;
        top:-4px !important;
      }

      .brand-mark::after{
        width:29px !important;
        height:10px !important;
        border-bottom-width:3px !important;
        left:0 !important;
        bottom:0 !important;
        box-shadow:5px 5px 0 -3px var(--gold) !important;
      }

      .brand-name strong{
        font-size:13px !important;
        letter-spacing:1.1px !important;
        max-width:50px !important;
        white-space:nowrap !important;
        overflow:hidden !important;
      }

      .brand-name small{
        font-size:5px !important;
        letter-spacing:1.3px !important;
        margin-top:2px !important;
        gap:2px !important;
        white-space:nowrap !important;
      }

      .brand-name small::before,
      .brand-name small::after{
        width:8px !important;
        height:1px !important;
      }

      .search{
        grid-area:search !important;
        height:36px !important;
        min-width:0 !important;
        margin:0 !important;
      }

      .search input{
        font-size:11.5px !important;
        padding:0 8px !important;
      }

      .search button{
        height:36px !important;
        width:36px !important;
        flex:0 0 36px !important;
        font-size:16px !important;
      }

      .header-actions{
        display:contents !important;
      }

      .header-action:nth-child(1){
        grid-area:budget !important;
      }

      .header-action:nth-child(2){
        grid-area:cart !important;
      }

      .header-action{
        min-width:34px !important;
        flex-direction:column !important;
        align-items:center !important;
        justify-content:center !important;
        gap:1px !important;
      }

      .header-action i{
        font-size:19px !important;
      }

      .header-action span{
        font-size:7px !important;
        line-height:.95 !important;
        text-align:center !important;
      }

      .cart-count{
        width:12px !important;
        height:12px !important;
        font-size:7px !important;
        right:-4px !important;
        top:-6px !important;
      }

      .nav-row{
        padding-top:5px !important;
      }
    }

  
    /* V25 - topo original mais compacto, logo maior, menu fecha ao rolar */
    @media(max-width:900px){
      .main-header-row{
        grid-template-columns:108px 1fr auto auto !important;
        gap:5px !important;
        padding:6px 0 4px !important;
      }
      .brand{width:108px !important;height:42px !important;gap:6px !important;}
      .brand-mark{width:40px !important;height:36px !important;flex:0 0 40px !important;font-size:29px !important;}
      .brand-mark::before{font-size:15px !important;top:-5px !important;}
      .brand-mark::after{width:38px !important;height:13px !important;}
      .brand-name strong{font-size:15px !important;letter-spacing:1.2px !important;max-width:62px !important;}
      .brand-name small{font-size:5.5px !important;letter-spacing:1.5px !important;}
      .search{height:32px !important;border-radius:6px !important;}
      .search input{font-size:10.8px !important;padding:0 7px !important;}
      .search button{height:32px !important;width:32px !important;flex:0 0 32px !important;font-size:14px !important;}
      .header-action{min-width:30px !important;}
      .header-action i{font-size:17px !important;}
      .header-action span{font-size:6.5px !important;}
      .nav-row{padding-top:4px !important;padding-bottom:5px !important;}
      .mega-menu{top:96px !important;max-height:calc(100vh - 108px) !important;}
    }

  
    /* V26 - barra de busca 40% menor no topo original mobile */
    @media(max-width:900px){
      .main-header-row{
        grid-template-columns:118px minmax(0,0.6fr) auto auto !important;
        gap:4px !important;
      }

      .brand{
        width:118px !important;
        height:44px !important;
      }

      .brand-mark{
        width:43px !important;
        height:38px !important;
        flex:0 0 43px !important;
        font-size:31px !important;
      }

      .brand-name strong{
        font-size:16px !important;
        letter-spacing:1.3px !important;
      }

      .search{
        max-width:100% !important;
        width:100% !important;
        height:28px !important;
        border-radius:5px !important;
      }

      .search input{
        font-size:10px !important;
        padding:0 6px !important;
      }

      .search button{
        width:28px !important;
        flex:0 0 28px !important;
        height:28px !important;
        font-size:12px !important;
      }

      .header-action{
        min-width:28px !important;
      }

      .header-action i{
        font-size:16px !important;
      }

      .header-action span{
        font-size:6px !important;
      }

      .nav-row{
        padding-top:3px !important;
      }

      .mega-menu{
        top:88px !important;
        max-height:calc(100vh - 100px) !important;
      }
    }

  
    /* V27 - ajuste fino topo mobile */
    @media(max-width:900px){
      .main-header-row{
        grid-template-columns:138px 1fr 46px 46px !important;
        gap:8px !important;
        align-items:center !important;
      }

      .brand{
        width:138px !important;
        height:52px !important;
        overflow:visible !important;
      }

      .brand-mark{
        width:50px !important;
        height:44px !important;
        flex:0 0 50px !important;
        font-size:36px !important;
      }

      .brand-mark::before{
        font-size:17px !important;
        right:0 !important;
        top:-6px !important;
      }

      .brand-mark::after{
        width:46px !important;
        height:15px !important;
        border-bottom-width:4px !important;
      }

      .brand-name strong{
        font-size:18px !important;
        letter-spacing:1.45px !important;
        max-width:78px !important;
        overflow:visible !important;
      }

      .brand-name small{
        font-size:6.2px !important;
        letter-spacing:1.6px !important;
      }

      .search{
        justify-self:center !important;
        width:100% !important;
        max-width:250px !important;
        height:30px !important;
      }

      .search input{
        font-size:10.5px !important;
      }

      .search button{
        width:31px !important;
        flex:0 0 31px !important;
        height:30px !important;
        font-size:13px !important;
      }

      .header-action{
        justify-self:end !important;
        min-width:46px !important;
        width:46px !important;
      }

      .header-action i{
        font-size:22px !important;
      }

      .header-action span{
        font-size:7.2px !important;
        line-height:.95 !important;
      }

      .cart-count{
        width:14px !important;
        height:14px !important;
        font-size:8px !important;
      }
    }

  
    /* V28 - avaliações Google manuais + topo mobile menor */
    .reviews-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:18px;
      padding:0 var(--section-pad) 20px;
    }

    .review-card{
      background:#fff;
      border:1px solid #e8ecf4;
      border-radius:12px;
      padding:20px;
      box-shadow:0 10px 24px rgba(7,27,77,.05);
    }

    .review-top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-bottom:12px;
    }

    .review-user{
      display:flex;
      align-items:center;
      gap:10px;
    }

    .review-avatar{
      width:42px;
      height:42px;
      border-radius:50%;
      background:var(--navy);
      color:#fff;
      display:grid;
      place-items:center;
      font-weight:900;
    }

    .review-name strong{
      display:block;
      font-size:13px;
      color:var(--navy);
    }

    .review-name small{
      font-size:11px;
      color:var(--muted);
    }

    .review-stars{
      color:var(--gold);
      font-size:14px;
      white-space:nowrap;
    }

    .review-card p{
      margin:0;
      color:#4c5670;
      font-size:13px;
      line-height:1.55;
    }

    .google-rating{
      max-width:680px;
      margin:0 auto 22px;
      display:flex;
      align-items:center;
      justify-content:center;
      gap:14px;
      background:#fbfcff;
      border:1px solid #e8ecf4;
      border-radius:999px;
      padding:12px 18px;
      color:var(--navy);
      font-weight:800;
    }

    .google-rating i{
      color:var(--gold);
    }

    @media(max-width:900px){
      .reviews-grid{
        display:flex;
        overflow-x:auto;
        gap:14px;
        padding:0 6px 18px;
        scroll-snap-type:x mandatory;
        scrollbar-width:none;
      }

      .reviews-grid::-webkit-scrollbar{
        display:none;
      }

      .review-card{
        flex:0 0 84%;
        scroll-snap-align:start;
      }

      .google-rating{
        margin:0 6px 18px;
        border-radius:14px;
        font-size:12px;
        text-align:center;
        flex-wrap:wrap;
      }

      .main-header-row{
        grid-template-columns:138px minmax(0,0.82fr) 42px 42px !important;
        gap:6px !important;
      }

      .search{
        max-width:210px !important;
        height:28px !important;
      }

      .search input{
        font-size:9.8px !important;
      }

      .search button{
        width:28px !important;
        flex:0 0 28px !important;
        height:28px !important;
        font-size:12px !important;
      }

      .header-action{
        width:42px !important;
        min-width:42px !important;
      }
    }

  
    /* V29 - ajuste fino topo mobile: logo sem corte, busca centralizada, carrinhos à direita */
    @media(max-width:900px){
      .main-header-row{
        grid-template-columns:152px minmax(150px,1fr) 42px 42px !important;
        gap:6px !important;
        align-items:center !important;
      }

      .brand{
        width:152px !important;
        height:50px !important;
        overflow:visible !important;
        justify-self:start !important;
      }

      .brand-mark{
        width:46px !important;
        height:40px !important;
        flex:0 0 46px !important;
        font-size:33px !important;
      }

      .brand-name strong{
        font-size:17px !important;
        letter-spacing:1.25px !important;
        max-width:92px !important;
        overflow:visible !important;
      }

      .brand-name small{
        font-size:5.8px !important;
        letter-spacing:1.5px !important;
      }

      .search{
        justify-self:center !important;
        width:100% !important;
        max-width:220px !important;
        height:30px !important;
      }

      .search input{
        font-size:10.2px !important;
        padding:0 7px !important;
      }

      .search button{
        width:30px !important;
        flex:0 0 30px !important;
        height:30px !important;
        font-size:13px !important;
      }

      .header-action{
        justify-self:end !important;
        width:42px !important;
        min-width:42px !important;
      }

      .header-action i{
        font-size:22px !important;
      }

      .header-action span{
        font-size:7px !important;
        line-height:.95 !important;
      }
    }

    @media(max-width:430px){
      .main-header-row{
        grid-template-columns:142px minmax(130px,1fr) 39px 39px !important;
        gap:5px !important;
      }

      .brand{
        width:142px !important;
      }

      .brand-name strong{
        font-size:16px !important;
        max-width:84px !important;
      }

      .search{
        max-width:190px !important;
      }

      .header-action{
        width:39px !important;
        min-width:39px !important;
      }

      .header-action i{
        font-size:20px !important;
      }

      .header-action span{
        font-size:6.5px !important;
      }
    }

  
/* HOME PADRÃO FINAL - ajustes herdados de Categoria/Subcategoria */

/* proporção horizontal padrão */
:root{
  --max:1320px;
  --section-pad:22px;
}

.container{
  max-width:var(--max) !important;
  margin-left:auto !important;
  margin-right:auto !important;
  padding-left:22px !important;
  padding-right:22px !important;
}

/* remove setas da faixa qualidade/frete em desktop e mobile */
.benefits > .carousel-arrow,
.benefits .carousel-arrow{
  display:none !important;
}

/* setas padrão dos carrosséis: junto aos cards, metade dentro/metade fora */
.section{
  overflow:visible !important;
}

.section > .carousel-arrow.left{
  left:calc((100vw - min(var(--max), calc(100vw - 44px))) / 2 + 4px) !important;
}

.section > .carousel-arrow.right{
  right:calc((100vw - min(var(--max), calc(100vw - 44px))) / 2 + 4px) !important;
}

/* nunca usar setas na área Instagram/Youtube */
.section:has(.social-grid) > .carousel-arrow,
.social-grid ~ .carousel-arrow,
.social-grid + .carousel-arrow{
  display:none !important;
}

/* largura das camadas alinhada com HOME/Categoria/Subcategoria */
.category-grid,
.product-grid,
.date-grid,
.steps,
.blog-grid,
.social-grid,
.faq,
.benefits-row{
  max-width:calc(var(--max) - 44px) !important;
  width:calc(100% - 44px) !important;
  margin-left:auto !important;
  margin-right:auto !important;
  padding-left:0 !important;
  padding-right:0 !important;
}

/* institucional fundo azul infinito */
.institutional{
  width:100vw !important;
  margin-left:calc(50% - 50vw) !important;
  margin-right:calc(50% - 50vw) !important;
}

.institutional .container{
  max-width:var(--max) !important;
  padding-left:22px !important;
  padding-right:22px !important;
}

/* cards de produto no padrão definido */
.product-grid{
  display:grid !important;
  grid-template-columns:repeat(6,minmax(0,1fr)) !important;
  gap:16px !important;
}

.product-card{
  height:auto !important;
  min-height:318px !important;
  padding:12px !important;
  border:1px solid #e7ebf2 !important;
  border-radius:10px !important;
  background:#fff !important;
  box-shadow:0 10px 22px rgba(7,27,77,.04) !important;
  position:relative !important;
  display:flex !important;
  flex-direction:column !important;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease !important;
}

.product-card:hover{
  transform:translateY(-3px) !important;
  box-shadow:0 18px 32px rgba(7,27,77,.10) !important;
  border-color:#dfe5f0 !important;
}

.product-img{
  height:130px !important;
  flex:0 0 130px !important;
  display:grid !important;
  place-items:center !important;
  font-size:70px !important;
  color:var(--navy) !important;
  margin-bottom:8px !important;
}

.product-code{
  font-size:10px !important;
  color:#758198 !important;
  font-weight:900 !important;
  margin-bottom:4px !important;
}

.product-name{
  font-size:11.5px !important;
  line-height:1.25 !important;
  color:var(--navy) !important;
  margin:0 0 8px !important;
  min-height:42px !important;
  font-weight:900 !important;
}

.price{
  font-size:18px !important;
  font-weight:900 !important;
  color:var(--navy) !important;
  margin:0 0 10px !important;
}

.product-bottom{
  margin-top:auto !important;
  display:grid !important;
  grid-template-columns:1fr 28px 28px 28px !important;
  gap:6px !important;
  align-items:center !important;
}

.buy{
  height:32px !important;
  min-width:0 !important;
  width:100% !important;
  border-radius:6px !important;
  background:var(--gold) !important;
  color:#fff !important;
  font-size:11px !important;
  font-weight:900 !important;
  text-transform:uppercase !important;
  transition:transform .18s ease, box-shadow .18s ease !important;
}

.buy:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 18px rgba(245,169,0,.25);
}

.tiny{
  width:28px !important;
  height:28px !important;
  border:1px solid #e1e5ee !important;
  border-radius:6px !important;
  color:#5d667c !important;
  background:#fff !important;
  display:grid !important;
  place-items:center !important;
  font-size:11px !important;
  transition:transform .18s ease, border-color .18s ease, color .18s ease !important;
}

.tiny:hover{
  transform:translateY(-2px);
  border-color:var(--gold);
  color:var(--gold);
}

/* animação dos botões/cards "Escolha a categoria..." */
.category-card{
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease !important;
  border:1px solid transparent;
}

.category-card:hover{
  transform:translateY(-5px) scale(1.01);
  box-shadow:0 20px 38px rgba(7,27,77,.12);
  border-color:#f3d58b;
}

.category-card .badge,
.category-visual,
.category-card strong{
  transition:transform .22s ease, color .22s ease, border-color .22s ease;
}

.category-card:hover .badge{
  transform:scale(1.08) rotate(-4deg);
  background:#fff7e2;
}

.category-card:hover .category-visual{
  transform:translateY(-4px) scale(1.04);
}

.category-card:hover strong{
  color:var(--gold);
}

/* botões de datas e blog com micro animação */
.date-card,
.blog-card,
.step,
.social-box{
  transition:transform .2s ease, box-shadow .2s ease;
}

.date-card:hover,
.blog-card:hover,
.step:hover,
.social-box:hover{
  transform:translateY(-3px);
  box-shadow:0 16px 30px rgba(7,27,77,.09);
}

/* mobile */
@media(max-width:900px){
  .container{
    padding-left:14px !important;
    padding-right:14px !important;
  }

  .category-grid,
  .product-grid,
  .date-grid,
  .steps,
  .blog-grid,
  .social-grid,
  .faq,
  .benefits-row{
    width:auto !important;
    max-width:none !important;
    margin-left:14px !important;
    margin-right:14px !important;
  }

  .benefits > .carousel-arrow,
  .benefits .carousel-arrow{
    display:none !important;
  }

  .benefits-row{
    display:flex !important;
    flex-wrap:nowrap !important;
    overflow-x:auto !important;
    overflow-y:hidden !important;
    gap:8px !important;
    scroll-snap-type:x mandatory !important;
    scrollbar-width:none !important;
    animation:none !important;
    transform:none !important;
    width:auto !important;
  }

  .benefits-row::-webkit-scrollbar{
    display:none;
  }

  .benefit{
    flex:0 0 64% !important;
    min-width:64% !important;
    max-width:64% !important;
    min-height:74px !important;
    padding:11px 12px !important;
    border-radius:10px !important;
    gap:9px !important;
    scroll-snap-align:start !important;
  }

  .benefit i{
    font-size:22px !important;
  }

  .benefit strong{
    font-size:11.2px !important;
    line-height:1.18 !important;
  }

  .benefit small{
    font-size:10.5px !important;
  }

  .product-grid{
    display:flex !important;
    flex-wrap:nowrap !important;
    overflow-x:auto !important;
    overflow-y:hidden !important;
    scroll-snap-type:x mandatory !important;
    gap:12px !important;
    scrollbar-width:none !important;
  }

  .product-grid::-webkit-scrollbar{
    display:none;
  }

  .product-card{
    flex:0 0 calc(50% - 6px) !important;
    min-width:calc(50% - 6px) !important;
    max-width:calc(50% - 6px) !important;
    min-height:338px !important;
    padding:11px !important;
    scroll-snap-align:start !important;
  }

  .product-img{
    height:112px !important;
    flex:0 0 112px !important;
    font-size:60px !important;
  }

  .product-name{
    font-size:10.5px !important;
    min-height:42px !important;
  }

  .price{
    font-size:18px !important;
  }

  .product-bottom{
    grid-template-columns:1fr 28px 28px 28px !important;
  }

  .buy{
    height:34px !important;
    font-size:10.5px !important;
  }

  .category-grid,
  .date-grid,
  .blog-grid{
    margin-left:14px !important;
    margin-right:14px !important;
  }

  .category-card,
  .date-card{
    flex-basis:64% !important;
    min-width:64% !important;
  }

  .section > .carousel-arrow.left{
    left:2px !important;
  }

  .section > .carousel-arrow.right{
    right:2px !important;
  }

  .carousel-arrow{
    width:32px !important;
    height:32px !important;
    font-size:12px !important;
  }

  .section:has(.social-grid) > .carousel-arrow,
  .social-grid ~ .carousel-arrow,
  .social-grid + .carousel-arrow{
    display:none !important;
  }

  .institutional{
    width:100vw !important;
    margin-left:calc(50% - 50vw) !important;
    margin-right:calc(50% - 50vw) !important;
  }

  .institutional .container{
    padding-left:14px !important;
    padding-right:14px !important;
  }

  .institutional .inst-grid{
    margin-left:0 !important;
    margin-right:0 !important;
    width:auto !important;
  }
}


/* HOME V2 - correção cards produtos e animação abas */

/* Produto HOME idêntico ao padrão Categoria/Subcategoria */
.product-grid{
  display:grid !important;
  grid-template-columns:repeat(6,minmax(0,1fr)) !important;
  gap:16px !important;
  max-width:calc(var(--max) - 44px) !important;
  width:calc(100% - 44px) !important;
  margin-left:auto !important;
  margin-right:auto !important;
  padding:0 !important;
}

.product-card{
  border:1px solid #e7ebf2 !important;
  border-radius:10px !important;
  background:#fff !important;
  padding:14px !important;
  min-height:318px !important;
  height:auto !important;
  box-shadow:0 10px 22px rgba(7,27,77,.04) !important;
  position:relative !important;
  display:flex !important;
  flex-direction:column !important;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease !important;
}

.product-card:hover{
  transform:translateY(-3px) !important;
  box-shadow:0 18px 32px rgba(7,27,77,.10) !important;
  border-color:#dfe5f0 !important;
}

.product-img{
  height:140px !important;
  flex:0 0 140px !important;
  display:grid !important;
  place-items:center !important;
  font-size:72px !important;
  color:var(--navy) !important;
  margin:0 0 10px !important;
}

.product-code{
  font-size:10px !important;
  color:#758198 !important;
  font-weight:900 !important;
  margin-bottom:4px !important;
}

.product-name{
  font-size:12px !important;
  line-height:1.25 !important;
  color:var(--navy) !important;
  margin:0 0 8px !important;
  min-height:42px !important;
  font-weight:900 !important;
}

.price{
  font-size:20px !important;
  font-weight:900 !important;
  color:var(--navy) !important;
  margin:0 0 10px !important;
}

.product-bottom{
  margin-top:auto !important;
  display:grid !important;
  grid-template-columns:1fr 30px 30px 30px !important;
  gap:6px !important;
  align-items:center !important;
}

.buy{
  height:34px !important;
  min-width:0 !important;
  width:100% !important;
  border-radius:6px !important;
  background:var(--gold) !important;
  color:#fff !important;
  font-size:11px !important;
  font-weight:900 !important;
  text-transform:uppercase !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:6px !important;
  transition:transform .18s ease, box-shadow .18s ease !important;
}

.buy:hover{
  transform:translateY(-2px) !important;
  box-shadow:0 10px 18px rgba(245,169,0,.25) !important;
}

.tiny{
  width:30px !important;
  height:30px !important;
  border:1px solid #e1e5ee !important;
  border-radius:6px !important;
  color:#5d667c !important;
  background:#fff !important;
  display:grid !important;
  place-items:center !important;
  font-size:11px !important;
  transition:transform .18s ease, border-color .18s ease, color .18s ease !important;
}

.tiny:hover{
  transform:translateY(-2px) !important;
  border-color:var(--gold) !important;
  color:var(--gold) !important;
}

/* Abas "Escolha a categoria e veja os brindes" com animação padrão */
.product-tabs a{
  position:relative !important;
  min-height:44px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  padding:0 18px !important;
  border-radius:7px !important;
  transition:transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease !important;
}

.product-tabs a:not(.see-all):hover{
  transform:translateY(-3px) !important;
  background:#fff7e2 !important;
  color:var(--gold) !important;
  box-shadow:0 12px 24px rgba(7,27,77,.08) !important;
}

.product-tabs a.active{
  min-height:44px !important;
  background:var(--navy) !important;
  color:#fff !important;
  box-shadow:0 10px 22px rgba(7,27,77,.12) !important;
}

.product-tabs a.active:hover{
  transform:translateY(-3px) !important;
  background:var(--navy) !important;
  color:#fff !important;
}

.product-tabs .see-all{
  color:var(--gold) !important;
  font-weight:900 !important;
}

.product-tabs .see-all:hover{
  transform:translateY(-3px) !important;
  color:#c98500 !important;
}

/* mobile mantendo mesmo padrão da categoria/subcategoria */
@media(max-width:900px){
  .product-grid{
    display:flex !important;
    flex-wrap:nowrap !important;
    overflow-x:auto !important;
    overflow-y:hidden !important;
    scroll-snap-type:x mandatory !important;
    gap:12px !important;
    width:auto !important;
    max-width:none !important;
    margin-left:14px !important;
    margin-right:14px !important;
    padding:0 0 14px !important;
    scrollbar-width:none !important;
  }

  .product-grid::-webkit-scrollbar{
    display:none !important;
  }

  .product-card{
    flex:0 0 calc(50% - 6px) !important;
    min-width:calc(50% - 6px) !important;
    max-width:calc(50% - 6px) !important;
    min-height:338px !important;
    padding:11px !important;
    scroll-snap-align:start !important;
  }

  .product-img{
    height:112px !important;
    flex:0 0 112px !important;
    font-size:60px !important;
  }

  .product-name{
    font-size:10.5px !important;
    min-height:42px !important;
  }

  .price{
    font-size:18px !important;
  }

  .product-bottom{
    grid-template-columns:1fr 28px 28px 28px !important;
    gap:6px !important;
  }

  .buy{
    height:34px !important;
    font-size:10.5px !important;
  }

  .tiny{
    width:28px !important;
    height:28px !important;
  }

  .product-tabs{
    width:auto !important;
    max-width:none !important;
    margin-left:14px !important;
    margin-right:14px !important;
    padding:0 0 10px !important;
  }

  .product-tabs a{
    min-height:38px !important;
    padding:0 15px !important;
    font-size:11px !important;
  }
}


/* HOME V3 - cards IDÊNTICOS Categoria/Subcategoria */

/* estrutura exata dos cards padrão */
.product-card{
  border:1px solid #e7ebf2 !important;
  border-radius:12px !important;
  background:#fff !important;
  padding:12px !important;
  min-height:365px !important;
  box-shadow:0 8px 20px rgba(7,27,77,.04) !important;
  position:relative !important;
  display:flex !important;
  flex-direction:column !important;
}

.product-card .favorite,
.product-card .fav,
.product-card .heart{
  position:absolute !important;
  top:12px !important;
  right:12px !important;
  width:34px !important;
  height:34px !important;
  border-radius:50% !important;
  border:1px solid #dfe5f0 !important;
  background:#fff !important;
  display:grid !important;
  place-items:center !important;
  color:var(--navy) !important;
  font-size:15px !important;
}

.product-img{
  height:128px !important;
  flex:0 0 128px !important;
  display:grid !important;
  place-items:center !important;
  font-size:72px !important;
  color:var(--navy) !important;
  margin:8px 0 10px !important;
}

.product-code{
  font-size:11px !important;
  color:#7b869d !important;
  font-weight:900 !important;
  margin-bottom:4px !important;
  text-transform:uppercase !important;
}

.product-name{
  font-size:13px !important;
  line-height:1.28 !important;
  color:var(--navy) !important;
  font-weight:900 !important;
  margin:0 0 10px !important;
  min-height:44px !important;
}

.min-order{
  display:flex !important;
  align-items:center !important;
  gap:6px !important;
  color:#6e7890 !important;
  font-size:11px !important;
  margin-bottom:10px !important;
}

.min-order i{
  color:var(--gold) !important;
}

.price-label{
  font-size:11px !important;
  color:#7c879c !important;
  margin-bottom:2px !important;
}

.price{
  font-size:20px !important;
  line-height:1 !important;
  color:var(--navy) !important;
  font-weight:900 !important;
  margin-bottom:12px !important;
}

.product-bottom{
  margin-top:auto !important;
  display:flex !important;
  flex-direction:column !important;
  gap:8px !important;
}

.buy{
  width:100% !important;
  height:42px !important;
  border-radius:7px !important;
  background:var(--gold) !important;
  color:#fff !important;
  font-size:12px !important;
  font-weight:900 !important;
  text-transform:uppercase !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:6px !important;
}

.product-actions{
  display:grid !important;
  grid-template-columns:1fr 1fr !important;
  gap:8px !important;
}

.product-actions a,
.product-bottom .tiny{
  height:34px !important;
  border-radius:6px !important;
  border:1px solid #dfe5f0 !important;
  background:#fff !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:5px !important;
  font-size:10px !important;
  font-weight:900 !important;
  text-transform:uppercase !important;
}

.product-actions a:first-child{
  color:var(--navy) !important;
}

.product-actions a.whats{
  color:#1fa74f !important;
}

@media(max-width:900px){
  .product-card{
    min-height:352px !important;
    padding:12px !important;
  }

  .product-img{
    height:112px !important;
    flex:0 0 112px !important;
    font-size:62px !important;
  }

  .product-name{
    font-size:11px !important;
    min-height:40px !important;
  }

  .price{
    font-size:18px !important;
  }

  .buy{
    height:40px !important;
    font-size:11px !important;
  }

  .product-actions a{
    height:32px !important;
    font-size:9px !important;
  }
}


/* MENU FINAL - arquitetura Grupo > Categoria > Subcategoria */
.mega-side-title{
  color:#778298;
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.4px;
  padding:0 12px 6px;
}

.mega-side a.menu-highlight{
  position:relative;
}

.mega-side a.menu-highlight:hover{
  box-shadow:0 8px 18px rgba(7,27,77,.06);
}

.mega-group a{
  border-radius:5px;
}

.mega-group .view-all{
  display:inline-flex;
  align-items:center;
  gap:6px;
}

.mega-group .view-all::after{
  content:"→";
  font-weight:900;
}

@media(max-width:900px){
  .mega-side-title{
    flex:0 0 100%;
    padding:0 2px 2px;
  }

  .mega-side{
    flex-wrap:wrap;
  }

  .mega-side a.menu-highlight{
    height:32px;
  }
}


/* MENU FINAL V2 - correções congelado desktop + destaques mobile */
.floating-menu a{
  cursor:pointer;
}

@media(max-width:900px){
  .mega-side{
    display:flex !important;
    flex-direction:row !important;
    flex-wrap:nowrap !important;
    overflow-x:auto !important;
    overflow-y:hidden !important;
    gap:8px !important;
    border-right:0 !important;
    border-bottom:1px solid #e8edf6 !important;
    padding:0 0 12px !important;
    scrollbar-width:none !important;
    -webkit-overflow-scrolling:touch !important;
    scroll-snap-type:x proximity !important;
  }

  .mega-side::-webkit-scrollbar{
    display:none !important;
  }

  .mega-side-title{
    flex:0 0 auto !important;
    height:32px !important;
    display:flex !important;
    align-items:center !important;
    padding:0 4px !important;
    white-space:nowrap !important;
  }

  .mega-side a.menu-highlight,
  .mega-side a{
    flex:0 0 auto !important;
    white-space:nowrap !important;
    height:34px !important;
    scroll-snap-align:start !important;
  }
}


/* MENU FINAL V3 - expansão correta pelo menu congelável desktop */
@media(min-width:901px){
  body.mega-open-from-floating .mega-holder.is-open .mega-menu{
    position:fixed !important;
    top:112px !important;
    left:50% !important;
    transform:translateX(-50%) translateY(0) !important;
    z-index:2600 !important;
  }

  body.mega-open-from-floating .mega-holder.is-open .mega-menu:not(.mode-all){
    width:min(780px, calc(100vw - 44px)) !important;
  }

  body.mega-open-from-floating .mega-holder.is-open .mega-menu.mode-all{
    width:min(1320px, calc(100vw - 44px)) !important;
  }
}


/* FLUXO CARDS V1 - fotos extras + confirmação moderna */
.product-card,.category-product-card{overflow:visible!important}
.product-card .product-img,.category-product-card .cat-prod-img{position:relative!important;transition:transform .22s ease,opacity .22s ease,filter .22s ease!important}
.product-card:hover .product-img,.category-product-card:hover .cat-prod-img{transform:translateY(-3px) scale(1.03);filter:drop-shadow(0 10px 14px rgba(7,27,77,.10))}
.card-photo-dots{display:flex;align-items:center;justify-content:center;gap:5px;margin:-2px 0 8px}
.card-photo-dots span{width:6px;height:6px;border-radius:50%;background:#d7deeb;transition:.18s ease}
.card-photo-dots span.active{width:14px;border-radius:999px;background:var(--gold)}
.card-added-toast{position:fixed;right:24px;bottom:24px;width:min(390px,calc(100vw - 32px));background:#fff;border:1px solid #e5ebf4;border-radius:18px;box-shadow:0 24px 65px rgba(7,27,77,.22);z-index:99999;transform:translateY(20px);opacity:0;pointer-events:none;transition:opacity .22s ease,transform .22s ease;overflow:hidden}
.card-added-toast.show{opacity:1;transform:translateY(0);pointer-events:auto}
.card-added-toast::before{content:"";display:block;height:5px;background:linear-gradient(90deg,var(--gold),#ffc84a)}
.toast-inner{padding:18px}.toast-head{display:flex;align-items:flex-start;gap:12px;margin-bottom:12px}
.toast-icon{width:42px;height:42px;border-radius:50%;background:#fff7e2;color:var(--gold);display:grid;place-items:center;font-size:18px;flex:0 0 42px}
.toast-title{margin:0;color:var(--navy);font-size:15px;font-weight:900;line-height:1.2}
.toast-text{margin:4px 0 0;color:#667088;font-size:12px;line-height:1.45}
.toast-product{background:#f7f9fd;border:1px solid #e9edf5;border-radius:10px;padding:10px 12px;color:var(--navy);font-size:12px;font-weight:800;margin:10px 0 14px}
.toast-actions{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.toast-actions button,.toast-actions a{height:40px;border-radius:8px;display:flex;align-items:center;justify-content:center;gap:7px;font-size:11px;font-weight:900;text-transform:uppercase;transition:.18s ease}
.toast-continue{background:#fff;border:1px solid #dfe6f0;color:var(--navy)}
.toast-finish{background:var(--gold);color:#fff}.toast-whats-now{background:#18A74A;color:#fff}
.toast-actions button:hover,.toast-actions a:hover{transform:translateY(-2px);box-shadow:0 10px 20px rgba(7,27,77,.12)}
.toast-close{position:absolute;right:12px;top:12px;width:30px;height:30px;border-radius:50%;background:#f3f5fa;color:#394765;display:grid;place-items:center;font-weight:900}
@media(max-width:900px){.card-added-toast{left:14px;right:14px;bottom:18px;width:auto;border-radius:16px}.toast-inner{padding:16px}.toast-actions{grid-template-columns:1fr}.toast-actions button,.toast-actions a{height:42px}}


/* FLUXO CARDS V2 - Ver Produto + contador orçamento */
.product-card .product-img,.category-product-card .cat-prod-img{overflow:hidden!important;border-radius:10px!important;position:relative!important}
.card-product-link{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;background:rgba(7,27,77,.04);opacity:0;transition:opacity .2s ease;z-index:4}
.card-product-link span{height:34px;padding:0 14px;border-radius:999px;background:#fff;color:var(--navy);border:1px solid #f1c15c;box-shadow:0 10px 22px rgba(7,27,77,.15);display:flex;align-items:center;justify-content:center;gap:7px;font-size:11px;font-weight:900;text-transform:uppercase;transform:translateY(8px);transition:transform .2s ease}
.product-card:hover .card-product-link,.category-product-card:hover .card-product-link{opacity:1}
.product-card:hover .card-product-link span,.category-product-card:hover .card-product-link span{transform:translateY(0)}
.product-name,.cat-prod-name{cursor:pointer;transition:color .18s ease}.product-name:hover,.cat-prod-name:hover{color:var(--gold)!important}
.quote-icon{position:relative!important}.quote-count{position:absolute;right:-7px;top:-8px;background:var(--gold);color:var(--navy);border-radius:50%;width:18px;height:18px;font-size:11px;display:grid;place-items:center;font-weight:900;font-style:normal;line-height:1}
@media(max-width:900px){.card-product-link{opacity:1;align-items:flex-end;padding-bottom:8px;background:linear-gradient(180deg,transparent 45%,rgba(7,27,77,.14))}.card-product-link span{height:28px;padding:0 10px;font-size:9px;transform:none}.quote-count{width:13px!important;height:13px!important;font-size:8px!important;right:-5px!important;top:-7px!important}}


/* FLUXO CARDS V3 - correção Ver Produto desktop/mobile */
.card-product-link{
  pointer-events:none !important;
}

.product-card:hover .card-product-link,
.category-product-card:hover .card-product-link{
  pointer-events:auto !important;
}

.product-card .product-img,
.category-product-card .cat-prod-img{
  cursor:pointer;
}

@media(max-width:900px){
  .card-product-link{
    opacity:0 !important;
    pointer-events:none !important;
    align-items:flex-end !important;
    padding-bottom:8px !important;
    background:linear-gradient(180deg,transparent 45%,rgba(7,27,77,.12)) !important;
  }

  .product-card.show-product-link .card-product-link,
  .category-product-card.show-product-link .card-product-link{
    opacity:1 !important;
    pointer-events:auto !important;
  }

  .product-card.show-product-link .card-product-link span,
  .category-product-card.show-product-link .card-product-link span{
    transform:translateY(0) !important;
  }

  .card-product-link span{
    height:28px !important;
    padding:0 10px !important;
    font-size:9px !important;
    transform:translateY(8px) !important;
  }
}


/* FLUXO CARDS V4 - padrão final fotos/produto
   Desktop: hover mostra Ver Produto + troca automática no hover
   Mobile: sem botão; imagem troca foto ao toque; nome abre produto */
.product-card,
.category-product-card{
  position:relative !important;
}

/* Esconde o link antigo dentro da imagem, pois a troca de foto usa textContent */
.product-img > .card-product-link,
.cat-prod-img > .card-product-link{
  display:none !important;
  pointer-events:none !important;
}

/* Novo botão Ver Produto estável no desktop */
.card-product-link-floating{
  position:absolute;
  left:50%;
  top:118px;
  transform:translate(-50%, 8px);
  height:34px;
  padding:0 14px;
  border-radius:999px;
  background:#fff;
  color:var(--navy);
  border:1px solid #f1c15c;
  box-shadow:0 10px 22px rgba(7,27,77,.15);
  display:flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
  opacity:0;
  pointer-events:none;
  transition:opacity .2s ease, transform .2s ease;
  z-index:25;
  white-space:nowrap;
}

.product-card:hover .card-product-link-floating,
.category-product-card:hover .card-product-link-floating{
  opacity:1;
  pointer-events:auto;
  transform:translate(-50%, 0);
}

.card-product-link-floating:hover{
  color:var(--gold);
}

/* Mobile premium: sem botão, só toque na imagem para alternar foto e nome para abrir */
@media(max-width:900px){
  .card-product-link-floating,
  .product-img > .card-product-link,
  .cat-prod-img > .card-product-link{
    display:none !important;
    opacity:0 !important;
    pointer-events:none !important;
  }

  .product-card.show-product-link .card-product-link,
  .category-product-card.show-product-link .card-product-link{
    display:none !important;
    opacity:0 !important;
    pointer-events:none !important;
  }

  .product-card .product-img,
  .category-product-card .cat-prod-img{
    cursor:pointer;
  }

  .product-card .product-name,
  .category-product-card .cat-prod-name{
    cursor:pointer;
  }
}


/* FLUXO CARDS V5 - setas na imagem do produto */
.card-img-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:28px;
  height:28px;
  border-radius:50%;
  background:#fff;
  color:var(--navy);
  border:1px solid #e4e9f2;
  box-shadow:0 8px 18px rgba(7,27,77,.14);
  display:grid;
  place-items:center;
  font-size:10px;
  z-index:28;
  opacity:0;
  transition:opacity .18s ease, transform .18s ease, color .18s ease, border-color .18s ease;
}

.card-img-nav.prev{
  left:8px;
}

.card-img-nav.next{
  right:8px;
}

.product-card:hover .card-img-nav,
.category-product-card:hover .card-img-nav{
  opacity:1;
}

.card-img-nav:hover{
  color:var(--gold);
  border-color:var(--gold);
  transform:translateY(-50%) scale(1.08);
}

.product-img,
.cat-prod-img{
  cursor:pointer;
}

.card-product-link-floating{
  pointer-events:none !important;
}

.product-card:hover .card-product-link-floating,
.category-product-card:hover .card-product-link-floating{
  pointer-events:auto !important;
}

/* mobile: setas sempre visíveis, botão Ver Produto oculto */
@media(max-width:900px){
  .card-img-nav{
    opacity:1;
    width:26px;
    height:26px;
    font-size:9px;
  }

  .card-img-nav.prev{
    left:6px;
  }

  .card-img-nav.next{
    right:6px;
  }

  .card-product-link-floating{
    display:none !important;
  }
}


/* FLUXO CARDS V6 - correção definitiva setas/fotos */
.product-img,
.cat-prod-img{
  position:relative !important;
  cursor:pointer !important;
}

/* setas sempre visíveis */
.card-img-nav{
  opacity:1 !important;
  pointer-events:auto !important;
  z-index:60 !important;
}

.card-img-nav.prev{
  left:8px !important;
}

.card-img-nav.next{
  right:8px !important;
}

/* remove qualquer autoplay/hover visual conflitante */
.product-card:hover .product-img,
.category-product-card:hover .cat-prod-img{
  transform:none !important;
  filter:none !important;
}

/* botão Ver Produto: apenas desktop, discreto e temporário via classe */
.card-product-link-floating{
  top:50% !important;
  left:50% !important;
  transform:translate(-50%, -50%) !important;
  height:30px !important;
  padding:0 12px !important;
  font-size:10px !important;
  opacity:0 !important;
  pointer-events:none !important;
  background:rgba(255,255,255,.94) !important;
  z-index:55 !important;
}

.product-card.show-view-product .card-product-link-floating,
.category-product-card.show-view-product .card-product-link-floating{
  opacity:1 !important;
  pointer-events:auto !important;
}

/* links antigos dentro da imagem continuam ocultos */
.product-img > .card-product-link,
.cat-prod-img > .card-product-link{
  display:none !important;
  pointer-events:none !important;
}

/* mobile: sem Ver Produto, setas sempre visíveis */
@media(max-width:900px){
  .card-product-link-floating,
  .product-card.show-view-product .card-product-link-floating,
  .category-product-card.show-view-product .card-product-link-floating{
    display:none !important;
    opacity:0 !important;
    pointer-events:none !important;
  }

  .card-img-nav{
    opacity:1 !important;
    pointer-events:auto !important;
    display:grid !important;
    z-index:80 !important;
  }

  .card-img-nav.prev{
    left:6px !important;
  }

  .card-img-nav.next{
    right:6px !important;
  }
}


/* FLUXO CARDS V7 - correção final limpa das imagens do card */
.product-card .product-img,
.category-product-card .cat-prod-img{
  position:relative !important;
  overflow:hidden !important;
  cursor:pointer !important;
  display:grid !important;
  place-items:center !important;
}

.card-img-symbol{
  display:grid !important;
  place-items:center !important;
  width:100% !important;
  height:100% !important;
  pointer-events:none !important;
}

.card-img-nav{
  position:absolute !important;
  top:50% !important;
  transform:translateY(-50%) !important;
  width:28px !important;
  height:28px !important;
  border-radius:50% !important;
  background:#fff !important;
  color:var(--navy) !important;
  border:1px solid #e4e9f2 !important;
  box-shadow:0 8px 18px rgba(7,27,77,.14) !important;
  display:grid !important;
  place-items:center !important;
  font-size:10px !important;
  z-index:40 !important;
  opacity:1 !important;
  visibility:visible !important;
  pointer-events:auto !important;
  transition:transform .18s ease, color .18s ease, border-color .18s ease !important;
}

.card-img-nav.prev{
  left:8px !important;
}

.card-img-nav.next{
  right:8px !important;
}

.card-img-nav:hover{
  color:var(--gold) !important;
  border-color:var(--gold) !important;
  transform:translateY(-50%) scale(1.08) !important;
}

.card-product-link-floating{
  position:absolute !important;
  left:50% !important;
  top:50% !important;
  transform:translate(-50%,-50%) translateY(8px) !important;
  height:30px !important;
  padding:0 12px !important;
  border-radius:999px !important;
  background:rgba(255,255,255,.96) !important;
  color:var(--navy) !important;
  border:1px solid #f1c15c !important;
  box-shadow:0 10px 22px rgba(7,27,77,.15) !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:7px !important;
  font-size:10px !important;
  font-weight:900 !important;
  text-transform:uppercase !important;
  opacity:0 !important;
  visibility:hidden !important;
  pointer-events:none !important;
  transition:opacity .18s ease, visibility .18s ease, transform .18s ease !important;
  z-index:35 !important;
  white-space:nowrap !important;
}

.product-card.show-view-product .card-product-link-floating,
.category-product-card.show-view-product .card-product-link-floating{
  opacity:1 !important;
  visibility:visible !important;
  pointer-events:auto !important;
  transform:translate(-50%,-50%) translateY(0) !important;
}

.product-img > .card-product-link,
.cat-prod-img > .card-product-link{
  display:none !important;
}

.product-card:hover .product-img,
.category-product-card:hover .cat-prod-img{
  transform:none !important;
  filter:none !important;
}

@media(max-width:900px){
  .card-product-link-floating{
    display:none !important;
    opacity:0 !important;
    visibility:hidden !important;
    pointer-events:none !important;
  }

  .card-img-nav{
    width:26px !important;
    height:26px !important;
    font-size:9px !important;
    opacity:1 !important;
    visibility:visible !important;
    pointer-events:auto !important;
  }

  .card-img-nav.prev{
    left:6px !important;
  }

  .card-img-nav.next{
    right:6px !important;
  }
}


/* FLUXO CARDS V8 - remove segundo Ver Produto */
.product-img .card-product-link,
.cat-prod-img .card-product-link{
  display:none !important;
  opacity:0 !important;
  visibility:hidden !important;
  pointer-events:none !important;
}

.product-card a.card-product-link:not(.card-product-link-floating),
.category-product-card a.card-product-link:not(.card-product-link-floating){
  display:none !important;
  opacity:0 !important;
  visibility:hidden !important;
  pointer-events:none !important;
}


/* FLUXO CARDS V9 - remove qualquer botão Ver Produto duplicado fora da imagem */
.product-card > .card-product-link-floating,
.category-product-card > .card-product-link-floating{
  display:none !important;
  opacity:0 !important;
  visibility:hidden !important;
  pointer-events:none !important;
}

.product-img .card-product-link-floating,
.cat-prod-img .card-product-link-floating{
  display:flex !important;
}


/* WHATSAPP DRAWER V1 */
.whats-float-btn{position:fixed;right:22px;bottom:88px;width:62px;height:62px;border-radius:50%;background:#18A74A;color:#fff;display:grid;place-items:center;box-shadow:0 18px 42px rgba(24,167,74,.34);z-index:99990;transition:.18s}
.whats-float-btn:hover{transform:translateY(-3px) scale(1.03)}
.whats-float-btn i{font-size:31px}.whats-float-count{position:absolute;right:-4px;top:-6px;width:23px;height:23px;border-radius:50%;background:var(--gold);color:var(--navy);display:grid;place-items:center;font-size:12px;font-weight:900;border:2px solid #fff}
.whats-drawer-overlay{position:fixed;inset:0;background:rgba(3,16,41,.48);z-index:99991;opacity:0;visibility:hidden;pointer-events:none;transition:.22s}
.whats-drawer-overlay.show{opacity:1;visibility:visible;pointer-events:auto}
.whats-drawer{position:fixed;right:0;top:0;width:min(460px,calc(100vw - 24px));height:100vh;background:#fff;z-index:99992;box-shadow:-24px 0 70px rgba(7,27,77,.22);transform:translateX(105%);transition:transform .26s;display:flex;flex-direction:column}
.whats-drawer.show{transform:translateX(0)}
.whats-drawer-head{background:linear-gradient(145deg,#071B4D,#031029);color:#fff;padding:20px;display:flex;justify-content:space-between;gap:16px;align-items:flex-start}
.whats-drawer-head h3{margin:0 0 6px;font-size:18px;color:#fff}.whats-drawer-head p{margin:0;color:#dce5f8;font-size:12px;line-height:1.45}
.whats-drawer-close{width:34px;height:34px;border-radius:50%;background:rgba(255,255,255,.12);color:#fff;font-weight:900}
.whats-drawer-body{padding:16px;overflow:auto;flex:1;background:#f7f8fb}
.whats-list-empty{border:1px dashed #cdd6e6;background:#fff;border-radius:14px;padding:22px;text-align:center;color:#62708c;font-size:13px;line-height:1.45}
.whats-list-empty i{display:grid;place-items:center;width:52px;height:52px;border-radius:50%;background:#eaf8ef;color:#18A74A;font-size:26px;margin:0 auto 12px}
.whats-item{background:#fff;border:1px solid #e7ebf2;border-radius:13px;padding:12px;display:grid;grid-template-columns:54px 1fr auto;gap:11px;align-items:start;margin-bottom:10px;box-shadow:0 8px 20px rgba(7,27,77,.04)}
.whats-item-img{height:54px;border-radius:10px;background:#f3f5fa;color:var(--navy);display:grid;place-items:center;font-size:28px;font-weight:900}
.whats-item strong{display:block;color:var(--navy);font-size:12.5px;line-height:1.28;margin-bottom:4px}.whats-item small{display:block;color:#68738a;font-size:11px;line-height:1.35}
.whats-remove{width:28px;height:28px;border-radius:50%;background:#fff1f1;color:#b42318;font-weight:900}
.whats-form{margin-top:16px;background:#fff;border:1px solid #e7ebf2;border-radius:14px;padding:14px}.whats-form-title{margin:0 0 10px;color:var(--navy);font-size:14px;font-weight:900}
.whats-form-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px}.whats-form .field-full{grid-column:1/-1}.whats-form label{display:block;color:var(--navy);font-size:11px;font-weight:900;margin:0 0 6px}
.whats-form input{width:100%;height:40px;border:1px solid #dfe5f0;border-radius:8px;outline:0;padding:0 11px;font-size:12px;font-family:Inter,Arial,sans-serif}
.whats-send{margin-top:12px;width:100%;height:44px;border-radius:9px;background:#18A74A;color:#fff;display:flex;align-items:center;justify-content:center;gap:8px;font-size:12px;font-weight:900;text-transform:uppercase}
.whats-clear{width:100%;height:36px;margin-top:8px;border-radius:8px;background:#fff;color:#667088;border:1px solid #dfe5f0;font-size:11px;font-weight:800}
.whats-added-mini{position:fixed;right:22px;bottom:160px;background:#fff;border:1px solid #e7ebf2;border-radius:999px;height:42px;padding:0 14px;display:flex;align-items:center;gap:8px;color:var(--navy);font-size:12px;font-weight:900;box-shadow:0 14px 34px rgba(7,27,77,.14);z-index:99989;opacity:0;visibility:hidden;transform:translateY(10px);transition:.2s}
.whats-added-mini.show{opacity:1;visibility:visible;transform:translateY(0)}.whats-added-mini i{color:#18A74A;font-size:17px}
@media(max-width:900px){.whats-float-btn{right:15px;bottom:18px;width:56px;height:56px}.whats-float-btn i{font-size:28px}.whats-drawer{width:100%;max-width:none;height:88vh;top:auto;bottom:0;border-radius:20px 20px 0 0;transform:translateY(105%)}.whats-drawer.show{transform:translateY(0)}.whats-form-grid{grid-template-columns:1fr}.whats-added-mini{left:14px;right:14px;bottom:84px;justify-content:center}}


/* WHATSAPP DRAWER V2 - mini confirmação antes do drawer */
.whats-choice-toast{
  position:fixed;
  right:22px;
  bottom:160px;
  width:min(390px, calc(100vw - 32px));
  background:#fff;
  border:1px solid #e5ebf4;
  border-radius:18px;
  box-shadow:0 24px 65px rgba(7,27,77,.22);
  z-index:99993;
  transform:translateY(20px);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:.22s ease;
  overflow:hidden;
}

.whats-choice-toast.show{
  transform:translateY(0);
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

.whats-choice-toast::before{
  content:"";
  display:block;
  height:5px;
  background:linear-gradient(90deg,#18A74A,#38d36b);
}

.whats-choice-inner{
  padding:18px;
}

.whats-choice-head{
  display:flex;
  align-items:flex-start;
  gap:12px;
  margin-bottom:12px;
}

.whats-choice-icon{
  width:42px;
  height:42px;
  border-radius:50%;
  background:#eaf8ef;
  color:#18A74A;
  display:grid;
  place-items:center;
  font-size:20px;
  flex:0 0 42px;
}

.whats-choice-title{
  margin:0;
  color:var(--navy);
  font-size:15px;
  font-weight:900;
  line-height:1.2;
}

.whats-choice-text{
  margin:4px 0 0;
  color:#667088;
  font-size:12px;
  line-height:1.45;
}

.whats-choice-product{
  background:#f7f9fd;
  border:1px solid #e9edf5;
  border-radius:10px;
  padding:10px 12px;
  color:var(--navy);
  font-size:12px;
  font-weight:800;
  margin:10px 0 14px;
}

.whats-choice-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

.whats-choice-actions button{
  height:40px;
  border-radius:8px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
  transition:.18s ease;
}

.whats-choice-more{
  background:#fff;
  border:1px solid #dfe6f0;
  color:var(--navy);
}

.whats-choice-finish{
  background:#18A74A;
  color:#fff;
}

.whats-choice-actions button:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 20px rgba(7,27,77,.12);
}

.whats-choice-close{
  position:absolute;
  right:12px;
  top:12px;
  width:30px;
  height:30px;
  border-radius:50%;
  background:#f3f5fa;
  color:#394765;
  display:grid;
  place-items:center;
  font-weight:900;
}

@media(max-width:900px){
  .whats-choice-toast{
    left:14px;
    right:14px;
    bottom:84px;
    width:auto;
    border-radius:16px;
  }

  .whats-choice-actions{
    grid-template-columns:1fr;
  }

  .whats-choice-actions button{
    height:42px;
  }
}


/* WHATSAPP DRAWER V3 - toast no mesmo padrão do orçamento */
.whats-choice-toast{
  border-radius:20px !important;
  border:0 !important;
  border-top:6px solid var(--gold) !important;
  box-shadow:0 22px 60px rgba(7,27,77,.22) !important;
}

.whats-choice-toast::before{
  display:none !important;
}

.whats-choice-inner{
  padding:22px !important;
}

.whats-choice-head{
  margin-bottom:16px !important;
}

.whats-choice-icon{
  background:#fff7e2 !important;
  color:var(--gold) !important;
}

.whats-choice-title{
  font-size:18px !important;
  color:var(--navy) !important;
}

.whats-choice-text{
  font-size:14px !important;
  color:#667088 !important;
}

.whats-choice-product{
  border-radius:10px !important;
  background:#f8faff !important;
  border:1px solid #e1e7f1 !important;
  padding:12px 14px !important;
  font-size:14px !important;
}

.whats-choice-actions{
  grid-template-columns:1fr 1fr !important;
  gap:12px !important;
}

.whats-choice-actions button{
  height:50px !important;
  border-radius:10px !important;
  font-size:13px !important;
  line-height:1.15 !important;
}

.whats-choice-more{
  background:#fff !important;
  color:var(--navy) !important;
  border:1px solid #dfe6f0 !important;
}

.whats-choice-finish{
  background:var(--gold) !important;
  color:#fff !important;
}

.whats-choice-close{
  background:#f1f4fa !important;
  color:#44516c !important;
}

@media(max-width:900px){
  .whats-choice-inner{
    padding:20px !important;
  }

  .whats-choice-title{
    font-size:17px !important;
  }

  .whats-choice-actions{
    grid-template-columns:1fr 1fr !important;
  }

  .whats-choice-actions button{
    height:48px !important;
    font-size:12px !important;
  }
}


/* WHATSAPP DRAWER V4 - corrigir exibição do toast padrão */
.whats-added-mini{
  display:none !important;
}

.whats-choice-toast{
  position:fixed !important;
  right:22px !important;
  bottom:88px !important;
  width:min(430px, calc(100vw - 32px)) !important;
  background:#fff !important;
  border:0 !important;
  border-top:6px solid var(--gold) !important;
  border-radius:20px !important;
  box-shadow:0 24px 65px rgba(7,27,77,.22) !important;
  z-index:99999 !important;
  transform:translateY(20px) !important;
  opacity:0 !important;
  visibility:hidden !important;
  pointer-events:none !important;
  transition:.22s ease !important;
  overflow:hidden !important;
}

.whats-choice-toast.show{
  transform:translateY(0) !important;
  opacity:1 !important;
  visibility:visible !important;
  pointer-events:auto !important;
}

.whats-choice-toast::before{
  display:none !important;
}

.whats-choice-inner{
  padding:22px !important;
}

.whats-choice-head{
  display:flex !important;
  align-items:flex-start !important;
  gap:14px !important;
  margin-bottom:16px !important;
}

.whats-choice-icon{
  width:52px !important;
  height:52px !important;
  border-radius:50% !important;
  background:#fff7e2 !important;
  color:var(--gold) !important;
  display:grid !important;
  place-items:center !important;
  font-size:22px !important;
  flex:0 0 52px !important;
}

.whats-choice-title{
  margin:0 !important;
  color:var(--navy) !important;
  font-size:18px !important;
  font-weight:900 !important;
  line-height:1.2 !important;
}

.whats-choice-text{
  margin:5px 0 0 !important;
  color:#667088 !important;
  font-size:14px !important;
  line-height:1.45 !important;
}

.whats-choice-product{
  background:#f8faff !important;
  border:1px solid #e1e7f1 !important;
  border-radius:10px !important;
  padding:12px 14px !important;
  color:var(--navy) !important;
  font-size:14px !important;
  font-weight:900 !important;
  margin:10px 0 18px !important;
}

.whats-choice-actions{
  display:grid !important;
  grid-template-columns:1fr 1fr !important;
  gap:12px !important;
}

.whats-choice-actions button{
  height:50px !important;
  border-radius:10px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:8px !important;
  font-size:13px !important;
  font-weight:900 !important;
  line-height:1.15 !important;
  text-transform:uppercase !important;
  transition:.18s ease !important;
}

.whats-choice-more{
  background:#fff !important;
  color:var(--navy) !important;
  border:1px solid #dfe6f0 !important;
}

.whats-choice-finish{
  background:var(--gold) !important;
  color:#fff !important;
}

.whats-choice-close{
  position:absolute !important;
  right:14px !important;
  top:14px !important;
  width:34px !important;
  height:34px !important;
  border-radius:50% !important;
  background:#f1f4fa !important;
  color:#44516c !important;
  display:grid !important;
  place-items:center !important;
  font-weight:900 !important;
}

@media(max-width:900px){
  .whats-choice-toast{
    left:14px !important;
    right:14px !important;
    bottom:84px !important;
    width:auto !important;
  }

  .whats-choice-inner{
    padding:20px !important;
  }

  .whats-choice-title{
    font-size:17px !important;
  }

  .whats-choice-actions{
    grid-template-columns:1fr 1fr !important;
    gap:10px !important;
  }

  .whats-choice-actions button{
    height:48px !important;
    font-size:12px !important;
  }
}


/* WHATSAPP DRAWER V5 - evitar mini aviso antigo */
.whats-added-mini{display:none !important;}


/* WHATSAPP DRAWER V6 - toast WhatsApp igual ao padrão do orçamento */
.whats-choice-toast{
  right:24px !important;
  bottom:24px !important;
  width:min(390px, calc(100vw - 32px)) !important;
  border-radius:18px !important;
  border:1px solid #e5ebf4 !important;
  border-top:0 !important;
  box-shadow:0 24px 65px rgba(7,27,77,.22) !important;
  overflow:hidden !important;
}

.whats-choice-toast::before{
  content:"" !important;
  display:block !important;
  height:5px !important;
  background:linear-gradient(90deg,#18A74A,#38d36b) !important;
}

.whats-choice-inner{
  padding:18px !important;
}

.whats-choice-head{
  gap:12px !important;
  margin-bottom:12px !important;
}

.whats-choice-icon{
  width:42px !important;
  height:42px !important;
  flex:0 0 42px !important;
  background:#eaf8ef !important;
  color:#18A74A !important;
  font-size:18px !important;
}

.whats-choice-title{
  font-size:15px !important;
  line-height:1.2 !important;
}

.whats-choice-text{
  font-size:12px !important;
  line-height:1.45 !important;
}

.whats-choice-product{
  border-radius:10px !important;
  padding:10px 12px !important;
  font-size:12px !important;
  margin:10px 0 14px !important;
}

.whats-choice-actions{
  grid-template-columns:1fr 1fr !important;
  gap:10px !important;
}

.whats-choice-actions button{
  height:40px !important;
  border-radius:8px !important;
  font-size:11px !important;
}

.whats-choice-more{
  background:#fff !important;
  color:var(--navy) !important;
  border:1px solid #dfe6f0 !important;
}

.whats-choice-finish{
  background:#18A74A !important;
  color:#fff !important;
}

.whats-choice-close{
  right:12px !important;
  top:12px !important;
  width:30px !important;
  height:30px !important;
  background:#f3f5fa !important;
  color:#394765 !important;
}

@media(max-width:900px){
  .whats-choice-toast{
    left:14px !important;
    right:14px !important;
    bottom:18px !important;
    width:auto !important;
    border-radius:16px !important;
  }

  .whats-choice-inner{
    padding:16px !important;
  }

  .whats-choice-actions{
    grid-template-columns:1fr !important;
  }

  .whats-choice-actions button{
    height:42px !important;
  }
}


/* V185 - suporte a logo por imagem e links sociais globais */
.brand-logo-picture{display:flex;align-items:center;justify-content:center;flex:0 0 auto;max-width:190px;max-height:58px}
.brand-logo-img{display:block;max-width:190px;max-height:58px;width:auto;height:auto;object-fit:contain}
.footer-logo-img{display:block;max-width:170px;max-height:54px;width:auto;height:auto;object-fit:contain}
.top-links a{display:inline-flex;align-items:center;gap:6px;color:inherit;text-decoration:none}
.footer a{color:inherit;text-decoration:none}
.social-icons a{width:31px;height:31px;border-radius:999px;background:rgba(255,255,255,.10);display:inline-flex;align-items:center;justify-content:center;color:#fff;text-decoration:none;margin-right:6px}
.social-icons a:hover{background:rgba(245,169,0,.95);color:#071B4D}
@media (max-width:768px){.brand-logo-picture{max-width:132px;max-height:44px}.brand-logo-img{max-width:132px;max-height:44px}.footer-logo-img{max-width:140px;max-height:46px}}


/* V187 - placeholder de logo quando não há imagem configurada */
.brand-logo-placeholder{display:flex;align-items:center;justify-content:center;min-width:150px;height:52px;padding:0 14px;border:1px dashed rgba(255,255,255,.45);border-radius:12px;color:#fff;font-size:12px;font-weight:900;letter-spacing:.02em;background:rgba(255,255,255,.06);}
.footer-logo-placeholder{min-width:160px;height:54px;border-color:rgba(255,255,255,.35);}
.brand-logo-img{display:block;max-width:220px;max-height:70px;width:auto;height:auto;object-fit:contain;}
.footer-logo-img{display:block;max-width:210px;max-height:70px;width:auto;height:auto;object-fit:contain;}
@media(max-width:768px){.brand-logo-placeholder{min-width:120px;height:44px;font-size:11px}.brand-logo-img{max-width:160px;max-height:55px}}

/* V189 - ajuste fino do alinhamento da logo desktop no Header Global */
.mb-site-header .brand{
  min-width:230px;
  height:76px;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  overflow:hidden;
  text-decoration:none;
}
.mb-site-header .brand-logo-picture{
  width:220px;
  height:70px;
  max-width:220px;
  max-height:70px;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  overflow:hidden;
}
.mb-site-header .brand-logo-img{
  display:block;
  width:100%;
  height:100%;
  max-width:100%;
  max-height:100%;
  object-fit:contain;
  object-position:left center;
}
.preview-box .mb-site-header .brand,
.preview-box .mb-site-header .brand-logo-picture{
  align-items:center;
  justify-content:flex-start;
}
@media(max-width:768px){
  .mb-site-header .brand{
    min-width:150px;
    height:56px;
    justify-content:center;
  }
  .mb-site-header .brand-logo-picture{
    width:150px;
    height:52px;
    max-width:150px;
    max-height:52px;
    justify-content:center;
  }
  .mb-site-header .brand-logo-img{
    object-position:center center;
  }
}

/* V190 - ajuste fino: logo um pouco mais baixa no Header Global */
.mb-site-header .brand-logo-picture,
.mb-site-header .brand-logo-placeholder{
  transform:translateY(5px);
}
.preview-box .mb-site-header .brand-logo-picture,
.preview-box .mb-site-header .brand-logo-placeholder{
  transform:translateY(5px);
}
@media(max-width:768px){
  .mb-site-header .brand-logo-picture,
  .mb-site-header .brand-logo-placeholder,
  .preview-box .mb-site-header .brand-logo-picture,
  .preview-box .mb-site-header .brand-logo-placeholder{
    transform:translateY(3px);
  }
}

/* V191 - menu global alimentado pela Estrutura */
.menu-empty{display:inline-flex;align-items:center;gap:8px;color:rgba(255,255,255,.82);font-size:13px;font-weight:700;padding:0 10px;white-space:nowrap}
.nav-row[data-mb-structure-menu]{overflow-x:auto;scrollbar-width:thin}
.nav-row[data-mb-structure-menu]::-webkit-scrollbar{height:4px}
.nav-row[data-mb-structure-menu]::-webkit-scrollbar-thumb{background:rgba(255,255,255,.25);border-radius:999px}

/* V198 - Mega menu global alimentado pela Estrutura real */
.mega-menu[data-mb-dynamic-mega] .mega-group.is-active{display:block!important;}
.mega-menu[data-mb-dynamic-mega]:not(.mode-all) .mega-group:not(.is-active){display:none!important;}
.mega-menu[data-mb-dynamic-mega] .mega-side a.is-active{background:rgba(211,164,74,.16);color:var(--gold,#d3a44a);}
.mega-menu[data-mb-dynamic-mega] .mega-category-block{break-inside:avoid;margin-bottom:18px;}
.mega-menu[data-mb-dynamic-mega] .menu-empty{display:block;padding:14px;color:#e8edf4;font-size:13px;font-weight:800;}
@media (max-width: 768px){
  .mega-menu[data-mb-dynamic-mega] .mega-category-block{margin-bottom:12px;}
}

/* V205 - Mega Menu Global limpo, sem dependência do menu antigo */
.mbx-open{overflow-x:hidden;}
.mbx-mega{position:absolute;left:0;right:0;top:100%;z-index:999;display:none;}
.mbx-mega.is-open{display:block;}
.mbx-backdrop{position:fixed;inset:0;background:rgba(15,42,68,.18);z-index:1;}
.mbx-shell{position:relative;z-index:2;width:min(1180px,calc(100% - 32px));margin:0 auto;background:#fff;border:1px solid rgba(15,42,68,.10);border-radius:0 0 22px 22px;box-shadow:0 28px 70px rgba(15,42,68,.22);display:grid;grid-template-columns:255px minmax(0,1fr) 260px;gap:0;overflow:hidden;min-height:430px;max-height:calc(100vh - 170px);}
.mbx-close{position:absolute;right:16px;top:14px;width:36px;height:36px;border:0;border-radius:999px;background:#0f2a44;color:#fff;display:grid;place-items:center;cursor:pointer;z-index:5;box-shadow:0 8px 18px rgba(15,42,68,.22);}
.mbx-left{background:#0f2a44;color:#fff;padding:22px 16px;overflow:auto;}
.mbx-title{text-transform:uppercase;font-size:12px;letter-spacing:.08em;font-weight:900;color:#d8b76a;margin:0 0 16px;}
.mbx-groups{display:flex;flex-direction:column;gap:8px;}
.mbx-groups button{border:1px solid rgba(255,255,255,.10);background:rgba(255,255,255,.06);color:#fff;width:100%;min-height:44px;border-radius:13px;padding:9px 10px;display:grid;grid-template-columns:24px minmax(0,1fr) 14px;align-items:center;gap:8px;text-align:left;font:inherit;font-weight:800;cursor:pointer;transition:.18s ease;}
.mbx-groups button i{color:#d8b76a;}
.mbx-groups button span{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
.mbx-groups button.is-active,.mbx-groups button:hover{background:#d8b76a;color:#0f2a44;border-color:#d8b76a;transform:translateX(3px);}
.mbx-groups button.is-active i,.mbx-groups button:hover i{color:#0f2a44;}
.mbx-center{padding:24px 26px 26px;overflow:auto;background:#fff;}
.mbx-panel{display:none;}
.mbx-panel.is-active{display:block;}
.mbx-panel-head{display:flex;align-items:flex-start;justify-content:space-between;gap:16px;margin:0 0 20px;padding-right:36px;}
.mbx-panel-head small{font-weight:900;text-transform:uppercase;color:#d8b76a;font-size:11px;letter-spacing:.08em;}
.mbx-panel-head h3{margin:3px 0 0;color:#0f2a44;font-size:24px;line-height:1.1;font-weight:900;}
.mbx-panel-head a{font-weight:900;font-size:12px;color:#0f2a44;text-decoration:underline;white-space:nowrap;margin-top:6px;}
.mbx-cat-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;}
.mbx-cat-block{border:1px solid #edf1f5;border-radius:16px;padding:14px;background:linear-gradient(180deg,#fff,#fbfcfd);min-height:142px;}
.mbx-cat-title{display:flex;align-items:center;gap:9px;color:#0f2a44;font-weight:900;text-decoration:none;margin-bottom:10px;line-height:1.2;}
.mbx-cat-title i{color:#d8b76a;}
.mbx-sub-list{display:flex;flex-direction:column;gap:7px;}
.mbx-sub-list a{color:#52616f;text-decoration:none;font-size:13px;font-weight:700;line-height:1.2;}
.mbx-sub-list a:hover{color:#0f2a44;text-decoration:underline;}
.mbx-sub-list .mbx-sub-more{color:#0f2a44;font-weight:900;margin-top:2px;}
.mbx-right{background:#f7f9fb;border-left:1px solid #edf1f5;padding:58px 18px 20px;overflow:auto;display:flex;flex-direction:column;gap:16px;}
.mbx-highlight-title{font-size:13px;font-weight:900;text-transform:uppercase;letter-spacing:.06em;color:#0f2a44;margin-bottom:8px;}
.mbx-highlight-list{display:flex;flex-direction:column;gap:8px;}
.mbx-highlight{display:flex;align-items:center;gap:9px;text-decoration:none;color:#0f2a44;background:#fff;border:1px solid #e8edf2;border-radius:13px;padding:10px 11px;font-size:13px;font-weight:900;transition:.16s ease;}
.mbx-highlight i{color:#d8b76a;min-width:16px;text-align:center;}
.mbx-highlight:hover{transform:translateY(-1px);box-shadow:0 8px 18px rgba(15,42,68,.10);}
.mbx-highlight-empty{background:#fff;border:1px dashed #d7dee6;border-radius:14px;padding:14px;color:#667;display:flex;flex-direction:column;gap:4px;font-size:12px;}
.mbx-highlight-empty strong{color:#0f2a44;}
.mbx-banner{display:block;position:relative;border-radius:18px;overflow:hidden;min-height:190px;background:#0f2a44;text-decoration:none;color:#fff;box-shadow:0 14px 28px rgba(15,42,68,.18);}
.mbx-banner img{width:100%;height:100%;min-height:190px;object-fit:cover;display:block;}
.mbx-banner-placeholder{height:190px;display:grid;place-items:center;color:#d8b76a;font-size:36px;}
.mbx-banner::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(15,42,68,.02),rgba(15,42,68,.82));}
.mbx-banner-overlay{position:absolute;left:14px;right:14px;bottom:14px;z-index:1;display:flex;flex-direction:column;gap:6px;}
.mbx-banner-overlay strong{font-size:19px;line-height:1.05;font-weight:900;}
.mbx-banner-overlay em{font-style:normal;font-size:12px;background:#d8b76a;color:#0f2a44;border-radius:999px;padding:7px 10px;font-weight:900;width:max-content;max-width:100%;}
.mbx-empty{border:1px dashed #d9e0e7;border-radius:14px;padding:18px;color:#6b7785;font-weight:800;background:#fff;}
.all-products{border:0;cursor:pointer;font:inherit;}
@media (max-width: 980px){.mbx-mega{display:none!important}.mbx-open{overflow:auto}.mbx-banner{display:none}.mbx-right{display:none}.mbx-shell{grid-template-columns:1fr;width:100%;max-height:none;}.mbx-left,.mbx-center{display:none}}

/* V206 - Ajustes finais do Mega Menu Expansivo Global
   Escopo: comportamento visual do header/menu apenas. Não altera Estrutura, Produtos, Cards ou Carrinhos. */
.mb-site-header{
  position:sticky;
  top:0;
  z-index:2100;
}
.mb-site-header .sticky-wrap{
  position:relative;
  top:auto;
  z-index:auto;
}
.nav-row[data-mb-structure-menu]{
  overflow:visible!important;
}
.mb-site-header .all-products{
  background:transparent!important;
  color:#fff!important;
  border:1px solid transparent!important;
  border-radius:9px!important;
  min-height:36px!important;
  padding:0 12px!important;
  display:inline-flex!important;
  align-items:center!important;
  gap:8px!important;
  font-weight:900!important;
  line-height:1!important;
}
.mb-site-header .all-products i,
.mb-site-header .menu-link i{
  color:#FFC107!important;
}
.mb-site-header .all-products:hover,
.mb-site-header .all-products:focus,
.mb-site-header .menu-link:hover,
.mb-site-header .menu-link:focus{
  background:rgba(255,193,7,.12)!important;
  color:#FFC107!important;
  outline:0;
}
.mb-site-header .menu-link{
  min-height:36px;
  padding:0 12px;
  border-radius:9px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#fff;
  font-weight:900;
}
.mbx-mega{
  top:100%;
  animation:none;
}
.mbx-mega.is-open .mbx-shell{
  animation:mbxDropIn .22s ease both;
}
@keyframes mbxDropIn{
  from{opacity:0;transform:translateY(-8px)}
  to{opacity:1;transform:translateY(0)}
}
.mbx-backdrop{
  background:rgba(7,27,77,.18)!important;
  backdrop-filter:blur(1px);
}
.mbx-shell{
  border-color:rgba(7,27,77,.12)!important;
  box-shadow:0 30px 76px rgba(7,27,77,.24)!important;
}
.mbx-left{
  background:linear-gradient(180deg,#071B4D,#031029)!important;
}
.mbx-title,
.mbx-panel-head small,
.mbx-cat-title i,
.mbx-highlight i{
  color:#FFC107!important;
}
.mbx-groups button{
  border-color:rgba(255,255,255,.14)!important;
  background:rgba(255,255,255,.055)!important;
  color:#fff!important;
}
.mbx-groups button i{
  color:#FFC107!important;
}
.mbx-groups button.is-active,
.mbx-groups button:hover{
  background:#FFC107!important;
  color:#071B4D!important;
  border-color:#FFC107!important;
  box-shadow:0 10px 18px rgba(255,193,7,.20);
}
.mbx-groups button.is-active i,
.mbx-groups button:hover i{
  color:#071B4D!important;
}
.mbx-panel-head h3,
.mbx-panel-head a,
.mbx-cat-title,
.mbx-sub-list .mbx-sub-more,
.mbx-highlight-title,
.mbx-highlight-empty strong{
  color:#071B4D!important;
}
.mbx-highlight:hover{
  border-color:rgba(255,193,7,.45);
}
.mbx-right{
  background:#f8fafc!important;
}
.mbx-close{
  background:#071B4D!important;
  color:#fff!important;
}
.mbx-close:hover{
  background:#FFC107!important;
  color:#071B4D!important;
}
.mbx-banner{
  background:linear-gradient(145deg,#071B4D,#031029)!important;
}
.mbx-banner img{
  background:linear-gradient(145deg,#071B4D,#031029);
}
.mbx-banner .mbx-banner-error{
  display:none;
}
.mbx-banner.is-image-error .mbx-banner-error{
  display:grid;
}
.mbx-banner.is-image-error img{
  display:none!important;
}
.mbx-banner-placeholder{
  color:#FFC107!important;
  gap:8px;
  text-align:center;
  font-weight:900;
}
.mbx-banner-placeholder small{
  display:block;
  color:#fff;
  font-size:12px;
  opacity:.9;
}
.mbx-banner-overlay em{
  background:#FFC107!important;
  color:#071B4D!important;
}
@media (max-width:980px){
  .mbx-banner{display:none!important;}
  .nav-row[data-mb-structure-menu]{overflow-x:auto!important;}
}


/* V207 - ajustes finais Mega Menu: sticky real, fechamento automático e banner cadastrado */
.mb-site-header{
  position:sticky!important;
  top:0!important;
  z-index:9999!important;
}
.mb-site-header .sticky-wrap{
  position:relative!important;
  top:auto!important;
  z-index:auto!important;
}
.mbx-mega.is-open{display:block!important;}
.mbx-shell{animation:mbxDropIn .22s ease both;}
.mbx-banner img[src^="data:"]{display:block!important;}
@media(max-width:980px){
  .mb-site-header{position:sticky!important;top:0!important;}
}

/* V208 - Header desktop sticky definitivo + Header mobile/drawer base */
body.mb-has-fixed-header{
  padding-top:var(--mb-header-height,0px);
}
.mb-site-header{
  position:fixed!important;
  top:0!important;
  left:0!important;
  right:0!important;
  width:100%!important;
  z-index:9999!important;
  background:#fff;
  box-shadow:0 4px 16px rgba(7,27,77,.06);
  transition:box-shadow .18s ease, transform .18s ease;
}
.mb-site-header.is-scrolled{
  box-shadow:0 10px 28px rgba(7,27,77,.14);
}
.mb-site-header.is-scrolled .topbar{
  max-height:0;
  padding-top:0!important;
  padding-bottom:0!important;
  overflow:hidden;
  opacity:0;
}
.mb-site-header.is-scrolled .main-header-row{
  padding-top:8px!important;
  padding-bottom:8px!important;
}
.mb-site-header.is-scrolled .brand-logo-picture,
.mb-site-header.is-scrolled .brand-logo-placeholder{
  transform:scale(.92);
  transform-origin:left center;
}
.mb-site-header .sticky-wrap{position:relative!important;}
.mb-mobile-head,
.mb-mobile-search,
.mb-mobile-drawer{display:none;}

@media(max-width:980px){
  body.mb-has-fixed-header{padding-top:var(--mb-header-height,112px);}
  .mb-site-header .topbar,
  .mb-site-header .sticky-wrap{display:none!important;}
  .mb-mobile-head{
    display:grid;
    grid-template-columns:44px minmax(0,1fr) 44px;
    align-items:center;
    gap:10px;
    padding:10px 14px 8px;
    background:#fff;
    border-bottom:1px solid #eef2f6;
  }
  .mb-mobile-menu-btn,
  .mb-mobile-cart{
    width:42px;height:42px;border:0;border-radius:14px;
    background:#071B4D;color:#fff;display:grid;place-items:center;
    text-decoration:none;cursor:pointer;box-shadow:0 8px 18px rgba(7,27,77,.12);
  }
  .mb-mobile-menu-btn i{font-size:18px;color:#FFC107;}
  .mb-mobile-cart i{font-size:18px;color:#FFC107;position:relative;font-style:normal;}
  .mb-mobile-cart .cart-count{position:absolute;right:-9px;top:-10px;width:18px;height:18px;border-radius:999px;background:#FFC107;color:#071B4D;font-size:10px;font-weight:900;display:grid;place-items:center;border:2px solid #fff;font-style:normal;}
  .mb-mobile-brand{min-width:0;display:flex;align-items:center;justify-content:center;text-decoration:none;}
  .mb-mobile-brand .brand-logo-picture{max-width:165px!important;max-height:54px!important;display:flex;align-items:center;justify-content:center;}
  .mb-mobile-brand .brand-logo-img{max-width:165px!important;max-height:54px!important;object-fit:contain;display:block;}
  .mb-mobile-brand .brand-logo-placeholder{min-width:150px;height:44px;border-radius:12px;font-size:11px;}
  .mb-mobile-search{
    display:grid;grid-template-columns:minmax(0,1fr) 44px;gap:0;
    margin:0;padding:8px 14px 10px;background:#fff;border-bottom:1px solid #eef2f6;
  }
  .mb-mobile-search input{height:42px;border:1px solid #dfe7ef;border-right:0;border-radius:14px 0 0 14px;padding:0 13px;font-family:Inter,sans-serif;font-weight:700;color:#071B4D;outline:0;min-width:0;}
  .mb-mobile-search button{height:42px;border:0;border-radius:0 14px 14px 0;background:#FFC107;color:#071B4D;display:grid;place-items:center;font-size:16px;}
  .mb-mobile-drawer{display:block;position:fixed;inset:0;z-index:10020;pointer-events:none;}
  .mb-mobile-drawer.is-open{pointer-events:auto;}
  .mb-mobile-backdrop{position:absolute;inset:0;background:rgba(7,27,77,.44);opacity:0;transition:.18s ease;}
  .mb-mobile-drawer.is-open .mb-mobile-backdrop{opacity:1;}
  .mb-mobile-panel{position:absolute;left:0;top:0;bottom:0;width:min(88vw,390px);background:#fff;box-shadow:24px 0 60px rgba(7,27,77,.22);transform:translateX(-105%);transition:transform .22s ease;display:flex;flex-direction:column;overflow:hidden;}
  .mb-mobile-drawer.is-open .mb-mobile-panel{transform:translateX(0);}
  .mb-mobile-panel-head{height:62px;background:#071B4D;color:#fff;display:flex;align-items:center;justify-content:space-between;padding:0 16px;flex:0 0 auto;}
  .mb-mobile-panel-head strong{font-weight:900;letter-spacing:.02em;}
  .mb-mobile-panel-head button{width:38px;height:38px;border:0;border-radius:999px;background:#FFC107;color:#071B4D;display:grid;place-items:center;cursor:pointer;}
  .mb-mobile-products{padding:14px;overflow:auto;flex:1 1 auto;}
  .mb-mobile-section-title{text-transform:uppercase;font-size:11px;font-weight:900;letter-spacing:.08em;color:#071B4D;margin:2px 0 12px;}
  .mbm-group{border:1px solid #e8edf2;border-radius:16px;background:#fff;margin-bottom:9px;overflow:hidden;}
  .mbm-toggle{width:100%;min-height:48px;border:0;background:#fff;color:#071B4D;display:grid;grid-template-columns:28px minmax(0,1fr) 18px;align-items:center;gap:8px;padding:8px 12px;text-align:left;font-family:Inter,sans-serif;font-weight:900;cursor:pointer;}
  .mbm-toggle i{color:#FFC107;}
  .mbm-toggle span{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
  .mbm-group.is-open .mbm-toggle{background:#071B4D;color:#fff;}
  .mbm-content{display:none;padding:10px 12px 13px;border-top:1px solid #eef2f6;background:#fbfcfe;}
  .mbm-group.is-open .mbm-content{display:block;}
  .mbm-view{display:block;color:#071B4D;font-weight:900;text-decoration:none;font-size:13px;margin-bottom:10px;}
  .mbm-cat{padding:9px 0;border-top:1px solid #edf1f5;}
  .mbm-cat:first-of-type{border-top:0;}
  .mbm-cat>a{display:block;color:#071B4D;font-weight:900;text-decoration:none;font-size:14px;}
  .mbm-subs{display:flex;flex-direction:column;gap:6px;margin-top:7px;padding-left:10px;border-left:2px solid #FFC107;}
  .mbm-subs a{color:#536171;font-weight:750;text-decoration:none;font-size:13px;line-height:1.2;}
  .mbm-empty{display:block;padding:14px;border:1px dashed #dce4ec;border-radius:14px;color:#667;font-size:13px;font-weight:800;background:#fff;}
  .mb-mobile-links{padding:12px 14px 16px;border-top:1px solid #eef2f6;background:#f8fafc;display:grid;grid-template-columns:1fr 1fr;gap:8px;flex:0 0 auto;}
  .mb-mobile-links a{min-height:40px;border:1px solid #e4ebf2;border-radius:13px;background:#fff;color:#071B4D;text-decoration:none;display:flex;align-items:center;gap:8px;padding:7px 10px;font-size:12px;font-weight:900;}
  .mb-mobile-links a i{color:#FFC107;}
  body.mb-mobile-open{overflow:hidden;}
}

/* V209 - ajustes finais Header Mobile aprovado: fundo azul, destaques, 2 carrinhos e accordion organizado */
@media(max-width:980px){
  .mb-site-header{
    background:#071B4D!important;
  }
  .mb-mobile-head{
    grid-template-columns:44px minmax(0,1fr) 42px 42px!important;
    background:linear-gradient(180deg,#082057 0%, #071B4D 100%)!important;
    border-bottom:0!important;
    padding:10px 14px 8px!important;
  }
  .mb-mobile-search{
    background:linear-gradient(180deg,#071B4D 0%, #071B4D 100%)!important;
    border-bottom:1px solid rgba(255,255,255,.08)!important;
    padding:8px 14px 12px!important;
  }
  .mb-mobile-brand .brand-logo-picture,
  .mb-mobile-brand .brand-logo-img{
    max-width:170px!important;
    max-height:56px!important;
  }
  .mb-mobile-brand .brand-logo-placeholder{
    background:rgba(255,255,255,.08)!important;
    color:#fff!important;
    border:1px solid rgba(255,255,255,.18)!important;
  }
  .mb-mobile-menu-btn,
  .mb-mobile-action,
  .mb-mobile-cart{
    width:42px!important;
    height:42px!important;
    border:0!important;
    border-radius:14px!important;
    background:rgba(255,255,255,.08)!important;
    color:#FFC107!important;
    display:grid!important;
    place-items:center!important;
    text-decoration:none!important;
    cursor:pointer!important;
    box-shadow:none!important;
    position:relative!important;
  }
  .mb-mobile-menu-btn:hover,
  .mb-mobile-action:hover,
  .mb-mobile-cart:hover{
    background:rgba(255,255,255,.14)!important;
  }
  .mb-mobile-action i,
  .mb-mobile-menu-btn i,
  .mb-mobile-cart i{
    color:#FFC107!important;
    font-size:18px!important;
    position:relative!important;
    font-style:normal!important;
  }
  .mb-mobile-action em,
  .mb-mobile-cart em,
  .mb-mobile-cart .cart-count{
    position:absolute!important;
    right:-9px!important;
    top:-10px!important;
    min-width:18px!important;
    height:18px!important;
    padding:0 4px!important;
    border-radius:999px!important;
    background:#FFC107!important;
    color:#071B4D!important;
    font-size:10px!important;
    font-weight:900!important;
    display:grid;
    place-items:center;
    border:2px solid #071B4D!important;
    font-style:normal!important;
    line-height:1!important;
  }
  .mb-mobile-highlights{
    display:flex;
    gap:8px;
    overflow-x:auto;
    scrollbar-width:none;
    padding:0 0 12px;
    margin:0 0 12px;
    border-bottom:1px solid #edf1f6;
  }
  .mb-mobile-highlights::-webkit-scrollbar{display:none;}
  .mbmh-item{
    flex:0 0 auto;
    min-height:38px;
    border:1px solid #e7edf4;
    border-radius:999px;
    padding:0 12px;
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#071B4D;
    background:#fff;
    font-size:12px;
    font-weight:900;
    text-decoration:none;
    box-shadow:0 8px 18px rgba(7,27,77,.05);
  }
  .mbmh-item i{color:#FFC107;}
  .mb-mobile-section-title{margin-top:0!important;}
  .mbm-view{
    display:block!important;
    font-weight:900!important;
    text-decoration:none!important;
    font-size:13px!important;
    margin-bottom:10px!important;
    line-height:1.25!important;
  }
  .mbm-view span{color:#FFC107!important;}
  .mbm-view strong{color:#071B4D!important;}
  .mb-mobile-cart-links{
    grid-template-columns:1fr 1fr!important;
    border-top:1px solid #eef2f6!important;
    border-bottom:1px solid #eef2f6!important;
    background:#fff!important;
    padding-bottom:8px!important;
  }
  .mb-mobile-cart-links a{
    justify-content:center;
    position:relative;
  }
  .mb-mobile-cart-links em{
    min-width:18px;
    height:18px;
    padding:0 4px;
    border-radius:999px;
    background:#FFC107;
    color:#071B4D;
    display:inline-grid;
    place-items:center;
    font-size:10px;
    font-weight:900;
    font-style:normal;
    margin-left:auto;
  }
}

/* V210 - ajustes finais Header Mobile: menu limpo, links Ver todos e modo compacto no scroll */
@media(max-width:980px){
  .mb-mobile-search-inline{display:none;}

  /* Drawer: carrinhos ficam apenas no topo mobile, não dentro do menu */
  .mb-mobile-cart-links{display:none!important;}

  /* Grupo aberto: linha superior com nome do grupo à esquerda e Ver todos à direita */
  .mbm-view-row{
    display:flex!important;
    align-items:center!important;
    justify-content:space-between!important;
    gap:12px!important;
    margin:0 0 12px!important;
    padding-bottom:10px!important;
    border-bottom:1px solid #edf1f5!important;
  }
  .mbm-group-name{
    color:#071B4D!important;
    font-weight:900!important;
    font-size:14px!important;
    line-height:1.2!important;
    text-decoration:none!important;
    min-width:0!important;
    overflow:hidden!important;
    text-overflow:ellipsis!important;
    white-space:nowrap!important;
  }
  .mbm-view{
    flex:0 0 auto!important;
    margin:0!important;
    padding:4px 9px!important;
    border-radius:999px!important;
    background:rgba(255,193,7,.13)!important;
    box-shadow:0 5px 14px rgba(255,193,7,.20)!important;
    color:#FFC107!important;
    font-size:12px!important;
    font-weight:700!important;
    line-height:1!important;
    text-decoration:none!important;
  }
  .mbm-view span,.mbm-view strong{color:inherit!important;font-weight:inherit!important;}

  /* Categoria / Subcategoria */
  .mbm-cat{
    padding:12px 0 10px!important;
    border-top:1px solid #edf1f5!important;
  }
  .mbm-cat:first-of-type{border-top:0!important;}
  .mbm-cat-name,
  .mbm-cat>a:not(.mbm-cat-view){
    display:block!important;
    color:#071B4D!important;
    font-weight:900!important;
    text-decoration:none!important;
    font-size:14px!important;
    line-height:1.25!important;
    margin-bottom:8px!important;
  }
  .mbm-subs{
    display:flex!important;
    flex-direction:column!important;
    gap:7px!important;
    margin-top:6px!important;
    padding-left:10px!important;
    border-left:2px solid rgba(255,193,7,.55)!important;
  }
  .mbm-subs a:not(.mbm-cat-view){
    color:#6d7585!important;
    font-weight:500!important;
    text-decoration:none!important;
    font-size:13px!important;
    line-height:1.25!important;
  }
  .mbm-cat-view{
    color:#FFC107!important;
    font-weight:600!important;
    text-decoration:none!important;
    font-size:13px!important;
    line-height:1.25!important;
    margin-top:2px!important;
  }
  .mbm-cat-view-solo{display:inline-block!important;margin-top:4px!important;}

  /* Topo mobile compacto no scroll: menu + busca + orçamento + compra na mesma linha */
  .mb-site-header.is-scrolled .mb-mobile-head{
    grid-template-columns:42px minmax(0,1fr) 40px 40px!important;
    gap:8px!important;
    padding:8px 10px!important;
  }
  .mb-site-header.is-scrolled .mb-mobile-brand{display:none!important;}
  .mb-site-header.is-scrolled .mb-mobile-search-inline{
    display:grid!important;
    grid-template-columns:minmax(0,1fr) 38px!important;
    min-width:0!important;
  }
  .mb-mobile-search-inline input{
    height:38px!important;
    min-width:0!important;
    border:1px solid rgba(255,255,255,.22)!important;
    border-right:0!important;
    border-radius:13px 0 0 13px!important;
    padding:0 10px!important;
    background:#fff!important;
    color:#071B4D!important;
    font-family:Inter,sans-serif!important;
    font-weight:700!important;
    outline:0!important;
  }
  .mb-mobile-search-inline button{
    height:38px!important;
    border:0!important;
    border-radius:0 13px 13px 0!important;
    background:#FFC107!important;
    color:#071B4D!important;
    display:grid!important;
    place-items:center!important;
  }
  .mb-site-header.is-scrolled .mb-mobile-search-block{display:none!important;}
  .mb-site-header.is-scrolled .mb-mobile-menu-btn,
  .mb-site-header.is-scrolled .mb-mobile-action,
  .mb-site-header.is-scrolled .mb-mobile-cart{
    width:40px!important;
    height:38px!important;
    border-radius:13px!important;
  }
}

/* V542 - Header Mobile Isolado
   Escopo restrito: apenas header/menu/busca/carrinhos no mobile.
   Mantem banner, cards, modulos e desktop intactos. */
@media (max-width: 980px){
  .mb-site-header{
    background:#071B4D!important;
  }

  .mb-site-header .topbar,
  .mb-site-header .sticky-wrap{
    display:none!important;
  }

  .mb-mobile-head{
    display:grid!important;
    grid-template-columns:42px minmax(0,1fr) 92px!important;
    align-items:center!important;
    gap:8px!important;
    padding:9px 12px 8px!important;
    background:#071B4D!important;
    border-bottom:0!important;
  }

  .mb-mobile-menu-btn{
    grid-column:1!important;
    width:42px!important;
    height:42px!important;
    border:0!important;
    border-radius:14px!important;
    background:rgba(255,255,255,.10)!important;
    color:#FFC107!important;
    display:grid!important;
    place-items:center!important;
    box-shadow:none!important;
  }

  .mb-mobile-menu-btn i{
    color:#FFC107!important;
    font-size:18px!important;
  }

  .mb-mobile-brand{
    grid-column:2!important;
    min-width:0!important;
    height:48px!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    overflow:hidden!important;
  }

  .mb-mobile-brand .brand-logo-picture,
  .mb-mobile-brand .brand-logo-placeholder{
    max-width:168px!important;
    max-height:48px!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
  }

  .mb-mobile-brand .brand-logo-img{
    max-width:168px!important;
    max-height:48px!important;
    width:auto!important;
    height:auto!important;
    object-fit:contain!important;
    display:block!important;
  }

  .mb-mobile-head > .mb-mobile-search-inline{
    display:none!important;
  }

  .mb-header-selection--mobile{
    grid-column:3!important;
    justify-self:end!important;
    display:flex!important;
    align-items:center!important;
    justify-content:flex-end!important;
    gap:8px!important;
    width:92px!important;
    min-width:92px!important;
  }

  .mb-header-selection--mobile .mb-header-selection__btn{
    position:relative!important;
    width:42px!important;
    height:42px!important;
    min-width:42px!important;
    padding:0!important;
    border:0!important;
    border-radius:14px!important;
    background:rgba(255,255,255,.10)!important;
    color:#FFC107!important;
    display:grid!important;
    place-items:center!important;
    text-decoration:none!important;
    box-shadow:none!important;
  }

  .mb-header-selection--mobile .mb-header-selection__btn i{
    color:#FFC107!important;
    font-size:18px!important;
    line-height:1!important;
  }

  .mb-header-selection--mobile .mb-header-selection__btn small{
    display:none!important;
  }

  .mb-header-selection--mobile .mb-header-selection__btn span{
    position:absolute!important;
    top:-7px!important;
    right:-7px!important;
    min-width:18px!important;
    height:18px!important;
    padding:0 4px!important;
    border-radius:999px!important;
    background:#FFC107!important;
    color:#071B4D!important;
    border:2px solid #071B4D!important;
    font-size:10px!important;
    font-weight:900!important;
    line-height:14px!important;
    display:grid!important;
    place-items:center!important;
  }

  .mb-mobile-search-block{
    display:grid!important;
    grid-template-columns:minmax(0,1fr) 44px!important;
    padding:0 12px 10px!important;
    margin:0!important;
    background:#071B4D!important;
    border-bottom:1px solid rgba(255,255,255,.08)!important;
  }

  .mb-mobile-search-block input{
    height:40px!important;
    min-width:0!important;
    border:1px solid rgba(255,255,255,.24)!important;
    border-right:0!important;
    border-radius:14px 0 0 14px!important;
    padding:0 12px!important;
    background:#fff!important;
    color:#071B4D!important;
    font-family:Inter,sans-serif!important;
    font-weight:700!important;
    outline:0!important;
  }

  .mb-mobile-search-block button{
    height:40px!important;
    width:44px!important;
    border:0!important;
    border-radius:0 14px 14px 0!important;
    background:#FFC107!important;
    color:#071B4D!important;
    display:grid!important;
    place-items:center!important;
  }

  /* Header compacto ao rolar: menu + busca + carrinhos em uma unica linha */
  .mb-site-header.is-scrolled .mb-mobile-head{
    grid-template-columns:42px minmax(0,1fr) 92px!important;
    gap:8px!important;
    padding:8px 12px!important;
  }

  .mb-site-header.is-scrolled .mb-mobile-brand{
    display:none!important;
  }

  .mb-site-header.is-scrolled .mb-mobile-head > .mb-mobile-search-inline{
    grid-column:2!important;
    display:grid!important;
    grid-template-columns:minmax(0,1fr) 40px!important;
    align-items:center!important;
    min-width:0!important;
    width:100%!important;
    margin:0!important;
  }

  .mb-site-header.is-scrolled .mb-mobile-search-inline input{
    height:40px!important;
    min-width:0!important;
    border:1px solid rgba(255,255,255,.24)!important;
    border-right:0!important;
    border-radius:14px 0 0 14px!important;
    padding:0 10px!important;
    background:#fff!important;
    color:#071B4D!important;
    font-family:Inter,sans-serif!important;
    font-weight:700!important;
    outline:0!important;
  }

  .mb-site-header.is-scrolled .mb-mobile-search-inline button{
    height:40px!important;
    width:40px!important;
    border:0!important;
    border-radius:0 14px 14px 0!important;
    background:#FFC107!important;
    color:#071B4D!important;
    display:grid!important;
    place-items:center!important;
  }

  .mb-site-header.is-scrolled .mb-mobile-search-block{
    display:none!important;
  }

  .mb-site-header.is-scrolled .mb-mobile-menu-btn,
  .mb-site-header.is-scrolled .mb-header-selection--mobile .mb-header-selection__btn{
    width:42px!important;
    height:40px!important;
    min-width:42px!important;
    border-radius:14px!important;
  }

  body.mb-has-fixed-header{
    padding-top:var(--mb-header-height,110px)!important;
  }
}

@media (max-width: 380px){
  .mb-mobile-head,
  .mb-site-header.is-scrolled .mb-mobile-head{
    grid-template-columns:40px minmax(0,1fr) 86px!important;
    gap:7px!important;
    padding-left:10px!important;
    padding-right:10px!important;
  }
  .mb-mobile-menu-btn,
  .mb-header-selection--mobile .mb-header-selection__btn{
    width:40px!important;
    min-width:40px!important;
  }
  .mb-header-selection--mobile{
    width:86px!important;
    min-width:86px!important;
    gap:6px!important;
  }
}

/* V552 - Benefícios Mobile Isolado: fallback para markup legado .benefits-row/.benefit */
@media (max-width: 760px){
  .benefits{
    overflow:hidden !important;
  }
  .benefits-row{
    display:flex !important;
    flex-wrap:nowrap !important;
    gap:8px !important;
    overflow-x:auto !important;
    overflow-y:hidden !important;
    -webkit-overflow-scrolling:touch !important;
    scroll-snap-type:x mandatory !important;
    scroll-padding-left:0 !important;
    padding-left:0 !important;
    padding-right:0 !important;
    margin-left:0 !important;
    margin-right:0 !important;
    animation:none !important;
    width:100% !important;
    max-width:100% !important;
  }
  .benefits-row::-webkit-scrollbar{display:none !important;}
  .benefits-row .benefit,
  .benefit{
    flex:0 0 calc((100% - 16px) / 2.5) !important;
    min-width:calc((100% - 16px) / 2.5) !important;
    max-width:calc((100% - 16px) / 2.5) !important;
    scroll-snap-align:start !important;
  }
}


/* V552.1 - Benefícios Mobile Left Padding Fix: fallback para markup legado .benefits-row/.benefit */
@media (max-width: 760px){
  .benefits{
    overflow:hidden !important;
  }
  .benefits-row{
    --mb-benefits-mobile-pad: 10px;
    --mb-benefits-mobile-gap: 8px;
    box-sizing:border-box !important;
    padding-left:var(--mb-benefits-mobile-pad) !important;
    padding-right:var(--mb-benefits-mobile-pad) !important;
    gap:var(--mb-benefits-mobile-gap) !important;
    scroll-padding-left:var(--mb-benefits-mobile-pad) !important;
    margin-left:0 !important;
    margin-right:0 !important;
    width:100% !important;
    max-width:100% !important;
  }
  .benefits-row .benefit,
  .benefit{
    flex:0 0 calc((100% - (var(--mb-benefits-mobile-pad) * 2) - (var(--mb-benefits-mobile-gap) * 2)) / 2.5) !important;
    min-width:calc((100% - (var(--mb-benefits-mobile-pad) * 2) - (var(--mb-benefits-mobile-gap) * 2)) / 2.5) !important;
    max-width:calc((100% - (var(--mb-benefits-mobile-pad) * 2) - (var(--mb-benefits-mobile-gap) * 2)) / 2.5) !important;
  }
}

/* V622 - Header desktop com grupos rolaveis + lista completa no mega menu
   Escopo isolado no header desktop. Mantem "Todos os Produtos" fixo e permite
   arrastar/rolar horizontalmente os demais grupos. */
@media (min-width:981px){
  .nav-row[data-mb-structure-menu]{
    display:flex!important;
    align-items:center!important;
    gap:6px!important;
    overflow:hidden!important;
  }
  .nav-row[data-mb-structure-menu] > .all-products{
    flex:0 0 auto!important;
    position:relative!important;
    z-index:2!important;
  }
  .mb-header-groups-scroll{
    flex:1 1 auto;
    min-width:0;
    overflow-x:auto;
    overflow-y:hidden;
    scrollbar-width:none;
    -ms-overflow-style:none;
    cursor:grab;
    overscroll-behavior-x:contain;
    touch-action:pan-y;
    mask-image:linear-gradient(to right,transparent 0,#000 14px,#000 calc(100% - 14px),transparent 100%);
    -webkit-mask-image:linear-gradient(to right,transparent 0,#000 14px,#000 calc(100% - 14px),transparent 100%);
  }
  .mb-header-groups-scroll::-webkit-scrollbar{display:none}
  .mb-header-groups-scroll.is-dragging{cursor:grabbing;user-select:none}
  .mb-header-groups-track{
    display:flex;
    align-items:center;
    gap:4px;
    width:max-content;
    min-width:100%;
    padding:0 12px;
  }
  .mb-header-groups-track .menu-link{flex:0 0 auto;white-space:nowrap}

  /* O menu expansivo sempre permite acessar todos os grupos, inclusive em
     resolucoes menores de desktop. */
  .mbx-shell{min-height:0!important}
  .mbx-left{
    min-height:0!important;
    overflow-y:auto!important;
    overflow-x:hidden!important;
    overscroll-behavior:contain;
    scrollbar-width:thin;
    scrollbar-color:rgba(255,193,7,.62) rgba(255,255,255,.08);
  }
  .mbx-left::-webkit-scrollbar{width:8px}
  .mbx-left::-webkit-scrollbar-track{background:rgba(255,255,255,.06);border-radius:999px}
  .mbx-left::-webkit-scrollbar-thumb{background:rgba(255,193,7,.62);border-radius:999px;border:2px solid transparent;background-clip:padding-box}
  .mbx-title{position:sticky;top:-22px;z-index:2;background:linear-gradient(180deg,#071B4D 78%,rgba(7,27,77,.92));padding:22px 0 12px;margin-top:-22px!important}
  .mbx-groups{padding-bottom:10px}
}


/* V625 - Header desktop: setas discretas + mega menu acessivel.
   Escopo isolado. Preserva o header/home homologados e altera somente
   navegacao horizontal dos grupos e acesso vertical do mega menu. */
@media (min-width:981px){
  .nav-row[data-mb-structure-menu] > .mb-header-groups-scroll{
    flex:1 1 auto!important;
    min-width:0!important;
  }

  /* Setas sem fundo/quadro, no amarelo oficial dos icones. */
  .nav-row[data-mb-structure-menu] > .mb-header-groups-prev,
  .nav-row[data-mb-structure-menu] > .mb-header-groups-next{
    flex:0 0 24px!important;
    width:24px!important;
    height:36px!important;
    margin:0!important;
    padding:0!important;
    border:0!important;
    border-radius:0!important;
    background:transparent!important;
    color:#FFC107!important;
    display:grid!important;
    place-items:center!important;
    cursor:pointer!important;
    box-shadow:none!important;
    opacity:1!important;
    transition:opacity .16s ease,transform .16s ease!important;
  }
  .nav-row[data-mb-structure-menu] > .mb-header-groups-prev:hover,
  .nav-row[data-mb-structure-menu] > .mb-header-groups-next:hover,
  .nav-row[data-mb-structure-menu] > .mb-header-groups-prev:focus-visible,
  .nav-row[data-mb-structure-menu] > .mb-header-groups-next:focus-visible{
    background:transparent!important;
    color:#FFC107!important;
    transform:scale(1.16)!important;
    outline:0!important;
  }
  .nav-row[data-mb-structure-menu] > .mb-header-groups-prev i,
  .nav-row[data-mb-structure-menu] > .mb-header-groups-next i{
    color:#FFC107!important;
    font-size:16px!important;
  }
  .nav-row[data-mb-structure-menu] > .mb-header-groups-prev.is-hidden,
  .nav-row[data-mb-structure-menu] > .mb-header-groups-next.is-hidden{
    display:none!important;
  }

  /* Altura do mega menu calculada pelo JS a partir da posicao real do header.
     Assim a coluna esquerda fica contida na tela e passa a rolar de verdade. */
  .mbx-mega .mbx-shell{
    max-height:var(--mbx-available-height,calc(100vh - 170px))!important;
    min-height:0!important;
  }
  .mbx-mega .mbx-left{
    min-height:0!important;
    max-height:100%!important;
    overflow-y:scroll!important;
    overflow-x:hidden!important;
    overscroll-behavior:contain!important;
    scrollbar-gutter:stable!important;
    scrollbar-width:auto!important;
    scrollbar-color:#FFC107 rgba(255,255,255,.12)!important;
  }
  .mbx-mega .mbx-left::-webkit-scrollbar{
    display:block!important;
    width:10px!important;
  }
  .mbx-mega .mbx-left::-webkit-scrollbar-track{
    background:rgba(255,255,255,.10)!important;
    border-radius:999px!important;
  }
  .mbx-mega .mbx-left::-webkit-scrollbar-thumb{
    background:#FFC107!important;
    border-radius:999px!important;
    border:2px solid #071B4D!important;
  }
  .mbx-mega .mbx-title{
    position:sticky!important;
    top:-22px!important;
    z-index:3!important;
    background:linear-gradient(180deg,#071B4D 78%,rgba(7,27,77,.94))!important;
    padding:22px 0 12px!important;
    margin-top:-22px!important;
  }
}


/* V626 - Mega menu desktop click-only + proporcao/rolagem corrigidas.
   Mantem estrutura homologada e atua apenas no menu expansivo desktop. */
@media (min-width:981px){
  .mbx-mega .mbx-shell{
    height:min(590px,var(--mbx-available-height,calc(100vh - 170px)))!important;
    max-height:var(--mbx-available-height,calc(100vh - 170px))!important;
    min-height:360px!important;
  }
  .mbx-mega .mbx-left{
    display:flex!important;
    flex-direction:column!important;
    min-height:0!important;
    height:100%!important;
    overflow:hidden!important;
    padding:18px 12px 14px!important;
  }
  .mbx-mega .mbx-title{
    position:static!important;
    flex:0 0 auto!important;
    margin:0 0 10px!important;
    padding:0 4px 8px!important;
    background:transparent!important;
  }
  .mbx-mega .mbx-groups{
    flex:1 1 auto!important;
    min-height:0!important;
    overflow-y:auto!important;
    overflow-x:hidden!important;
    padding:0 5px 8px 4px!important;
    gap:6px!important;
    overscroll-behavior:contain!important;
    scrollbar-gutter:stable!important;
    scrollbar-width:thin!important;
    scrollbar-color:#FFC107 rgba(255,255,255,.10)!important;
  }
  .mbx-mega .mbx-groups::-webkit-scrollbar{
    display:block!important;
    width:8px!important;
  }
  .mbx-mega .mbx-groups::-webkit-scrollbar-track{
    background:rgba(255,255,255,.08)!important;
    border-radius:999px!important;
  }
  .mbx-mega .mbx-groups::-webkit-scrollbar-thumb{
    background:#FFC107!important;
    border-radius:999px!important;
    border:2px solid #071B4D!important;
  }
  .mbx-mega .mbx-groups button{
    min-height:38px!important;
    border-radius:11px!important;
    padding:7px 9px!important;
    grid-template-columns:22px minmax(0,1fr) 12px!important;
    gap:7px!important;
  }
  .mbx-mega .mbx-center,
  .mbx-mega .mbx-right{
    min-height:0!important;
    max-height:100%!important;
    overflow-y:auto!important;
  }
}

/* V627 - Mega menu desktop: clique no header, hover interno, altura pelo banner lateral.
   Escopo isolado e conservador sobre a V626. */
@media (min-width:981px){
  .mbx-mega .mbx-shell{
    height:var(--mbx-shell-height,500px)!important;
    max-height:var(--mbx-available-height,calc(100vh - 170px))!important;
    min-height:0!important;
    border-radius:0 0 22px 22px!important;
    overflow:hidden!important;
  }
  .mbx-mega .mbx-left{
    height:100%!important;
    min-height:0!important;
    overflow:hidden!important;
  }
  .mbx-mega .mbx-groups{
    flex:1 1 auto!important;
    min-height:0!important;
    overflow-y:auto!important;
    overflow-x:hidden!important;
    scrollbar-gutter:stable!important;
  }
  .mbx-mega .mbx-center,
  .mbx-mega .mbx-right{
    height:100%!important;
    min-height:0!important;
    max-height:100%!important;
    overflow-y:auto!important;
  }
  .mbx-mega .mbx-right{
    border-radius:0 0 22px 0!important;
  }
  .mbx-mega .mbx-left{
    border-radius:0 0 0 22px!important;
  }
}

/* V628 - Mega menu: clique confiavel nos grupos + overflow de categorias/subcategorias.
   Escopo desktop, preservando a estrutura homologada da V627. */
@media (min-width:981px){
  .mbx-mega .mbx-center{
    overflow-y:auto!important;
    overflow-x:hidden!important;
    scrollbar-width:thin;
    scrollbar-color:rgba(255,193,7,.85) rgba(15,42,68,.08);
    scrollbar-gutter:stable;
  }
  .mbx-mega .mbx-center::-webkit-scrollbar{width:8px}
  .mbx-mega .mbx-center::-webkit-scrollbar-track{background:rgba(15,42,68,.06);border-radius:999px}
  .mbx-mega .mbx-center::-webkit-scrollbar-thumb{background:rgba(255,193,7,.85);border-radius:999px;border:2px solid transparent;background-clip:padding-box}
  .mbx-mega .mbx-panel.is-active{min-height:min-content}
  .mbx-mega .mbx-cat-grid{align-items:start}
  .mbx-mega .mbx-cat-block{min-height:142px;height:auto}
  .mbx-mega .mbx-sub-list{max-height:none;overflow:visible}
}
