/* ==========================================================================
   PET CHICLETE — Tema base
   Identidade visual: turquesa + laranja + branco
   ========================================================================== */

:root {
  --pc-primary:   #22b8cf;
  --pc-primary-d: #0e94aa;
  --pc-secondary: #ff8c42;
  --pc-secondary-d: #ee6b1a;
  --pc-accent:    #ffd166;
  --pc-bg:        #ffffff;
  --pc-bg-soft:   #eafaff;
  --pc-text:      #2b3a4a;
  --pc-text-soft: #5a6b7c;
  --pc-button:    #ff8c42;
  --pc-success:   #25d366;
  --pc-border:    #e5eef3;
  --pc-shadow-sm: 0 2px 8px rgba(34,184,207,.08);
  --pc-shadow:    0 8px 24px rgba(34,184,207,.12);
  --pc-shadow-lg: 0 16px 40px rgba(34,184,207,.18);
  --pc-radius:    16px;
  --pc-radius-sm: 10px;
  --pc-radius-lg: 24px;
  --pc-font:      'Nunito', system-ui, -apple-system, sans-serif;
  --pc-font-heading: 'Fredoka', 'Nunito', sans-serif;
  --pc-container: 1240px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--pc-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--pc-text);
  background: var(--pc-bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--pc-primary-d); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--pc-secondary); }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--pc-font-heading);
  color: var(--pc-text);
  line-height: 1.2;
  margin: 0 0 .6em;
  font-weight: 600;
}
h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p { margin: 0 0 1em; }

.pc-container {
  width: 100%;
  max-width: var(--pc-container);
  margin: 0 auto;
  padding: 0 24px;
}

.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
  height: 1px; margin: -1px; overflow: hidden; padding: 0;
  position: absolute; width: 1px; word-wrap: normal !important;
}
.skip-link:focus {
  position: fixed; top: 10px; left: 10px; background: #fff; padding: 10px 16px;
  clip: auto; clip-path: none; width: auto; height: auto;
  z-index: 99999; border-radius: 8px; box-shadow: var(--pc-shadow);
}

/* Buttons */
.pc-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  padding: 14px 26px; border-radius: 999px; border: 0; cursor: pointer;
  font-family: inherit; font-weight: 700; font-size: 1rem; line-height: 1;
  text-decoration: none; transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.pc-btn:active { transform: translateY(1px); }
