    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --green: #0b4882;
      --green-dark: #0b4882;
      --green-light: #f5ece9;
      --green-mid: #0b4882;
      --accent: #1872c6;
      --text: #0b4882;
      --text-muted: #0b4882;
      --border: #b4d3f0c7;
      --bg: #fcf9f8;
      --white: #ffffff;
      --wpp: #0b4882;
      --wpp-dark: #0b4882;
      --radius: 10px;
      --shadow: 0 1px 4px #00000018;
      --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.078);
    }


    body {
      font-family: 'DM Sans', sans-serif;
      color: var(--text);
      background: var(--bg);
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    button {
      cursor: pointer;
      font-family: inherit;
    }

    /* NAVBAR */
    .navbar {
      background: var(--white);
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      z-index: 200;
    }

    .nav-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 1.5rem;
      padding: 0 1.5rem;
      height: 64px;
    }

    .nav-logo {
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: 18px;
      color: var(--green);
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .nav-logo span {
      color: var(--accent);
    }

    .nav-search {
      flex: 1;
      position: relative;
      max-width: 340px;
      margin-left: auto;
    }

    .nav-search input {
      width: 100%;
      padding: 9px 14px 9px 38px;
      border: 1px solid var(--border);
      border-radius: 22px;
      font-size: 14px;
      background: var(--bg);
      outline: none;
      transition: border .15s;
    }

    .nav-search input:focus {
      border-color: var(--green);
      background: #fff;
    }

    .nav-search svg {
      position: absolute;
      left: 12px;
      top: 50%;
      transform: translateY(-50%);
      color: #9ca3af;
      pointer-events: none;
    }

    .nav-wpp-btn {
      background: var(--wpp);
      color: #fff;
      border: none;
      border-radius: 22px;
      padding: 8px 16px;
      font-size: 13px;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: background .15s;
      white-space: nowrap;
    }

    .nav-wpp-btn:hover {
      background: var(--wpp-dark);
    }

    /* BOTÃO CARRINHO */
    .btn-cart {
      position: relative;
      background: var(--green);
      color: #fff;
      border: none;
      border-radius: 22px;
      padding: 8px 16px;
      font-size: 13px;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: background .15s;
      white-space: nowrap;
    }

    .btn-cart:hover {
      background: var(--green-dark);
    }

    .cart-badge {
      position: absolute;
      top: -7px;
      right: -7px;
      background: var(--accent);
      color: var(--white);
      font-size: 10px;
      font-weight: 800;
      border-radius: 50%;
      width: 18px;
      height: 18px;
      display: none;
      align-items: center;
      justify-content: center;
    }

    .cart-badge.show {
      display: flex;
    }

    /* BANNER */
    .banner {
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, #031a30 0%, #0b4882 100%);
      min-height: 380px;
      display: flex;
      align-items: center;
    }

    .banner-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      opacity: 0.12;
      z-index: 0;
      pointer-events: none;
      filter: blur(2px);
    }

    .banner::before {
      content: '';
      position: absolute;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(24, 114, 198, 0.18) 0%, transparent 70%);
      top: -180px;
      right: -100px;
      z-index: 0;
      pointer-events: none;
    }

    .banner::after {
      content: '';
      position: absolute;
      width: 350px;
      height: 350px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
      bottom: -100px;
      left: -80px;
      z-index: 0;
      pointer-events: none;
    }

    .banner-deco {
      position: absolute;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.06);
      top: 50%;
      right: 28%;
      transform: translateY(-50%);
      z-index: 0;
      pointer-events: none;
    }

    .banner-deco::after {
      content: '';
      position: absolute;
      width: 120px;
      height: 120px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.04);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    .banner-slide {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 1.2s ease-in-out;
    }

    .banner-slide.active {
      opacity: 1;
    }

    .banner-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(3, 26, 48, 0.88) 0%, rgba(11, 72, 130, 0.7) 50%, rgba(24, 114, 198, 0.55) 100%);
    }

    .banner-inner {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 3.5rem 1.5rem 4.5rem;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 2rem;
    }

    .banner-text {
      max-width: 580px;
    }

    #bannerSlider {
      position: relative;
      width: 100%;
      max-width: 450px;
      height: 260px;
      border-radius: 12px;
      overflow: hidden;
      flex-shrink: 0;
      margin-left: auto;
    }

    /* DOTS INDICADORES DO BANNER */
    .banner-dots {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      display: flex;
      gap: 8px;
      align-items: center;
    }

    .banner-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.35);
      border: 1.5px solid rgba(255, 255, 255, 0.6);
      cursor: pointer;
      transition: all .25s ease;
      padding: 0;
    }

    .banner-dot:hover {
      background: rgba(255, 255, 255, 0.65);
    }

    .banner-dot.active {
      width: 26px;
      border-radius: 5px;
      background: #fff;
      border-color: #fff;
    }

    /* ONDA SVG NA BASE */
    .banner-wave {
      position: absolute;
      bottom: -1px;
      left: 0;
      width: 100%;
      z-index: 3;
      line-height: 0;
    }

    .banner-wave svg {
      width: 100%;
      height: 40px;
      display: block;
    }

    /* ANIMAÇÕES DE ENTRADA */
    @keyframes fadeSlideUp {
      from {
        opacity: 0;
        transform: translateY(28px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .banner-pill {
      display: inline-block;
      background: var(--accent);
      color: #ffffff;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 20px;
      margin-bottom: 14px;
      animation: fadeSlideUp .7s ease forwards;
    }

    .banner-title {
      font-family: 'Sora', sans-serif;
      font-size: clamp(2rem, 5vw, 3.4rem);
      font-weight: 700;
      color: #fff;
      line-height: 1.15;
      margin-bottom: 12px;
      opacity: 0;
      animation: fadeSlideUp .7s .15s ease forwards;
    }

    .banner-sub {
      color: rgba(255, 255, 255, .85);
      font-size: 15px;
      line-height: 1.6;
      margin-bottom: 24px;
      max-width: 480px;
      opacity: 0;
      animation: fadeSlideUp .7s .3s ease forwards;
    }

    .banner-btns {
      opacity: 0;
      animation: fadeSlideUp .7s .45s ease forwards;
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .btn-banner-wpp {
      background: var(--wpp);
      color: #fff;
      border: none;
      border-radius: 30px;
      padding: 12px 24px;
      font-size: 14px;
      font-weight: 700;
      font-family: 'Sora', sans-serif;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: background .15s, transform .1s;
      text-decoration: none;
    }

    .btn-banner-wpp:hover {
      background: var(--wpp-dark);
      transform: translateY(-1px);
    }

    .btn-banner-sec {
      background: #0b4882;
      color: #fff;
      border: 1.5px solid #9a090966;
      border-radius: 30px;
      padding: 12px 24px;
      font-size: 14px;
      font-weight: 600;
      transition: background .15s;
      text-decoration: none;
    }

    .btn-banner-sec:hover {
      background: rgba(255, 255, 255, .25);
    }

    .banner-stats {
      display: none;
    }

    .banner-stat {
      background: rgba(255, 255, 255, .12);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, .2);
      border-radius: 12px;
      padding: 18px 24px;
      text-align: center;
      min-width: 110px;
    }

    .banner-stat-num {
      font-family: 'Sora', sans-serif;
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--accent);
      display: block;
    }

    .banner-stat-label {
      font-size: 11px;
      color: rgba(255, 255, 255, .7);
      margin-top: 4px;
    }

    /* MAIN */
    .main {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1.5rem 3rem;
    }

    .section-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin: 2.5rem 0 1.2rem;
    }

    .section-header h2 {
      font-family: 'Sora', sans-serif;
      font-size: 20px;
      font-weight: 700;
    }

    .section-header a {
      font-size: 13px;
      font-weight: 600;
      color: var(--green);
      border: 1.5px solid var(--green);
      border-radius: 20px;
      padding: 4px 14px;
      transition: all .15s;
    }

    .section-header a:hover {
      background: var(--green);
      color: #fff;
    }

    /* CATEGORIAS */
    .cats-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: flex-start;
    }

    .cat-card {
      width: 110px;
      min-height: 120px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: .8rem .4rem;
      text-align: center;
      cursor: pointer;
      transition: all .18s;
      box-shadow: var(--shadow);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .cat-card:hover,
    .cat-card.active {
      border-color: var(--green);
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }

    .cat-card.active {
      background: var(--green-light);
    }

    .cat-icon {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: var(--green-light);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 8px;
      font-size: 18px;
    }

    .cat-name {
      font-size: 12px;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 2px;
    }

    .cat-sub {
      font-size: 10px;
      color: var(--text-muted);
    }

    /* PRODUTOS */
    .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 16px;
    }

    .product-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      transition: all .18s;
      box-shadow: var(--shadow);
      position: relative;
      display: flex;
      flex-direction: column;
    }

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

    .product-badge {
      position: absolute;
      top: 10px;
      left: 10px;
      z-index: 1;
      background: var(--accent);
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      padding: 3px 9px;
      border-radius: 20px;
    }

    .product-badge.novo {
      background: var(--green);
    }

    .product-img {
      height: 160px;
      background-color: var(--bg);
      border-bottom: 1px solid var(--border);
      flex-shrink: 0;
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      background-origin: content-box;
      padding: 12px;
    }

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

    .product-code {
      font-size: 11px;
      color: #9ca3af;
      font-weight: 500;
      letter-spacing: .5px;
      margin-bottom: 3px;
    }

    .product-name {
      font-size: 14px;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 4px;
      line-height: 1.3;
    }

    .product-desc {
      font-size: 12px;
      color: var(--text-muted);
      margin-bottom: 10px;
      line-height: 1.5;
      flex: 1;
    }

    .product-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      margin-top: auto;
    }

    .product-price-old {
      font-size: 11px;
      color: #9ca3af;
      text-decoration: line-through;
    }

    .product-price {
      font-family: 'Sora', sans-serif;
      font-size: 18px;
      font-weight: 700;
      color: var(--green);
    }

    .product-actions {
      display: flex;
      gap: 6px;
    }

    .wpp-btn {
      background: var(--wpp);
      color: #fff;
      border: none;
      border-radius: 8px;
      width: 34px;
      height: 34px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .15s;
    }

    .wpp-btn:hover {
      background: var(--wpp-dark);
    }

    .add-cart-btn {
      background: var(--green);
      color: #fff;
      border: none;
      border-radius: 8px;
      width: 34px;
      height: 34px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .15s, transform .1s;
      font-size: 15px;
    }

    .add-cart-btn:hover {
      background: var(--green-dark);
      transform: scale(1.1);
    }

    .add-cart-btn.added {
      background: var(--wpp);
    }

    /* PROMO BANNER */
    .promo-banner {
      background: linear-gradient(100deg, var(--green-dark), var(--green-mid));
      border-radius: 14px;
      padding: 2rem 2.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
      margin-top: 2.5rem;
    }

    .promo-text h3 {
      font-family: 'Sora', sans-serif;
      font-size: 22px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 6px;
    }

    .promo-text p {
      color: rgba(255, 255, 255, .8);
      font-size: 14px;
    }

    .promo-wpp {
      background: var(--wpp);
      color: #fff;
      border: none;
      border-radius: 40px;
      padding: 13px 28px;
      font-size: 15px;
      font-weight: 700;
      white-space: nowrap;
      display: flex;
      align-items: center;
      gap: 8px;
      font-family: 'Sora', sans-serif;
      transition: background .15s;
    }

    .promo-wpp:hover {
      background: var(--wpp-dark);
    }

    /* MODAL PRODUTO */
    .modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, .55);
      z-index: 300;
      align-items: center;
      justify-content: center;
      padding: 1rem;
    }

    .modal-overlay.open {
      display: flex;
    }

    .modal-box {
      background: #fff;
      border-radius: 16px;
      width: 100%;
      max-width: 480px;
      overflow: hidden;
      animation: popIn .2s ease;
      position: relative;
      max-height: 90vh;
      overflow-y: auto;
    }

    @keyframes popIn {
      from {
        transform: scale(.93);
        opacity: 0;
      }

      to {
        transform: scale(1);
        opacity: 1;
      }
    }

    .modal-img-area {
      height: 320px;
      background-color: var(--bg);
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      border-bottom: 1px solid var(--border);
      background-origin: content-box;
      padding: 16px;
    }

    .modal-content {
      padding: 1.5rem;
    }

    .modal-code {
      font-size: 12px;
      color: #9ca3af;
      font-weight: 500;
      letter-spacing: .5px;
    }

    .modal-name {
      font-family: 'Sora', sans-serif;
      font-size: 20px;
      font-weight: 700;
      margin: 6px 0 10px;
    }

    .modal-desc {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 1rem;
    }

    .modal-price {
      font-family: 'Sora', sans-serif;
      font-size: 26px;
      font-weight: 700;
      color: var(--green);
      margin-bottom: 1.25rem;
    }

    .modal-price small {
      font-size: 14px;
      color: #9ca3af;
      text-decoration: line-through;
      margin-right: 8px;
      font-weight: 400;
    }

    .modal-actions {
      display: flex;
      gap: 10px;
      margin-bottom: 8px;
    }

    .modal-wpp-btn {
      flex: 1;
      background: var(--wpp);
      color: #fff;
      border: none;
      border-radius: 10px;
      padding: 13px;
      font-size: 15px;
      font-weight: 700;
      font-family: 'Sora', sans-serif;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: background .15s;
    }

    .modal-wpp-btn:hover {
      background: var(--wpp-dark);
    }

    .modal-cart-btn {
      background: var(--green);
      color: #fff;
      border: none;
      border-radius: 10px;
      padding: 13px 16px;
      font-size: 18px;
      transition: background .15s;
    }

    .modal-cart-btn:hover {
      background: var(--green-dark);
    }

    .modal-close-btn {
      width: 100%;
      background: none;
      border: 1.5px solid var(--border);
      border-radius: 10px;
      padding: 11px;
      font-size: 14px;
      color: var(--text-muted);
      transition: all .15s;
    }

    .modal-close-btn:hover {
      background: var(--bg);
    }

    /* CARRINHO DRAWER */
    .overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, .45);
      z-index: 400;
      opacity: 0;
      pointer-events: none;
      transition: opacity .3s;
    }

    .overlay.open {
      opacity: 1;
      pointer-events: all;
    }

    .cart-drawer {
      position: fixed;
      top: 0;
      right: 0;
      width: 400px;
      max-width: 100vw;
      height: 100vh;
      background: #fff;
      z-index: 401;
      display: flex;
      flex-direction: column;
      box-shadow: -4px 0 32px rgba(0, 0, 0, .12);
      transform: translateX(100%);
      transition: transform .32s cubic-bezier(.4, 0, .2, 1);
    }

    .cart-drawer.open {
      transform: translateX(0);
    }

    .cart-head {
      padding: 18px 20px;
      background: var(--green-dark);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .cart-head h2 {
      font-family: 'Sora', sans-serif;
      font-size: 17px;
      font-weight: 700;
    }

    .cart-close {
      background: none;
      border: none;
      color: #fff;
      font-size: 22px;
      line-height: 1;
      transition: opacity .15s;
    }

    .cart-close:hover {
      opacity: .7;
    }

    .cart-body {
      flex: 1;
      overflow-y: auto;
      padding: 12px 16px;
    }

    .cart-empty {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100%;
      color: var(--text-muted);
      gap: 12px;
    }

    .cart-empty .icon {
      font-size: 3.5rem;
      opacity: .3;
    }

    .cart-item {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      padding: 12px 0;
      border-bottom: 1px solid var(--border);
    }

    .cart-item-img {
      width: 60px;
      height: 60px;
      border-radius: 8px;
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      background-color: var(--bg);
      flex-shrink: 0;
    }

    .cart-item-info {
      flex: 1;
      min-width: 0;
    }

    .cart-item-code {
      font-size: 10px;
      color: #9ca3af;
      letter-spacing: .5px;
    }

    .cart-item-name {
      font-weight: 600;
      font-size: 13px;
      line-height: 1.3;
      margin-bottom: 8px;
    }

    .cart-item-qty {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .qty-btn {
      width: 26px;
      height: 26px;
      border-radius: 6px;
      border: 1px solid var(--border);
      background: #fff;
      font-size: 15px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all .15s;
    }

    .qty-btn:hover {
      border-color: var(--green);
      color: var(--green);
    }

    .qty-num {
      font-weight: 700;
      font-size: 14px;
      min-width: 22px;
      text-align: center;
    }

    .cart-item-price {
      font-family: 'Sora', sans-serif;
      font-size: 14px;
      font-weight: 700;
      color: var(--green);
      white-space: nowrap;
      margin-top: 4px;
    }

    .cart-item-unit {
      font-size: 10px;
      color: #9ca3af;
    }

    .cart-remove {
      background: none;
      border: none;
      color: #ccc;
      font-size: 16px;
      flex-shrink: 0;
      transition: color .15s;
      padding: 4px;
    }

    .cart-remove:hover {
      color: #dc2626;
    }

    .cart-foot {
      padding: 16px;
      border-top: 2px solid var(--border);
      background: var(--bg);
    }

    .cart-total-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 14px;
    }

    .cart-total-row span:first-child {
      font-weight: 600;
      color: var(--text-muted);
      font-size: 14px;
    }

    .cart-total-val {
      font-family: 'Sora', sans-serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--text);
    }

    .btn-checkout {
      width: 100%;
      padding: 13px;
      border: none;
      border-radius: 10px;
      background: var(--wpp);
      color: #fff;
      font-family: 'Sora', sans-serif;
      font-size: 15px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: background .15s, transform .1s;
    }

    .btn-checkout:hover {
      background: var(--wpp-dark);
      transform: translateY(-1px);
    }

    .btn-clear-cart {
      width: 100%;
      padding: 9px;
      border: 1px solid var(--border);
      border-radius: 10px;
      background: #fff;
      font-size: 13px;
      color: var(--text-muted);
      margin-top: 8px;
      transition: all .15s;
    }

    .btn-clear-cart:hover {
      border-color: #dc2626;
      color: #dc2626;
    }

    /* LOADING */
    .loading {
      text-align: center;
      padding: 3rem;
      color: var(--text-muted);
    }

    .spinner {
      width: 32px;
      height: 32px;
      border: 3px solid var(--border);
      border-top-color: var(--green);
      border-radius: 50%;
      animation: spin .7s linear infinite;
      margin: 0 auto 12px;
    }

    @keyframes spin {
      to {
        transform: rotate(360deg);
      }
    }

    /* TOAST */
    .toast-wrap {
      position: fixed;
      bottom: 24px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 999;
      display: flex;
      flex-direction: column;
      gap: 8px;
      pointer-events: none;
    }

    .toast {
      background: #1c1c1c;
      color: #fff;
      padding: 10px 18px;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 500;
      animation: toastIn .25s ease;
      box-shadow: 0 4px 16px rgba(0, 0, 0, .2);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .toast.ok {
      background: #166534;
    }

    @keyframes toastIn {
      from {
        opacity: 0;
        transform: translateY(12px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    /* WPP FLOAT */
    .wpp-float {
      position: fixed;
      bottom: 24px;
      right: 24px;
      z-index: 199;
      background: var(--wpp);
      color: #fff;
      border-radius: 50%;
      width: 54px;
      height: 54px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
      transition: transform .2s;
    }

    .wpp-float:hover {
      transform: scale(1.1);
    }

    /* ORDENAÇÃO */
    .sort-select {
      border: 1.5px solid var(--border);
      border-radius: 20px;
      padding: 5px 12px;
      font-size: 13px;
      font-weight: 500;
      font-family: 'DM Sans', sans-serif;
      color: var(--green);
      background: var(--white);
      outline: none;
      cursor: pointer;
      transition: border-color .15s;
    }

    .sort-select:hover,
    .sort-select:focus {
      border-color: var(--green);
    }

    /* FOOTER */
    footer {
      background: var(--green-mid);
      color: #ffffff;
      padding: 3rem 1.5rem 1.5rem;
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 2.5rem;
    }

    .footer-logo {
      font-family: 'Sora', sans-serif;
      font-size: 20px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 10px;
    }

    .footer-logo span {
      color: var(--accent);
    }

    .footer-desc {
      font-size: 13px;
      line-height: 1.7;
      max-width: 260px;
    }

    .footer-col h4 {
      font-family: 'Sora', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: #ffffff;
      margin-bottom: 14px;
    }

    .footer-col ul {
      list-style: none;
    }

    .footer-col ul li {
      margin-bottom: 9px;
    }

    .footer-col ul li span {
      font-size: 13px;
      color: #ffffff;
      display: flex;
      align-items: flex-start;
      gap: 8px;
    }

    .footer-bottom {
      max-width: 1200px;
      margin: 2rem auto 0;
      border-top: 1px solid rgba(255, 255, 255, .1);
      padding-top: 1.25rem;
      font-size: 12px;
      color: rgba(0, 0, 0, 0.3);
      text-align: center;
    }

    .footer-insta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      font-weight: 600;
      color: var(--text);
      transition: opacity .15s;
    }

    .footer-insta:hover {
      opacity: .7;
    }

    @media (max-width: 768px) {
      #bannerSlider {
        margin-left: 0;
        margin-top: 2rem;
        height: 250px;
      }

      .banner-inner {
        flex-direction: column;
        padding-bottom: 4rem;
      }

      .banner-stats {
        display: none;
      }

      .footer-inner {
        grid-template-columns: 1fr;
      }

      .products-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .promo-banner {
        flex-direction: column;
        text-align: center;
      }

      .cart-drawer {
        width: 100vw;
        right: 0;
      }

      /* Navbar em 2 linhas */
      .nav-inner {
        flex-wrap: wrap;
        height: auto;
        padding: .75rem 1rem;
        gap: .6rem;
      }

      .nav-search {
        order: 3;
        max-width: 100%;
        width: 100%;
        margin-left: 0;
      }

      .nav-wpp-btn {
        display: none;
      }

      /* Botões de toque maiores */
      .wpp-btn,
      .add-cart-btn {
        width: 42px;
        height: 42px;
      }

      /* Inputs sem zoom no iOS */
      input,
      select,
      textarea {
        font-size: 16px !important;
      }
    }

    @media (max-width: 480px) {
      .cats-grid {
        grid-template-columns: repeat(3, 1fr);
      }

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

      .promo-banner {
        padding: 1.5rem 1rem;
      }
    }

    /* Elimina delay de 300ms em botões */
    button,
    a {
      touch-action: manipulation;
    }

/* PÁGINAS DE PRODUTO E CATEGORIA (SEO — Fase 2) */
.pagina-simples { max-width: 1200px; margin: 0 auto; padding: 1.5rem 1.5rem 3rem; }
.breadcrumb { font-size: 13px; color: var(--text-muted); margin-bottom: 1.5rem; }
.breadcrumb a { color: var(--green); font-weight: 600; }
.breadcrumb .sep { margin: 0 6px; color: #9ca3af; }
.produto-detalhe { display: grid; grid-template-columns: 380px 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.pd-galeria { display: flex; flex-direction: column; gap: 10px; }
.pd-img-principal { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); height: 360px; display: flex; align-items: center; justify-content: center; overflow: hidden; padding: 16px; }
.pd-img-principal img { max-width: 100%; max-height: 100%; object-fit: contain; }
.pd-thumbs { display: flex; gap: 8px; }
.pd-thumbs img { width: 64px; height: 64px; object-fit: contain; border: 1px solid var(--border); border-radius: 8px; cursor: pointer; background: var(--white); padding: 4px; }
.pd-info .pd-code { font-size: 13px; color: #9ca3af; margin-bottom: 6px; letter-spacing: .5px; }
.pd-info h1 { font-family: 'Sora', sans-serif; font-size: 26px; margin-bottom: 10px; line-height: 1.25; }
.pd-desc { font-size: 15px; line-height: 1.7; color: var(--text-muted); margin-bottom: 1.5rem; white-space: pre-line; }
.pd-preco-old { font-size: 14px; color: #9ca3af; text-decoration: line-through; margin-right: 8px; }
.pd-preco { font-family: 'Sora', sans-serif; font-size: 30px; font-weight: 700; color: var(--green); margin-bottom: 1.25rem; }
.pd-cta { display: inline-flex; align-items: center; gap: 8px; background: var(--wpp); color: #fff; border: none; border-radius: 10px; padding: 14px 26px; font-weight: 700; font-family: 'Sora', sans-serif; margin-bottom: 1rem; }
.pd-cta:hover { background: var(--wpp-dark); }
.pd-voltar { display: inline-block; margin-top: .5rem; font-size: 13px; color: var(--green); font-weight: 600; }
.categoria-header { margin-bottom: 1.5rem; }
.categoria-header h1 { font-family: 'Sora', sans-serif; font-size: 24px; margin-bottom: 4px; }
.categoria-header p { color: var(--text-muted); font-size: 14px; }
@media (max-width: 768px) {
  .produto-detalhe { grid-template-columns: 1fr; }
}