.pc-btn-primary { background: var(--pc-button); color: #fff; box-shadow: 0 6px 14px rgba(255,140,66,.35); }
.pc-btn-primary:hover { background: var(--pc-secondary-d); color: #fff; box-shadow: 0 10px 22px rgba(255,140,66,.45); }
.pc-btn-secondary { background: #fff; color: var(--pc-text); border: 2px solid var(--pc-border); }
.pc-btn-secondary:hover { border-color: var(--pc-primary); color: var(--pc-primary-d); }
.pc-btn-wa { background: var(--pc-success); color: #fff; }
.pc-btn-wa:hover { background: #1ebe5d; color: #fff; }
.pc-btn-ghost { background: transparent; color: var(--pc-text); }

/* Top bar */
.pc-topbar {
  background: var(--pc-bg-soft);
  color: var(--pc-text);
  font-size: .9rem;
  padding: 8px 0;
  text-align: center;
}
.pc-topbar span { display: inline-block; }

/* Header */
.site-header { position: relative; z-index: 50; }
.pc-header-main {
  background: #fff;
  border-bottom: 1px solid var(--pc-border);
  padding: 14px 0;
}
.pc-header-inner { display: flex; align-items: center; gap: 28px; }
.pc-header-logo img { max-height: 64px; width: auto; }
.pc-site-title { font-family: var(--pc-font-heading); font-size: 1.5rem; color: var(--pc-text); }
.pc-header-nav { flex: 1; }
.pc-menu {
  list-style: none; margin: 0; padding: 0; display: flex; gap: 24px; justify-content: center;
}
.pc-menu a {
  color: var(--pc-text); font-weight: 600; padding: 8px 4px;
  border-bottom: 2px solid transparent; transition: all .2s ease;
}
.pc-menu li.current-menu-item a,
.pc-menu a:hover { color: var(--pc-primary-d); border-bottom-color: var(--pc-primary); }
.pc-header-actions { display: flex; align-items: center; gap: 12px; }
.pc-mobile-toggle {
  display: none; background: transparent; border: 0; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 8px;
}
.pc-mobile-toggle span {
  width: 26px; height: 3px; background: var(--pc-text); border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

/* Posts grid */
.pc-posts-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr));
  gap: 28px; padding: 48px 0;
}
.pc-post-card {
  background: #fff; border-radius: var(--pc-radius); overflow: hidden;
  box-shadow: var(--pc-shadow-sm); transition: transform .2s ease, box-shadow .2s ease;
}
.pc-post-card:hover { transform: translateY(-4px); box-shadow: var(--pc-shadow); }
.pc-post-thumb img { width: 100%; height: 220px; object-fit: cover; }
.pc-post-body { padding: 20px; }
.pc-post-title { font-size: 1.2rem; margin-bottom: 8px; }
.pc-post-title a { color: var(--pc-text); }
.pc-post-meta { font-size: .85rem; color: var(--pc-text-soft); margin-bottom: 12px; }
.pc-post-excerpt { font-size: .95rem; color: var(--pc-text-soft); margin-bottom: 14px; }

/* Pagination */
.navigation.pagination, .pagination { padding: 16px 0 48px; }
.pagination .nav-links { display: flex; gap: 8px; flex-wrap: wrap; }
.pagination a, .pagination span {
  padding: 10px 14px; border-radius: 10px; background: #fff; border: 1px solid var(--pc-border);
  color: var(--pc-text); font-weight: 600;
}
.pagination .current { background: var(--pc-primary); color: #fff; border-color: var(--pc-primary); }

/* Single / Page */
.pc-single-article { padding: 40px 0 60px; }
.pc-single-title { margin-bottom: 16px; }
.pc-single-meta { color: var(--pc-text-soft); font-size: .9rem; margin-bottom: 24px; display: flex; gap: 16px; }
.pc-single-thumb { margin-bottom: 24px; border-radius: var(--pc-radius); overflow: hidden; }
.pc-single-content { font-size: 1.05rem; }
.pc-single-content img { border-radius: var(--pc-radius); margin: 16px 0; }
.pc-page-article { padding: 32px 0 60px; }
.pc-page-title { margin-bottom: 20px; }

/* 404 */
.pc-404-inner { text-align: center; padding: 80px 24px; }
.pc-404-icon { font-size: 5rem; margin-bottom: 16px; }
.pc-404-title { margin-bottom: 12px; }
.pc-404-text { color: var(--pc-text-soft); margin-bottom: 24px; }
.pc-404-search { max-width: 480px; margin: 32px auto 0; }

/* Search form default */
.search-form { display: flex; gap: 8px; }
.search-form .search-field {
  flex: 1; padding: 12px 16px; border-radius: 999px; border: 1px solid var(--pc-border);
  font-family: inherit; font-size: .95rem;
}
.search-form .search-submit { padding: 12px 22px; border-radius: 999px; border: 0; background: var(--pc-primary); color: #fff; cursor: pointer; font-weight: 700; }

/* Footer */
.site-footer { background: var(--pc-primary); color: #fff; margin-top: 60px; }
.site-footer h4 { color: #fff; font-family: var(--pc-font-heading); }
.site-footer a { color: rgba(255,255,255,.92); }
.site-footer a:hover { color: var(--pc-accent); }
.pc-footer-main { padding: 60px 0; }
.pc-footer-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 36px;
}
.pc-footer-menu { list-style: none; padding: 0; margin: 0; }
.pc-footer-menu li { padding: 4px 0; }
.pc-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.18);
  padding: 18px 0; text-align: center; font-size: .9rem; opacity: .9;
}

/* Floating WhatsApp */
.pc-wa-float {
  position: fixed; bottom: 24px; z-index: 9999;
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(37,211,102,.35);
  transition: transform .2s ease;
}
.pc-wa-float:hover { transform: scale(1.08); }
.pc-wa-right { right: 24px; }
.pc-wa-left  { left: 24px; }
.pc-wa-float svg { width: 28px; height: 28px; }

/* Mobile */
@media (max-width: 900px) {
  .pc-header-nav {
    position: absolute; top: 100%; left: 0; right: 0; background: #fff;
    box-shadow: var(--pc-shadow); padding: 16px;
    max-height: 0; overflow: hidden; transition: max-height .3s ease;
  }
  .pc-header-nav.is-open { max-height: 80vh; overflow: auto; }
  .pc-menu { flex-direction: column; gap: 4px; }
  .pc-menu a { padding: 12px 8px; border-bottom: 1px solid var(--pc-border); display: block; }
  .pc-mobile-toggle { display: inline-flex; }
  .pc-btn-wa span:nth-child(2) { display: none; }
}

@media (max-width: 600px) {
  .pc-container { padding: 0 16px; }
  .pc-header-logo img { max-height: 48px; }
}

/* ========================================================================== 
   Pet Chiclete — Ajustes finais para fidelidade ao mockup 2026
   Layout de referência: home petshop com topbar turquesa, hero aqua,
   cards arredondados, vitrine em grade, ofertas laranja e rodapé teal.
   ========================================================================== */
:root{
  --pc-primary:#16b7c7;
  --pc-primary-d:#008da0;
  --pc-primary-soft:#bff5f7;
  --pc-secondary:#ff7518;
  --pc-secondary-d:#f05f00;
  --pc-accent:#ffe172;
  --pc-ink:#17314a;
  --pc-muted:#607285;
  --pc-page:#f4fcfd;
  --pc-card:#ffffff;
  --pc-line:#dceef2;
  --pc-shadow-card:0 6px 18px rgba(0,132,150,.08);
  --pc-shadow-lift:0 14px 34px rgba(0,132,150,.14);
  --pc-container:1190px;
}
html,body{overflow-x:hidden;background:#fff;color:var(--pc-ink)}
body{font-family:'Nunito',system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;font-weight:600;line-height:1.45}
body::before{content:"";position:fixed;inset:0;z-index:-1;pointer-events:none;background:
  radial-gradient(circle at 3% 20%,rgba(22,183,199,.08) 0 2px,transparent 3px),
  radial-gradient(circle at 7% 24%,rgba(22,183,199,.08) 0 5px,transparent 6px),
  radial-gradient(circle at 97% 58%,rgba(22,183,199,.07) 0 3px,transparent 4px),
  linear-gradient(#fff,#f3fcfd 78%,#fff)}
.pc-container,.pc-h .pc-container{max-width:1190px;padding-left:18px;padding-right:18px}
h1,h2,h3,h4,h5,h6,.pc-hero-title,.pc-pw-title,.pc-bl-h2,.pc-faq-h2,.pc-tes-h2,.pc-off-h2{font-family:'Fredoka','Nunito',sans-serif;font-weight:800;letter-spacing:-.02em;color:var(--pc-ink)}
a{color:var(--pc-primary-d)}
img{image-rendering:auto}

/* Header: dimensões, respiro e ícones como no mockup */
.pc-h{position:relative;z-index:50;background:#fff;color:var(--pc-ink)}
.pc-h-top{height:29px;padding:0!important;background:#0aa7b9!important;color:#fff!important;font-size:12px;line-height:29px}
.pc-h-top-inner{min-height:29px;align-items:center}.pc-h-top-msgs{gap:42px}.pc-h-top-msgs span,.pc-h-top-social,.pc-h-top-social a{color:#fff!important}.pc-h-top-msgs span{white-space:nowrap;font-weight:800}.pc-h-top-social a{width:20px;height:20px;background:transparent!important;box-shadow:none}.pc-h-top-social .dashicons{font-size:17px;width:17px;height:17px}.pc-h-follow{font-size:12px!important;font-weight:800}
.pc-h-main{background:#fff!important;border:0!important;padding:18px 0 16px!important;box-shadow:0 2px 0 rgba(0,0,0,.02)}
.pc-h-main-inner{gap:22px;min-height:72px}.pc-h-logo{flex:0 0 auto}.pc-h-logo img{max-width:190px!important;max-height:72px;object-fit:contain}.pc-h-menu{align-self:center}.pc-h-menu-list,.pc-h-menu ul{gap:18px;justify-content:center;align-items:center}.pc-h-menu a{display:inline-flex!important;align-items:center;gap:5px;padding:10px 0!important;border:0!important;color:#24384e!important;font-size:13px!important;font-weight:800;letter-spacing:-.01em}.pc-h-menu a:hover,.pc-h-menu .current-menu-item>a{color:var(--pc-primary-d)!important}.pc-h-menu .current-menu-item>a::after{display:none!important}.pc-h-actions{gap:14px;flex:0 0 auto}.pc-h-search{width:232px;height:42px;border:1px solid #e3edf1;background:#fff;border-radius:12px;box-shadow:0 2px 8px rgba(0,0,0,.03);overflow:hidden}.pc-h-search input{font-size:12px;font-weight:700;color:#728191}.pc-h-search button{color:#1f334a}.pc-h-wa{display:none!important}
.pc-h-cart{position:relative;display:inline-flex;align-items:center;justify-content:center;width:36px;height:36px;color:#1f334a;text-decoration:none}.pc-h-cart .dashicons{font-size:29px;width:29px;height:29px}.pc-h-cart-count{position:absolute;top:-3px;right:-4px;min-width:16px;height:16px;padding:0 4px;border-radius:999px;background:#ff7518;color:#fff;font-size:10px;font-weight:900;line-height:16px;text-align:center;box-shadow:0 2px 4px rgba(0,0,0,.18)}

/* Hero: fundo aqua, ondulação branca, ornamentos e proporções do mockup */
.pc-hero{margin-top:0;min-height:440px;padding:52px 0 34px!important;overflow:visible;background:linear-gradient(180deg,#a7f0f2 0%,#9eecef 54%,#a8f1f2 100%)!important;isolation:isolate}
.pc-hero::before{content:"";position:absolute;left:-5%;right:-5%;top:-28px;height:70px;background:#fff;border-radius:0 0 50% 50%/0 0 100% 100%;z-index:1;transform:rotate(-1.3deg)}
.pc-hero::after{content:"";position:absolute;inset:0;z-index:1;opacity:.52;background:
 radial-gradient(circle at 5% 72%,rgba(19,178,196,.26) 0 5px,transparent 6px),radial-gradient(circle at 8% 69%,rgba(19,178,196,.20) 0 3px,transparent 4px),radial-gradient(circle at 12% 22%,rgba(255,255,255,.52) 0 2px,transparent 3px),radial-gradient(circle at 83% 18%,rgba(255,255,255,.42) 0 7px,transparent 8px),radial-gradient(circle at 93% 65%,rgba(255,255,255,.32) 0 3px,transparent 4px)}
.pc-hero-bg-deco{display:block!important;opacity:.65;background-image:
  radial-gradient(circle at 4% 50%,transparent 0 12px,rgba(255,255,255,.38) 13px 15px,transparent 16px),
  radial-gradient(circle at 91% 34%,transparent 0 18px,rgba(255,255,255,.35) 19px 21px,transparent 22px)!important}
.pc-hero-grid{position:relative;z-index:2;grid-template-columns:.92fr 1.08fr!important;gap:26px!important;min-height:380px;align-items:center}.pc-hero-title{font-size:clamp(42px,5vw,61px)!important;line-height:.96!important;margin:0 0 16px!important;max-width:520px;color:#1d3552!important}.pc-hero-title-h{color:var(--pc-secondary)!important;margin-top:2px!important}.pc-hero-sub{max-width:445px;margin:0 0 24px!important;font-size:16px!important;line-height:1.42!important;font-weight:700;color:#29435b!important}.pc-hero-ctas{gap:15px!important;margin-bottom:24px!important}.pc-hero-btn{height:50px;padding:0 24px!important;border-radius:10px!important;font-size:14px!important;font-weight:900!important;box-shadow:0 5px 0 rgba(0,0,0,.04),0 10px 18px rgba(0,0,0,.06)!important}.pc-hero-btn-1{background:var(--pc-secondary)!important;color:#fff!important}.pc-hero-btn-2{background:#fff!important;color:#14899c!important;border-color:#fff!important}.pc-hero-feats{gap:22px!important}.pc-hero-feats li{gap:9px!important;font-size:12px!important;line-height:1.15}.pc-hero-feat-icon{width:28px!important;height:28px!important;border-radius:6px!important;background:rgba(255,255,255,.38)!important;color:#0b91a5!important}.pc-hero-feats li strong{font-size:12px;color:#1d3552!important}.pc-hero-feats li span{font-size:11px;color:#31506b!important;font-weight:800}.pc-hero-media{align-self:end;text-align:right;min-height:360px}.pc-hero-img{margin:0 0 -34px auto!important;max-height:505px!important;width:auto;filter:drop-shadow(0 12px 0 rgba(255,255,255,.85)) drop-shadow(0 18px 26px rgba(0,80,95,.18))}.pc-hero-badge{right:32px!important;top:21%!important;width:126px;height:126px;display:flex;align-items:center;justify-content:center;padding:20px!important;border-radius:50%!important;background:#ffe475!important;color:#21364d!important;font-size:13px!important;font-weight:900!important;line-height:1.1!important;transform:none!important;box-shadow:0 8px 0 rgba(255,255,255,.45),0 12px 20px rgba(0,0,0,.08)!important}

/* Categorias: barra branca sobreposta ao hero */
.pc-cats{position:relative;z-index:10;padding:0 18px 24px!important;margin-top:-6px}.pc-cats-wrap{max-width:1080px!important;padding:20px 28px 15px!important;border-radius:17px!important;box-shadow:0 8px 28px rgba(16,138,154,.12)!important;border:1px solid rgba(214,238,242,.9)}.pc-cats-grid{gap:24px!important}.pc-cat-item{gap:8px!important;padding:0!important}.pc-cat-icon{width:82px!important;height:82px!important;background:#8be6ed!important;border:4px solid rgba(255,255,255,.9);box-shadow:inset 0 -5px 0 rgba(0,0,0,.05);color:#f47216!important}.pc-cat-title{font-size:14px!important;font-weight:900;color:#26384b!important}

/* Títulos de seção */
.pc-pw-header,.pc-bl-head,.pc-faq-head,.pc-tes-head{max-width:1080px!important;margin-left:auto!important;margin-right:auto!important}.pc-pw-title,.pc-bl-h2,.pc-faq-h2,.pc-tes-h2{font-size:25px!important;line-height:1.1!important}.pc-pw-title::before,.pc-bl-h2::before,.pc-faq-h2::before,.pc-tes-h2::before{content:"";display:inline-block;width:20px;height:20px;margin-right:8px;vertical-align:-3px;background:radial-gradient(circle at 36% 35%,#18b9c8 0 4px,transparent 5px),radial-gradient(circle at 65% 35%,#18b9c8 0 4px,transparent 5px),radial-gradient(circle at 50% 65%,#18b9c8 0 7px,transparent 8px)}.pc-pw-link,.pc-bl-link{color:var(--pc-secondary)!important;font-size:13px!important;font-weight:900}

/* Produtos em destaque */
.pc-pw{padding:18px 18px 0!important}.pc-pw-header{margin-bottom:13px!important}.pc-pw-grid{max-width:1080px!important;gap:14px!important;grid-template-columns:repeat(6,minmax(0,1fr))!important}.pc-pw-card{border:1px solid #e6eef2!important;border-radius:10px!important;padding:12px 10px 11px!important;gap:6px!important;box-shadow:none!important;background:#fff!important;min-height:250px}.pc-pw-card:hover{transform:translateY(-2px)!important;box-shadow:var(--pc-shadow-lift)!important}.pc-pw-thumb{aspect-ratio:1/1!important;border-radius:8px!important;background:#fff!important}.pc-pw-thumb img{object-fit:contain!important;padding:3px}.pc-pw-name{font-size:12px!important;line-height:1.16!important;min-height:34px!important;margin-top:2px!important;font-weight:900;color:#26384b!important}.pc-pw-rating{font-size:11px!important;line-height:1;color:#ffc400!important;letter-spacing:-1px}.pc-pw-rating span{font-size:10px;color:#6b7d8f!important;letter-spacing:0}.pc-pw-price-box{gap:4px!important}.pc-pw-price{font-size:14px!important;font-weight:900;color:#0e314d!important}.pc-pw-price-old{font-size:10px!important}.pc-pw-cta{margin-top:3px;height:28px;padding:0 10px!important;border-radius:6px!important;background:var(--pc-secondary)!important;font-size:12px!important;font-weight:900}.pc-pw-cta .dashicons{font-size:14px!important;width:14px!important;height:14px!important}

/* Faixa de ofertas */
.pc-off{max-width:1080px!important;margin:22px auto 18px!important;padding:10px!important;border-radius:10px!important;background:linear-gradient(90deg,#ff7a1a 0%,#ff7415 81%,#12b8c7 81%,#12b8c7 100%)!important}.pc-off-wrap{max-width:1060px!important;grid-template-columns:1.05fr 2.2fr .72fr!important;gap:10px!important}.pc-off-info{min-height:128px;padding:10px 0 0 8px}.pc-off-h2{font-size:27px!important;line-height:.94!important;color:#fff!important;text-transform:uppercase!important;margin-bottom:7px!important}.pc-off-sub{font-size:13px!important;line-height:1.25!important;font-weight:800}.pc-off-side-img{position:absolute;right:0;bottom:-10px;max-width:130px!important;margin:0!important;border-radius:0!important}.pc-off-cards{gap:8px!important}.pc-off-card{min-height:112px;border-radius:9px!important;padding:18px 8px 8px!important;gap:8px!important}.pc-off-disc{top:-1px!important;left:10px!important;border-radius:0 0 8px 8px!important;background:#ff7a1a!important;font-size:12px!important}.pc-off-img{width:62px!important;height:70px!important;background:#fff!important;object-fit:contain!important}.pc-off-title{font-size:12px!important;font-weight:900!important}.pc-off-sub-c{font-size:10px!important}.pc-off-price{font-size:15px!important;color:#0b8fa1!important}.pc-off-price-old{font-size:10px!important}.pc-off-cta{background:transparent!important;min-height:128px;border-radius:8px!important;padding:10px!important;justify-content:center}.pc-off-cta-icon{background:rgba(255,255,255,.18)!important;border:2px solid rgba(255,255,255,.65);font-size:28px!important}.pc-off-cta-txt{font-size:15px!important;line-height:1.1!important;font-weight:900}.pc-off-cta-btn{border-radius:5px!important;padding:8px 16px!important;font-size:12px!important;color:#0c94a7!important}

/* Benefícios, cards inferiores e newsletter */
.pc-bf{padding:0 18px 22px!important}.pc-bf-wrap{max-width:1080px!important}.pc-bf-grid{gap:0!important;border-radius:6px;overflow:hidden;background:#effbfc}.pc-bf-item{box-shadow:none!important;border-radius:0!important;background:#eefbfc!important;padding:14px 18px!important}.pc-bf-icon{width:42px!important;height:42px!important;background:#8be6ed!important;color:#0a8da0!important}.pc-bf-title{font-size:13px!important;font-weight:900!important}.pc-bf-desc{font-size:11px!important;font-weight:800;color:#3c6473!important}.pc-tes,.pc-bl,.pc-faq,.pc-nl{max-width:1080px!important}.pc-tes{padding:14px 18px 0!important}.pc-tes-head{text-align:left!important;margin-bottom:10px!important}.pc-tes-grid{gap:12px!important}.pc-tes-card,.pc-bl-card,.pc-faq-item{border-radius:10px!important;box-shadow:0 4px 14px rgba(0,132,150,.06)!important;border:1px solid #e5f1f4}.pc-tes-card{padding:13px!important}.pc-tes-stars{font-size:12px!important;letter-spacing:0}.pc-tes-text{font-size:12px!important;line-height:1.35}.pc-tes-name{font-size:12px!important}.pc-tes-role{font-size:10px!important}.pc-bl{padding:14px 18px 0!important}.pc-bl-head{margin-bottom:10px!important}.pc-bl-grid{gap:12px!important}.pc-bl-card{display:grid!important;grid-template-columns:92px 1fr;min-height:88px}.pc-bl-thumb{aspect-ratio:auto!important;height:88px}.pc-bl-body{padding:8px 10px!important;gap:3px!important}.pc-bl-title{font-size:13px!important;line-height:1.15!important}.pc-bl-meta,.pc-bl-excerpt,.pc-bl-more{font-size:10px!important}.pc-bl-excerpt{display:none}.pc-faq{padding:14px 18px 0!important}.pc-faq-head{text-align:left!important;margin-bottom:10px!important}.pc-faq-list{gap:7px!important}.pc-faq-q{padding:10px 14px!important;font-size:12px!important;font-weight:900}.pc-faq-toggle{width:20px!important;height:20px!important;font-size:14px!important}.pc-nl{margin:0 auto 20px!important;border-radius:10px!important;padding:20px!important;background:#8be6ed!important;color:#1d3552!important}.pc-nl-wrap{grid-template-columns:1fr!important;gap:10px!important}.pc-nl-text,.pc-nl-title,.pc-nl-sub,.pc-nl-lgpd,.pc-nl-msg{color:#1d3552!important}.pc-nl-title{font-size:20px!important}.pc-nl-sub{font-size:12px!important}.pc-nl-form{padding:0!important;background:transparent!important;display:grid!important;grid-template-columns:1fr auto;gap:8px!important}.pc-nl-form input[type=text]{display:none}.pc-nl-form input[type=email]{height:38px;border-radius:6px!important;font-size:12px!important}.pc-nl-btn{height:38px;border-radius:6px!important;background:var(--pc-secondary)!important;padding:0 14px!important}

/* Rodapé */
.pc-foot{margin-top:0!important;padding:26px 18px 0!important;background:#0094a8!important;color:#fff}.pc-foot-grid{max-width:1080px!important;grid-template-columns:1.1fr .9fr 1fr 1fr!important;gap:26px!important;padding-bottom:22px}.pc-foot-col h3{font-size:14px!important;color:#fff!important;margin-bottom:10px!important}.pc-foot-logo{max-width:200px!important;background:transparent!important;padding:0!important;margin:0 auto 8px!important}.pc-foot-logo-text{font-size:24px!important;text-align:center}.pc-foot-about,.pc-foot-info,.pc-foot-links a,.pc-foot-pay{font-size:12px!important}.pc-foot-social{justify-content:center}.pc-foot-bot{background:#00869a!important;padding:10px 18px!important}.pc-foot-bot-inner{max-width:1080px!important;font-size:11px!important}.pc-wa-float{right:32px!important;bottom:28px!important;width:58px!important;height:58px!important;background:#20d460!important;border:4px solid rgba(255,255,255,.85);box-shadow:0 8px 18px rgba(32,212,96,.38)!important}

/* Responsividade preservando o visual do mockup */
@media (max-width:1100px){.pc-pw-grid{grid-template-columns:repeat(3,minmax(0,1fr))!important}.pc-off-wrap{grid-template-columns:1fr!important}.pc-off{background:#ff7a1a!important}.pc-off-cta{background:#12b8c7!important}.pc-foot-grid{grid-template-columns:1fr 1fr!important}.pc-h-search{width:190px}.pc-h-menu-list,.pc-h-menu ul{gap:12px}.pc-h-menu a{font-size:12px!important}}
@media (max-width:900px){.pc-h-main-inner{min-height:56px}.pc-h-logo img{max-width:150px!important}.pc-h-top-msgs{gap:12px}.pc-h-top-msgs span:nth-child(n+3){display:none}.pc-hero{padding-top:34px!important}.pc-hero-grid{grid-template-columns:1fr!important}.pc-hero-media{order:0;min-height:0;text-align:center}.pc-hero-img{margin:0 auto!important;max-height:360px!important}.pc-hero-badge{right:18px!important}.pc-cats{margin-top:0}.pc-cats-grid{grid-template-columns:repeat(3,minmax(0,1fr))!important}.pc-bf-grid{grid-template-columns:repeat(2,1fr)!important}.pc-bl-card{grid-template-columns:82px 1fr}.pc-bl-thumb{height:82px}}
@media (max-width:640px){.pc-h-top{height:auto;line-height:1.3;padding:6px 0!important}.pc-h-top-inner{justify-content:center}.pc-h-top-social{display:none}.pc-h-menu{top:100%!important}.pc-h-cart{width:34px;height:34px}.pc-hero-title{font-size:38px!important}.pc-hero-ctas{flex-direction:column;align-items:flex-start}.pc-hero-feats{display:grid!important;grid-template-columns:1fr}.pc-pw-grid,.pc-cats-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}.pc-off-cards{grid-template-columns:1fr!important}.pc-bf-grid,.pc-tes-grid,.pc-bl-grid,.pc-foot-grid{grid-template-columns:1fr!important}.pc-nl-form{grid-template-columns:1fr!important}}

/* === PET CHICLETE REDESIGN FINAL V2 — início === */
:root{
  --pc-v2-teal:#08a8b8;
  --pc-v2-teal-dark:#008da0;
  --pc-v2-aqua:#9feff2;
  --pc-v2-aqua-soft:#effcfd;
  --pc-v2-orange:#ff7518;
  --pc-v2-orange-dark:#ef6200;
  --pc-v2-yellow:#ffe475;
  --pc-v2-ink:#1b334d;
  --pc-v2-muted:#607489;
  --pc-v2-border:#e4f0f4;
  --pc-v2-container:1080px;
}
html{font-size:16px}body{background:#fff!important;color:var(--pc-v2-ink)!important}.elementor-section,.elementor-container,.elementor-widget-wrap{box-sizing:border-box}.pc-container{max-width:1190px!important}.pc-h .pc-container{max-width:1190px!important}

/* Cabeçalho exato do mockup: topbar compacta, navegação central, busca e carrinho. */
.pc-h{box-shadow:none!important}.pc-h-top{height:28px!important;min-height:28px!important;line-height:28px!important;padding:0!important;background:var(--pc-v2-teal)!important;font-size:12px!important}.pc-h-top-inner{min-height:28px!important}.pc-h-top-msgs{flex:1;justify-content:flex-start;gap:44px!important;overflow:hidden}.pc-h-top-msgs span{font-size:12px!important;font-weight:900!important;letter-spacing:-.01em}.pc-h-top-msgs span:nth-child(n+4){display:none}.pc-h-top-social{margin-left:auto}.pc-h-main{padding:15px 0 13px!important;border:0!important;background:#fff!important}.pc-h-main-inner{min-height:74px!important;display:grid!important;grid-template-columns:240px 1fr 286px!important;gap:18px!important;align-items:center!important}.pc-h-logo img{max-width:226px!important;max-height:80px!important}.pc-h-logo-text{font-size:28px!important;line-height:1!important;color:var(--pc-v2-teal)!important}.pc-h-menu{min-width:0!important}.pc-h-menu-list,.pc-h-menu ul{gap:15px!important;justify-content:center!important;flex-wrap:nowrap!important}.pc-h-menu li{white-space:nowrap}.pc-h-menu a{font-size:13px!important;line-height:1!important;font-weight:900!important;color:#24384e!important;gap:5px!important;padding:9px 0!important}.pc-h-menu a::before{font-family:dashicons;display:inline-block;font-size:15px;line-height:1;color:var(--pc-v2-teal-dark);font-weight:400}.pc-h-menu li:nth-child(1) a::before{content:"\f102"}.pc-h-menu li:nth-child(2) a::before{content:"\f174"}.pc-h-menu li:nth-child(3) a::before{content:"\f313"}.pc-h-menu li:nth-child(4) a::before{content:"\f323"}.pc-h-menu li:nth-child(5) a::before{content:"\f464"}.pc-h-menu li:nth-child(6) a::before{content:"\f110"}.pc-h-menu li:nth-child(7) a::before{content:"\f466"}.pc-h-menu a:hover,.pc-h-menu .current-menu-item>a{color:var(--pc-v2-teal-dark)!important}.pc-h-actions{justify-content:flex-end!important;gap:18px!important}.pc-h-search{width:214px!important;height:39px!important;border-radius:9px!important;border:1px solid #dce9ee!important;box-shadow:none!important}.pc-h-search input{font-size:12px!important;font-weight:700!important}.pc-h-cart{width:34px!important;height:34px!important}.pc-h-cart .dashicons{font-size:30px!important;width:30px!important;height:30px!important}.pc-h-cart-count{top:-5px!important;right:-7px!important;background:var(--pc-v2-orange)!important}

/* Hero principal: altura, curva superior, texto, CTAs e imagem sobreposta. */
.pc-hero{position:relative!important;min-height:442px!important;padding:50px 0 34px!important;background:linear-gradient(180deg,#a4eff2 0%,#9decef 60%,#a7f2f3 100%)!important;overflow:visible!important}.pc-hero::before{top:-31px!important;height:72px!important;border-radius:0 0 50% 50%/0 0 100% 100%!important}.pc-hero::after{opacity:.68!important;background:radial-gradient(circle at 4% 76%,rgba(0,169,188,.24) 0 5px,transparent 6px),radial-gradient(circle at 7% 72%,rgba(0,169,188,.18) 0 3px,transparent 4px),radial-gradient(circle at 40% 12%,rgba(255,255,255,.36) 0 4px,transparent 5px),radial-gradient(circle at 89% 35%,rgba(255,255,255,.26) 0 18px,transparent 20px),radial-gradient(circle at 96% 62%,rgba(255,255,255,.32) 0 4px,transparent 5px)!important}.pc-hero .pc-container{max-width:1080px!important}.pc-hero-grid{grid-template-columns:47% 53%!important;gap:8px!important;min-height:390px!important}.pc-hero-title{font-size:clamp(42px,4.9vw,58px)!important;line-height:.98!important;letter-spacing:-.035em!important;max-width:480px!important;margin-bottom:17px!important;color:#1e334e!important}.pc-hero-title-h{color:var(--pc-v2-orange)!important}.pc-hero-sub{max-width:430px!important;font-size:15.5px!important;line-height:1.35!important;font-weight:800!important;color:#2d4158!important;margin-bottom:20px!important}.pc-hero-btn{height:48px!important;border-radius:10px!important;padding:0 22px!important;font-size:14px!important;font-weight:900!important}.pc-hero-btn-1{background:var(--pc-v2-orange)!important}.pc-hero-btn-1:hover{background:var(--pc-v2-orange-dark)!important}.pc-hero-btn-2{min-width:188px!important;color:#10879a!important}.pc-hero-feats{gap:20px!important;margin-top:0!important}.pc-hero-feats li{max-width:132px!important;font-size:11px!important;font-weight:900!important;align-items:flex-start!important}.pc-hero-feat-icon{flex:0 0 26px!important;width:26px!important;height:26px!important;background:rgba(255,255,255,.35)!important}.pc-hero-media{min-height:392px!important;align-self:end!important}.pc-hero-img{max-height:522px!important;margin:0 -16px -34px auto!important;position:relative;z-index:3}.pc-hero-badge{width:124px!important;height:124px!important;right:42px!important;top:23%!important;background:var(--pc-v2-yellow)!important;font-size:13px!important;color:#24384e!important;z-index:5!important}.pc-wa-float{z-index:99999!important}

/* Categorias: cartão flutuante com seis círculos ilustrados. */
.pc-cats{margin-top:-8px!important;padding:0 18px 25px!important}.pc-cats-wrap{max-width:1080px!important;border-radius:17px!important;padding:18px 36px 15px!important;background:#fff!important;box-shadow:0 7px 28px rgba(0,94,110,.12)!important}.pc-cats-grid{grid-template-columns:repeat(6,minmax(0,1fr))!important;gap:24px!important}.pc-cat-icon{width:82px!important;height:82px!important;border-radius:50%!important;background:#83e3eb!important;border:4px solid #eefcfd!important}.pc-cat-title{font-size:14px!important;font-weight:900!important;color:#26384d!important;margin-top:5px!important}

/* Produtos em destaque: vitrine de 6 cards compactos. */
.pc-pw{padding:16px 18px 0!important}.pc-pw-header{max-width:1080px!important;margin-bottom:14px!important}.pc-pw-title{font-size:24px!important}.pc-pw-link{color:var(--pc-v2-orange)!important}.pc-pw-grid{max-width:1080px!important;grid-template-columns:repeat(6,minmax(0,1fr))!important;gap:14px!important}.pc-pw-card{min-height:248px!important;border:1px solid #e6eef2!important;border-radius:10px!important;padding:12px 10px 10px!important;background:#fff!important;box-shadow:none!important}.pc-pw-thumb{height:auto!important;aspect-ratio:1/.88!important;background:#fff!important}.pc-pw-thumb img{object-fit:contain!important;max-height:116px!important;margin:auto!important}.pc-pw-name{font-size:11.7px!important;line-height:1.17!important;font-weight:900!important;color:#23364d!important;min-height:34px!important}.pc-pw-rating{font-size:11px!important;color:#ffc400!important}.pc-pw-price{font-size:14px!important;color:#0f2f49!important}.pc-pw-cta{height:28px!important;border-radius:6px!important;background:var(--pc-v2-orange)!important;color:#fff!important;font-size:12px!important;font-weight:900!important}.pc-pw-cta:hover{background:var(--pc-v2-orange-dark)!important;color:#fff!important}

/* Ofertas: faixa laranja/teal no mesmo ritmo visual do mockup. */
.pc-off{max-width:1080px!important;margin:22px auto 18px!important;border-radius:10px!important;padding:10px!important;background:linear-gradient(90deg,#ff7717 0%,#ff7717 81%,#0db5c4 81%,#0db5c4 100%)!important}.pc-off-wrap{grid-template-columns:1.08fr 2.25fr .73fr!important;gap:9px!important;max-width:1060px!important}.pc-off-info{min-height:128px!important;padding:11px 0 0 8px!important;position:relative!important}.pc-off-h2{font-size:27px!important;line-height:.94!important;color:#fff!important;text-transform:uppercase!important}.pc-off-sub{font-size:12.5px!important;line-height:1.22!important;font-weight:900!important;color:#fff!important}.pc-off-side-img{max-width:132px!important;right:-2px!important;bottom:-10px!important}.pc-off-card{min-height:112px!important;border-radius:9px!important;padding:18px 8px 8px!important;box-shadow:none!important}.pc-off-disc{background:#ff7717!important;color:#fff!important;font-weight:900!important}.pc-off-title{font-size:12px!important;font-weight:900!important}.pc-off-price{font-size:15px!important;color:#0c8fa1!important}.pc-off-cta{min-height:128px!important;background:transparent!important;color:#fff!important}.pc-off-cta-btn{color:#0a91a4!important}

/* Faixa de benefícios e blocos inferiores. */
.pc-bf{padding:0 18px 19px!important}.pc-bf-wrap,.pc-tes,.pc-bl,.pc-faq,.pc-nl{max-width:1080px!important}.pc-bf-grid{grid-template-columns:repeat(4,minmax(0,1fr))!important;background:#effbfc!important;border-radius:5px!important;overflow:hidden}.pc-bf-item{padding:15px 20px!important;background:#effbfc!important;border-radius:0!important;box-shadow:none!important}.pc-bf-icon{width:42px!important;height:42px!important;background:#8be6ed!important;color:#058fa2!important}.pc-bf-title{font-size:13px!important;color:#21384f!important}.pc-bf-desc{font-size:11px!important;color:#315c6a!important}.pc-tes,.pc-bl,.pc-faq{padding-top:13px!important;padding-bottom:0!important}.pc-tes-grid,.pc-bl-grid{gap:12px!important}.pc-tes-card,.pc-bl-card,.pc-faq-item{border:1px solid #e4f0f4!important;border-radius:10px!important;background:#fff!important;box-shadow:0 4px 14px rgba(0,132,150,.06)!important}.pc-tes-card{padding:13px!important}.pc-tes-text{font-size:12px!important;line-height:1.34!important}.pc-bl-card{grid-template-columns:92px 1fr!important;min-height:88px!important}.pc-bl-thumb{height:88px!important}.pc-bl-title{font-size:13px!important;line-height:1.15!important}.pc-bl-excerpt{display:none!important}.pc-faq-list{gap:7px!important}.pc-faq-q{font-size:12px!important;font-weight:900!important;padding:10px 14px!important}.pc-nl{background:#91e6ed!important;color:#1d3552!important;border-radius:10px!important;padding:18px!important;margin-top:0!important}.pc-nl-form{grid-template-columns:1fr 42px!important}.pc-nl-btn{min-width:42px!important;padding:0!important;background:var(--pc-v2-orange)!important}.pc-nl-btn span:not(.dashicons),.pc-nl-btn:not(:has(.dashicons)){font-size:0!important}.pc-nl-btn::after{content:"\f465";font-family:dashicons;font-size:18px;color:#fff}.pc-nl-form input[type=email]{height:38px!important;border-radius:6px!important}.pc-nl-lgpd{font-size:10px!important;color:#24445b!important}

/* Rodapé redesenhado em cinco áreas visuais, preservando dados do widget. */
.pc-foot{margin-top:0!important;padding:26px 18px 0!important;background:#0097aa!important;color:#fff!important;border-radius:12px 12px 0 0!important}.pc-foot .pc-container{max-width:1080px!important}.pc-foot-grid{display:grid!important;grid-template-columns:1.02fr 1fr 1.35fr .78fr 1.05fr!important;gap:24px!important;align-items:start!important;padding-bottom:20px!important}.pc-foot-col h3{font-size:14px!important;line-height:1.1!important;color:#fff!important;margin:0 0 10px!important;font-weight:900!important}.pc-foot-info,.pc-foot-about,.pc-foot-links a,.pc-foot-contact-line,.pc-foot-pay{font-size:11.5px!important;line-height:1.34!important;color:#fff!important;font-weight:800!important}.pc-foot-brand{text-align:center!important}.pc-foot-logo{max-width:215px!important;margin:0 auto 8px!important}.pc-foot-social{display:flex!important;gap:10px!important;justify-content:center!important;margin-top:9px!important}.pc-foot-social a{width:28px!important;height:28px!important;border-radius:50%!important;background:#fff!important;color:#0097aa!important;display:inline-flex!important;align-items:center!important;justify-content:center!important}.pc-foot-social .dashicons{font-size:17px!important;width:17px!important;height:17px!important}.pc-foot-links{margin:0!important;padding:0!important;list-style:none!important}.pc-foot-links li{margin:0 0 4px!important}.pc-foot-wa{display:inline-flex!important;align-items:center!important;gap:7px!important;color:#fff!important;background:transparent!important;padding:0!important;margin:0 0 6px!important;box-shadow:none!important}.pc-foot-pay-badges{display:grid!important;grid-template-columns:repeat(2,minmax(56px,1fr))!important;gap:8px!important;max-width:150px!important}.pc-pay-badge{display:flex!important;align-items:center!important;justify-content:center!important;min-height:31px!important;border-radius:5px!important;background:#fff!important;color:#17314a!important;font-size:11px!important;font-weight:900!important;text-transform:uppercase!important}.pc-pay-badge.pc-pay-pix{color:#009c8c!important}.pc-foot-bot{background:#00879a!important;margin:0 -18px!important;padding:9px 18px!important}.pc-foot-bot-inner{display:flex!important;justify-content:space-between!important;gap:16px!important;max-width:1080px!important;font-size:10.5px!important;color:#e8fcff!important}.pc-foot-policy{display:flex!important;gap:18px!important}.pc-foot-policy a{color:#e8fcff!important}

/* Responsividade testada conceitualmente para desktop, tablet e mobile. */
@media (max-width:1180px){.pc-h-main-inner{grid-template-columns:210px 1fr 245px!important}.pc-h-logo img{max-width:205px!important}.pc-h-menu-list,.pc-h-menu ul{gap:11px!important}.pc-h-menu a{font-size:12px!important}.pc-h-search{width:190px!important}.pc-hero .pc-container,.pc-cats-wrap,.pc-pw-header,.pc-pw-grid,.pc-off,.pc-bf-wrap,.pc-tes,.pc-bl,.pc-faq,.pc-nl,.pc-foot .pc-container{max-width:calc(100vw - 48px)!important}}
@media (max-width:1024px){.pc-h-top-msgs{gap:18px!important}.pc-h-main-inner{display:flex!important}.pc-h-toggle{display:flex!important;order:5}.pc-h-menu{position:absolute!important;top:100%!important;left:18px!important;right:18px!important;background:#fff!important;border-radius:14px!important;box-shadow:0 16px 34px rgba(0,80,95,.16)!important;padding:14px!important;display:none!important}.pc-h-menu.is-open{display:block!important}.pc-h-menu-list,.pc-h-menu ul{flex-direction:column!important;align-items:flex-start!important;gap:0!important}.pc-h-menu a{font-size:14px!important;padding:11px 4px!important}.pc-h-search{width:210px!important}.pc-hero-grid{grid-template-columns:1fr!important;text-align:center!important;gap:16px!important}.pc-hero-media{order:-1!important;min-height:270px!important}.pc-hero-img{max-height:330px!important;margin:0 auto -18px!important}.pc-hero-badge{right:calc(50% - 195px)!important;top:9%!important}.pc-hero-title,.pc-hero-sub{margin-left:auto!important;margin-right:auto!important}.pc-hero-ctas,.pc-hero-feats{justify-content:center!important}.pc-cats-grid{grid-template-columns:repeat(3,minmax(0,1fr))!important}.pc-pw-grid{grid-template-columns:repeat(3,minmax(0,1fr))!important}.pc-off{background:#ff7717!important}.pc-off-wrap{grid-template-columns:1fr!important}.pc-off-cta{background:#0db5c4!important}.pc-bf-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}.pc-foot-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}.pc-foot-brand{order:-1;grid-column:1/-1}}
@media (max-width:767px){.pc-container,.pc-h .pc-container{padding-left:16px!important;padding-right:16px!important}.pc-h-top{height:auto!important;line-height:1.2!important;padding:6px 0!important}.pc-h-top-inner{justify-content:center!important}.pc-h-top-msgs{justify-content:center!important;gap:10px!important}.pc-h-top-msgs span:nth-child(n+2){display:none}.pc-h-top-social{display:none!important}.pc-h-main{padding:10px 0!important}.pc-h-logo img{max-width:165px!important}.pc-h-search{display:none!important}.pc-h-actions{margin-left:auto!important}.pc-hero{min-height:auto!important;padding:22px 0 26px!important}.pc-hero::before{display:none!important}.pc-hero-media{min-height:210px!important}.pc-hero-img{max-height:260px!important}.pc-hero-badge{width:92px!important;height:92px!important;font-size:10.5px!important;right:10px!important;top:4%!important}.pc-hero-title{font-size:34px!important;line-height:1.02!important}.pc-hero-sub{font-size:14px!important}.pc-hero-ctas{display:grid!important;grid-template-columns:1fr!important;max-width:310px!important;margin-left:auto!important;margin-right:auto!important}.pc-hero-btn{width:100%!important;justify-content:center!important}.pc-hero-feats{display:grid!important;grid-template-columns:1fr!important;max-width:310px!important;margin-left:auto!important;margin-right:auto!important}.pc-hero-feats li{max-width:none!important}.pc-cats{padding:0 12px 20px!important;margin-top:0!important}.pc-cats-wrap{max-width:none!important;padding:16px 12px!important}.pc-cats-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:16px!important}.pc-cat-icon{width:74px!important;height:74px!important}.pc-pw{padding-left:12px!important;padding-right:12px!important}.pc-pw-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:10px!important}.pc-pw-card{min-height:232px!important;padding:10px 8px!important}.pc-pw-header{align-items:flex-start!important;gap:8px!important}.pc-pw-title{font-size:22px!important}.pc-off{margin:18px 12px!important}.pc-off-cards{grid-template-columns:1fr!important}.pc-bf-grid{grid-template-columns:1fr!important}.pc-bl-card{grid-template-columns:82px 1fr!important}.pc-bl-thumb{height:82px!important}.pc-nl-form{grid-template-columns:1fr 42px!important}.pc-foot{border-radius:0!important;padding:24px 16px 0!important}.pc-foot-grid{grid-template-columns:1fr!important;text-align:left!important}.pc-foot-brand{text-align:center!important}.pc-foot-bot{margin:0 -16px!important}.pc-foot-bot-inner{flex-direction:column!important;text-align:center!important;align-items:center!important}.pc-foot-policy{justify-content:center!important;flex-wrap:wrap!important}}
@media (max-width:420px){.pc-pw-grid{grid-template-columns:1fr!important}.pc-cats-grid{grid-template-columns:1fr 1fr!important}.pc-hero-title{font-size:30px!important}.pc-foot-pay-badges{grid-template-columns:repeat(2,1fr)!important;max-width:100%!important}}
/* === PET CHICLETE REDESIGN FINAL V2 — fim === */
