/* =========================================
   REDE LIMPFÁCIL – style.css v1.0
   ========================================= */

/* === 01. VARIABLES === */
:root {
  --navy:       #1A2B6B;
  --navy-light: #2A3F8F;
  --navy-dark:  #0D1A50;
  --yellow:     #F5C800;
  --yellow-dk:  #D4A900;
  --green:      #00A651;
  --green-lt:   #00C964;
  --wpp:        #25D366;
  --white:      #FFFFFF;
  --off-white:  #F8F9FA;
  --gray-100:   #F0F2F5;
  --gray-200:   #E2E6ED;
  --gray-300:   #C9D0DC;
  --gray-500:   #8A94A6;
  --gray-600:   #5C6070;
  --gray-700:   #374151;
  --gray-900:   #111827;
  --text-main:  #1A1A2E;
  --text-sub:   #5C6070;

  --sh-sm:  0 2px 8px rgba(0,0,0,.06);
  --sh-md:  0 8px 24px rgba(0,0,0,.09);
  --sh-lg:  0 20px 48px rgba(0,0,0,.13);
  --sh-xl:  0 32px 64px rgba(0,0,0,.18);

  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-full: 9999px;

  --tr:     0.3s ease;
  --tr-f:   0.15s ease;

  --header-h: 72px;
}

/* === 02. RESET === */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-main);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
address { font-style: normal; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* === 03. LAYOUT === */
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--navy); color: var(--white); }

/* === 04. TYPOGRAPHY === */
h1,h2,h3,h4,h5,h6 { font-family: 'Montserrat', sans-serif; font-weight: 700; line-height: 1.2; }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin: 12px 0 16px; color: var(--navy); }
.section-header p  { font-size: 1.05rem; color: var(--text-sub); max-width: 560px; margin: 0 auto; }

.section-header.light h2 { color: var(--white); }
.section-header.light p  { color: rgba(255,255,255,.75); }

.s-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(26,43,107,.08);
  color: var(--navy);
  font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 16px; border-radius: var(--r-full);
}
.promo-badge { background: rgba(245,200,0,.15); color: #B8900A; }
.light-badge { background: rgba(255,255,255,.15); color: var(--white); }

.left-title { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin: 12px 0 16px; color: var(--navy); }

/* === 05. BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--r-full);
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .95rem;
  transition: var(--tr); white-space: nowrap;
}
.btn-primary   { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn-accent    { background: var(--yellow); color: var(--navy-dark); }
.btn-accent:hover  { background: var(--yellow-dk); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,200,0,.4); }
.btn-outline-white { border: 2px solid rgba(255,255,255,.7); color: var(--white); }
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn-outline-primary { border: 2px solid var(--navy); color: var(--navy); }
.btn-outline-primary:hover { background: var(--navy); color: var(--white); }
.btn-ghost { border: 2px solid var(--gray-300); color: var(--gray-700); }
.btn-ghost:hover { border-color: var(--gray-500); }
.btn-promo { background: var(--white); color: var(--navy); font-weight: 700; }
.btn-promo:hover { background: var(--yellow); }
.btn-wpp   { background: var(--wpp); color: var(--white); }
.btn-wpp:hover { background: #1EBD5A; transform: translateY(-2px); }
.btn-full  { width: 100%; justify-content: center; }

/* === 06. FLOATING BUTTONS === */
.wpp-float {
  position: fixed; bottom: 24px; left: 24px; z-index: 9000;
  display: flex; align-items: center; gap: 10px;
  background: var(--wpp); color: var(--white);
  padding: 14px 20px 14px 18px; border-radius: var(--r-full);
  font-weight: 700; font-size: .9rem;
  box-shadow: 0 8px 32px rgba(37,211,102,.45);
  transition: var(--tr);
}
.wpp-float svg { width: 22px; height: 22px; flex-shrink: 0; }
.wpp-float:hover { transform: scale(1.05); box-shadow: 0 12px 40px rgba(37,211,102,.55); }

.cart-btn-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 9000;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-lg); transition: var(--tr);
}
.cart-btn-float:hover { background: var(--navy-light); transform: scale(1.08); }
.cart-btn-float svg { width: 22px; height: 22px; }
.cart-badge {
  position: absolute; top: -4px; right: -4px;
  background: var(--yellow); color: var(--navy-dark);
  width: 22px; height: 22px; border-radius: 50%;
  font-size: .72rem; font-weight: 800; font-family: 'Montserrat', sans-serif;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--white);
}

/* === 07. HEADER === */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent; transition: background .3s ease, box-shadow .3s ease;
}
.header.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.1);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); gap: 32px;
}
.nav-logo img { height: 48px; width: auto; transition: var(--tr); }
.nav-menu {
  display: flex; align-items: center; gap: 4px;
  flex: 1; justify-content: flex-end;
}
.nav-link {
  padding: 8px 14px; border-radius: var(--r-sm);
  font-size: .9rem; font-weight: 500;
  color: var(--white); transition: var(--tr);
}
.header.scrolled .nav-link { color: var(--text-main); }
.nav-link:hover { background: rgba(255,255,255,.15); }
.header.scrolled .nav-link:hover { background: var(--gray-100); color: var(--navy); }
.nav-cta {
  display: flex; align-items: center; gap: 7px;
  padding: 10px 20px; border-radius: var(--r-full);
  background: var(--yellow); color: var(--navy-dark);
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .88rem;
  transition: var(--tr);
}
.nav-cta:hover { background: var(--yellow-dk); transform: translateY(-1px); }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 36px; height: 36px; align-items: center; justify-content: center;
  background: rgba(255,255,255,.2); border-radius: var(--r-sm); padding: 6px;
  transition: var(--tr);
}
.header.scrolled .nav-toggle { background: var(--gray-100); }
.nav-toggle span {
  display: block; width: 20px; height: 2px;
  background: var(--white); border-radius: 2px; transition: var(--tr);
}
.header.scrolled .nav-toggle span { background: var(--navy); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === 08. HERO === */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #1E3A8A 100%);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}

/* Bubbles - signature element */
.bubbles { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.bubble {
  position: absolute; bottom: -120px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(245,200,0,.18), rgba(255,255,255,.04));
  border: 1.5px solid rgba(255,255,255,.12);
  animation: bubbleRise linear infinite;
}
.bubble:nth-child(1)  { width: 40px;  height: 40px;  left: 8%;   animation-duration: 9s;  animation-delay: 0s; }
.bubble:nth-child(2)  { width: 65px;  height: 65px;  left: 18%;  animation-duration: 13s; animation-delay: 2.5s; }
.bubble:nth-child(3)  { width: 22px;  height: 22px;  left: 32%;  animation-duration: 7s;  animation-delay: 1s; }
.bubble:nth-child(4)  { width: 85px;  height: 85px;  left: 48%;  animation-duration: 16s; animation-delay: 0s; }
.bubble:nth-child(5)  { width: 32px;  height: 32px;  left: 60%;  animation-duration: 10s; animation-delay: 3.5s; }
.bubble:nth-child(6)  { width: 55px;  height: 55px;  left: 72%;  animation-duration: 12s; animation-delay: 5s; }
.bubble:nth-child(7)  { width: 75px;  height: 75px;  left: 83%;  animation-duration: 14s; animation-delay: 1.5s; }
.bubble:nth-child(8)  { width: 28px;  height: 28px;  left: 91%;  animation-duration: 8s;  animation-delay: 6.5s; }
.bubble:nth-child(9)  { width: 48px;  height: 48px;  left: 3%;   animation-duration: 11s; animation-delay: 4s; }
@keyframes bubbleRise {
  0%   { transform: translateY(0) translateX(0) rotate(0); opacity: 0; }
  5%   { opacity: 1; }
  90%  { opacity: .6; }
  100% { transform: translateY(-110vh) translateX(30px) rotate(540deg); opacity: 0; }
}

.hero-slider { flex: 1; position: relative; z-index: 2; display: flex; align-items: center; }
.hero-slide { position: absolute; inset: 0; display: flex; align-items: center; opacity: 0; transition: opacity .7s ease; pointer-events: none; }
.hero-slide.active { opacity: 1; pointer-events: all; }
.hero-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px;
  padding-top: var(--header-h);
}
.hero-text { display: flex; flex-direction: column; gap: 22px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.12); color: rgba(255,255,255,.9);
  font-size: .8rem; font-weight: 600; letter-spacing: .05em;
  padding: 7px 16px; border-radius: var(--r-full); width: fit-content;
  border: 1px solid rgba(255,255,255,.2);
}
.hero-badge.promo { background: rgba(245,200,0,.2); color: var(--yellow); border-color: rgba(245,200,0,.3); }
.hero-title {
  font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 900;
  color: var(--white); line-height: 1.15; letter-spacing: -.02em;
}
.hero-accent { color: var(--yellow); }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,.8); line-height: 1.7; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex; align-items: center; gap: 24px;
  padding: 20px 24px; border-radius: var(--r-lg);
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  width: fit-content;
}
.stat-item { text-align: center; }
.stat-num { display: block; font-family: 'Montserrat', sans-serif; font-size: 1.7rem; font-weight: 900; color: var(--yellow); }
.stat-txt { font-size: .78rem; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .06em; }
.stat-div { width: 1px; height: 36px; background: rgba(255,255,255,.2); }

/* Hero showcase */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-showcase {
  position: relative; width: 400px; height: 400px;
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 16px;
}
.showcase-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  border-radius: var(--r-lg); padding: 20px;
  backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.15);
  color: var(--white); text-align: center; font-size: .85rem; font-weight: 600;
  transition: var(--tr); animation: showcasePop .6s ease backwards;
}
.showcase-card:hover { transform: translateY(-4px); }
.showcase-card:nth-child(1) { animation-delay: .2s; }
.showcase-card:nth-child(2) { animation-delay: .35s; }
.showcase-card:nth-child(3) { animation-delay: .5s; }
.showcase-card:nth-child(4) { animation-delay: .65s; }
.card-blue  { background: rgba(42,63,143,.6); }
.card-green { background: rgba(0,166,81,.5); }
.card-yellow{ background: rgba(245,200,0,.25); }
.card-teal  { background: rgba(0,150,150,.4); }
.showcase-icon { font-size: 2rem; }
.showcase-center {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  background: rgba(255,255,255,.95); border-radius: 50%;
  width: 130px; height: 130px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; padding: 16px; text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}
.showcase-center img { width: 90px; height: auto; }
.showcase-center p { font-size: .65rem; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: .05em; }

.bag-sizes { display: flex; gap: 10px; flex-wrap: wrap; }
.bag-pill {
  padding: 8px 20px; border-radius: var(--r-full);
  background: rgba(255,255,255,.12); color: var(--white);
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .9rem;
  border: 1.5px solid rgba(255,255,255,.25);
}

/* Slider nav */
.slider-nav {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 16px; z-index: 5;
}
.slider-arrow {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.15); color: var(--white); font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--tr); border: 1.5px solid rgba(255,255,255,.25);
}
.slider-arrow:hover { background: rgba(255,255,255,.3); }
.slider-dots { display: flex; gap: 8px; }
.s-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.4); transition: var(--tr);
}
.s-dot.active { background: var(--yellow); width: 24px; border-radius: 4px; }
.scroll-hint {
  position: absolute; bottom: 40px; right: 40px; z-index: 5;
  width: 28px; height: 44px; border: 2px solid rgba(255,255,255,.4);
  border-radius: 14px; display: flex; justify-content: center; align-items: flex-start;
  padding-top: 6px;
}
.scroll-dot {
  width: 4px; height: 10px; background: var(--white); border-radius: 2px;
  animation: scrollDot 1.8s infinite;
}
@keyframes scrollDot {
  0%,100% { transform: translateY(0); opacity: 1; }
  50%      { transform: translateY(12px); opacity: 0; }
}
@keyframes showcasePop {
  from { opacity: 0; transform: scale(.85); }
  to   { opacity: 1; transform: scale(1); }
}
.animate-in      { animation: slideUp .7s ease .1s both; }
.animate-in-right{ animation: slideLeft .7s ease .2s both; }
@keyframes slideUp   { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideLeft { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }

/* === 09. DIFERENCIAIS === */
.dif-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dif-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 36px 28px; text-align: center;
  box-shadow: var(--sh-sm); border: 1px solid var(--gray-200);
  transition: var(--tr); position: relative; overflow: hidden;
}
.dif-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--ic, var(--navy)); border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.dif-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.dif-icon {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  background: var(--ic, var(--navy)) !important;
  color: var(--white);
}
.dif-card h3 { font-size: 1.05rem; margin-bottom: 10px; color: var(--navy); }
.dif-card p  { font-size: .9rem; color: var(--text-sub); line-height: 1.6; }

/* === 10. PROMOÇÕES === */
.promo-banner {
  display: flex; align-items: center; gap: 40px;
  background: linear-gradient(135deg, var(--navy) 0%, #1E3A8A 100%);
  border-radius: var(--r-xl); padding: 40px 48px;
  margin-bottom: 48px; overflow: hidden; position: relative;
}
.promo-banner::after {
  content: '🔥'; position: absolute; right: 160px; top: -20px;
  font-size: 6rem; opacity: .12; pointer-events: none;
}
.promo-timer-box { flex-shrink: 0; color: var(--white); }
.timer-lbl { font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; opacity: .7; margin-bottom: 12px; }
.timer-grid { display: flex; align-items: center; gap: 6px; }
.t-unit { text-align: center; }
.t-unit span {
  display: flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: var(--r-md);
  background: rgba(255,255,255,.15); font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem; font-weight: 900; color: var(--yellow);
  border: 1.5px solid rgba(255,255,255,.2);
}
.t-unit small { display: block; font-size: .65rem; text-align: center; margin-top: 4px; opacity: .6; text-transform: uppercase; }
.t-sep { font-size: 1.4rem; font-weight: 900; color: var(--yellow); margin-bottom: 20px; }
.promo-main-offer { flex: 1; color: var(--white); }
.promo-tag {
  display: inline-block; background: var(--yellow); color: var(--navy-dark);
  font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em;
  padding: 4px 12px; border-radius: var(--r-full); margin-bottom: 14px;
}
.promo-main-offer h3 { font-size: 1.7rem; font-weight: 800; margin-bottom: 8px; }
.promo-main-offer p  { opacity: .8; margin-bottom: 20px; }

.promo-cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.promo-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 24px; box-shadow: var(--sh-sm); border: 1px solid var(--gray-200);
  transition: var(--tr); position: relative;
}
.promo-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.promo-card-badge {
  position: absolute; top: 12px; right: 12px;
  background: #E74C3C; color: var(--white);
  font-size: .68rem; font-weight: 800; text-transform: uppercase;
  padding: 4px 10px; border-radius: var(--r-full);
}
.promo-card-icon { font-size: 2.2rem; margin-bottom: 12px; }
.promo-card h4 { font-size: .95rem; color: var(--navy); margin-bottom: 6px; }
.promo-card p  { font-size: .82rem; color: var(--text-sub); margin-bottom: 14px; }
.promo-price { display: flex; align-items: baseline; gap: 8px; }
.promo-old  { font-size: .82rem; color: var(--gray-500); text-decoration: line-through; }
.promo-new  { font-size: 1.35rem; font-weight: 800; color: var(--navy); font-family: 'Montserrat', sans-serif; }

/* === 11. CATÁLOGO === */
.catalog-filters {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap; margin-bottom: 40px;
  padding: 20px 24px; background: var(--white);
  border-radius: var(--r-lg); box-shadow: var(--sh-sm);
  border: 1px solid var(--gray-200);
}
.search-wrap {
  position: relative; flex: 1; min-width: 220px;
}
.search-ico { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--gray-500); width: 18px; height: 18px; }
.search-wrap input {
  width: 100%; padding: 11px 16px 11px 42px;
  border: 1.5px solid var(--gray-200); border-radius: var(--r-full);
  font-size: .9rem; outline: none; transition: var(--tr);
}
.search-wrap input:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(26,43,107,.1); }
.filter-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.f-btn {
  padding: 9px 18px; border-radius: var(--r-full);
  font-size: .84rem; font-weight: 600;
  border: 1.5px solid var(--gray-200); color: var(--gray-700);
  transition: var(--tr);
}
.f-btn:hover  { border-color: var(--navy); color: var(--navy); }
.f-btn.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.sort-sel {
  padding: 10px 16px; border: 1.5px solid var(--gray-200);
  border-radius: var(--r-full); font-size: .88rem; outline: none;
  color: var(--gray-700); cursor: pointer; transition: var(--tr);
}
.sort-sel:focus { border-color: var(--navy); }

.products-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  min-height: 200px;
}
.prod-card {
  background: var(--white); border-radius: var(--r-lg);
  border: 1px solid var(--gray-200); overflow: hidden;
  box-shadow: var(--sh-sm); transition: var(--tr);
  display: flex; flex-direction: column;
  animation: fadeIn .4s ease backwards;
}
.prod-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: rgba(26,43,107,.2); }
.prod-img {
  height: 160px; display: flex; align-items: center; justify-content: center;
  background: var(--gray-100); font-size: 3.5rem; position: relative;
}
.prod-badge-wrap { position: absolute; top: 10px; left: 10px; display: flex; gap: 6px; flex-wrap: wrap; }
.prod-badge {
  font-size: .64rem; font-weight: 800; text-transform: uppercase;
  padding: 3px 8px; border-radius: var(--r-full);
}
.prod-badge.promo  { background: #E74C3C; color: var(--white); }
.prod-badge.fab    { background: var(--navy); color: var(--white); }
.prod-badge.dest   { background: var(--green); color: var(--white); }
.prod-body { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.prod-cat  { font-size: .72rem; color: var(--text-sub); text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
.prod-name { font-size: .95rem; font-weight: 700; color: var(--navy); line-height: 1.3; }
.prod-desc { font-size: .82rem; color: var(--text-sub); line-height: 1.5; flex: 1; }
.prod-prices { margin-top: 8px; display: flex; align-items: baseline; gap: 8px; }
.prod-old { font-size: .78rem; color: var(--gray-500); text-decoration: line-through; }
.prod-price { font-size: 1.25rem; font-weight: 900; color: var(--navy); font-family: 'Montserrat', sans-serif; }
.prod-btn {
  margin: 0 16px 16px; padding: 10px 16px; border-radius: var(--r-full);
  background: var(--navy); color: var(--white);
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .85rem;
  cursor: pointer; transition: var(--tr); display: flex; align-items: center; justify-content: center; gap: 6px;
}
.prod-btn:hover { background: var(--navy-light); transform: none; }
.prod-btn.added { background: var(--green); }

.catalog-footer { text-align: center; margin-top: 48px; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.showing-count { font-size: .88rem; color: var(--text-sub); }

@keyframes fadeIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

/* === 12. CART SIDEBAR === */
.overlay {
  display: none; position: fixed; inset: 0; z-index: 8000;
  background: rgba(0,0,0,.5); backdrop-filter: blur(2px);
}
.overlay.open { display: block; }
.cart-sidebar {
  position: fixed; right: 0; top: 0; bottom: 0; z-index: 8100;
  width: 400px; max-width: 95vw; background: var(--white);
  display: flex; flex-direction: column;
  box-shadow: var(--sh-xl);
  transform: translateX(100%); transition: transform .35s ease;
}
.cart-sidebar.open { transform: translateX(0); }
.cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--gray-200);
}
.cart-head h3 { display: flex; align-items: center; gap: 10px; font-size: 1rem; color: var(--navy); }
.close-btn {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--gray-100); color: var(--gray-600);
  display: flex; align-items: center; justify-content: center;
  transition: var(--tr);
}
.close-btn:hover { background: var(--gray-200); }
.cart-body { flex: 1; overflow-y: auto; padding: 16px; }
.cart-empty { text-align: center; padding: 48px 24px; color: var(--text-sub); }
.empty-ico  { font-size: 3.5rem; margin-bottom: 12px; }
.cart-empty p { font-size: 1rem; font-weight: 600; color: var(--gray-700); }
.cart-empty small { font-size: .85rem; }
.cart-item {
  display: flex; gap: 12px; padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
}
.cart-item-icon  { font-size: 1.8rem; min-width: 48px; height: 48px; background: var(--gray-100); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; }
.cart-item-info  { flex: 1; min-width: 0; }
.cart-item-name  { font-size: .88rem; font-weight: 600; color: var(--navy); }
.cart-item-price { font-size: .82rem; color: var(--text-sub); margin-top: 2px; }
.cart-item-ctrl  { display: flex; align-items: center; gap: 6px; margin-top: 6px; }
.qty-btn {
  width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--gray-300);
  display: flex; align-items: center; justify-content: center; font-size: .8rem; font-weight: 700;
  transition: var(--tr);
}
.qty-btn:hover  { border-color: var(--navy); color: var(--navy); }
.qty-val { font-size: .88rem; font-weight: 700; min-width: 20px; text-align: center; }
.cart-item-remove { color: #E74C3C; font-size: .75rem; margin-left: auto; cursor: pointer; }
.cart-item-remove:hover { text-decoration: underline; }
.cart-foot {
  padding: 16px 24px; border-top: 1px solid var(--gray-200);
  display: flex; flex-direction: column; gap: 8px;
}
.cart-line { display: flex; justify-content: space-between; font-size: .9rem; color: var(--text-sub); }
.cart-total-line {
  display: flex; justify-content: space-between;
  font-family: 'Montserrat', sans-serif; font-size: 1.15rem; font-weight: 800;
  color: var(--navy); padding-top: 8px; border-top: 1px solid var(--gray-200); margin-bottom: 8px;
}

/* === 13. MODAL === */
.modal {
  position: fixed; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(.96);
  z-index: 8200; width: 480px; max-width: 95vw; max-height: 90vh;
  background: var(--white); border-radius: var(--r-xl);
  box-shadow: var(--sh-xl); overflow: hidden;
  opacity: 0; pointer-events: none; transition: all .3s ease;
}
.modal.open { opacity: 1; pointer-events: all; transform: translate(-50%,-50%) scale(1); }
.modal-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--gray-200);
}
.modal-head h3 { font-size: 1.05rem; color: var(--navy); }
.modal-body { padding: 24px; overflow-y: auto; max-height: 60vh; display: flex; flex-direction: column; gap: 16px; }
.modal-hint { font-size: .88rem; color: var(--text-sub); background: var(--gray-100); padding: 12px 16px; border-radius: var(--r-sm); }
.form-row label { display: block; font-size: .84rem; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }
.form-row input, .form-row textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--gray-200);
  border-radius: var(--r-md); font-size: .9rem; outline: none; transition: var(--tr);
}
.form-row input:focus, .form-row textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(26,43,107,.1); }
.form-row textarea { resize: vertical; min-height: 80px; }
.modal-foot {
  display: flex; gap: 12px; justify-content: flex-end;
  padding: 16px 24px; border-top: 1px solid var(--gray-200);
}

/* === 14. AVALIAÇÕES === */
.reviews-summary {
  display: flex; gap: 48px; align-items: center;
  background: var(--white); border-radius: var(--r-xl); padding: 36px 40px;
  box-shadow: var(--sh-sm); border: 1px solid var(--gray-200);
  margin-bottom: 40px;
}
.review-score-box { text-align: center; flex-shrink: 0; }
.score-big { font-family: 'Montserrat', sans-serif; font-size: 3.5rem; font-weight: 900; color: var(--navy); }
.score-stars { font-size: 1.3rem; color: var(--yellow); letter-spacing: 2px; margin: 4px 0; }
.score-info { font-size: .84rem; color: var(--text-sub); }
.score-bars { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.bar-row { display: flex; align-items: center; gap: 10px; font-size: .82rem; color: var(--text-sub); }
.bar-row span:first-child { min-width: 26px; font-weight: 600; }
.bar-track { flex: 1; height: 8px; background: var(--gray-200); border-radius: 4px; overflow: hidden; }
.bar-fill  { height: 100%; background: var(--yellow); border-radius: 4px; transition: width 1.2s ease; }
.bar-row span:last-child { min-width: 30px; text-align: right; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 24px; }
.rev-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 24px; box-shadow: var(--sh-sm); border: 1px solid var(--gray-200);
}
.rev-top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.rev-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 700; color: var(--white);
}
.rev-info strong { font-size: .9rem; display: block; }
.rev-info small  { font-size: .78rem; color: var(--text-sub); }
.rev-stars { color: var(--yellow); font-size: .95rem; letter-spacing: 1px; }
.rev-text { font-size: .88rem; color: var(--text-sub); line-height: 1.6; font-style: italic; }
.api-note {
  display: flex; align-items: center; gap: 6px;
  font-size: .8rem; color: var(--text-sub); justify-content: center;
}

/* === 15. SOBRE === */
.sobre-layout {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; align-items: center;
}
.sobre-graphic {
  background: linear-gradient(135deg, var(--navy) 0%, #1E3A8A 100%);
  border-radius: var(--r-xl); padding: 48px; text-align: center;
  position: relative; overflow: hidden;
}
.sobre-graphic::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(245,200,0,.1); border: 2px solid rgba(245,200,0,.2);
}
.sobre-number { color: var(--white); margin-bottom: 32px; }
.big-num { font-family: 'Montserrat', sans-serif; font-size: 5rem; font-weight: 900; color: var(--yellow); display: block; line-height: 1; }
.sobre-number span { font-size: .9rem; opacity: .75; text-transform: uppercase; letter-spacing: .08em; }
.sobre-icons-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.s-ico-item {
  background: rgba(255,255,255,.1); border-radius: var(--r-md); padding: 16px;
  text-align: center; color: var(--white); font-size: .8rem;
  border: 1px solid rgba(255,255,255,.15);
}
.s-ico-item { display: flex; flex-direction: column; align-items: center; gap: 6px; font-size: 1.8rem; }
.s-ico-item span { font-size: .78rem; }

.sobre-text { display: flex; flex-direction: column; gap: 16px; }
.sobre-text p { font-size: .97rem; color: var(--text-sub); line-height: 1.7; }
.missao-grid { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.missao-item { display: flex; gap: 14px; padding: 16px; background: var(--off-white); border-radius: var(--r-md); }
.m-icon { font-size: 1.5rem; flex-shrink: 0; }
.missao-item strong { display: block; color: var(--navy); margin-bottom: 4px; font-size: .92rem; }
.missao-item p { font-size: .84rem; color: var(--text-sub); margin: 0; }

/* === 16. ATENDIMENTO === */
.cidades-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px;
}
.cidade-card {
  background: rgba(255,255,255,.06); border-radius: var(--r-lg);
  padding: 28px 24px; border: 1px solid rgba(255,255,255,.12);
  position: relative; overflow: hidden; transition: var(--tr);
}
.cidade-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.cidade-card.principal { border-color: rgba(245,200,0,.5); background: rgba(245,200,0,.08); }
.c-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--yellow); margin-bottom: 12px;
  box-shadow: 0 0 0 4px rgba(245,200,0,.3);
}
.cidade-card h3 { font-size: 1rem; color: var(--white); margin-bottom: 6px; }
.cidade-card p  { font-size: .84rem; color: rgba(255,255,255,.65); margin-bottom: 14px; }
.c-tag {
  display: inline-block; font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em;
  padding: 4px 10px; border-radius: var(--r-full);
  background: rgba(245,200,0,.2); color: var(--yellow);
}
.c-tag.priority  { background: rgba(0,166,81,.2); color: #00C964; }
.c-tag.same-day  { background: rgba(0,166,81,.2); color: #00C964; }
.c-tag.regular   { background: rgba(255,255,255,.1); color: rgba(255,255,255,.7); }
.c-tag.consult   { background: rgba(255,255,255,.1); color: rgba(255,255,255,.7); }
.at-cta { text-align: center; }
.at-cta p { color: rgba(255,255,255,.7); margin-bottom: 20px; }

/* === 17. CONTATO === */
.contato-layout { display: grid; grid-template-columns: 360px 1fr; gap: 48px; align-items: start; }
.contato-cards { display: flex; flex-direction: column; gap: 16px; }
.ct-card {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px; background: var(--off-white);
  border-radius: var(--r-md); border: 1px solid var(--gray-200);
}
.ct-icon {
  width: 44px; height: 44px; border-radius: var(--r-md); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.ct-card strong { display: block; font-size: .9rem; color: var(--navy); margin-bottom: 4px; }
.ct-card a, .ct-card p, .ct-card address { font-size: .88rem; color: var(--text-sub); }
.ct-card a:hover { color: var(--navy); text-decoration: underline; }

/* === 18. FOOTER === */
.footer { background: var(--navy-dark); color: rgba(255,255,255,.8); }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px;
  padding: 64px 0 48px;
}
.f-brand img { margin-bottom: 16px; }
.f-brand p { font-size: .88rem; line-height: 1.7; opacity: .7; margin-bottom: 20px; }
.f-wpp {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--wpp); color: var(--white); padding: 10px 20px;
  border-radius: var(--r-full); font-size: .88rem; font-weight: 700;
  transition: var(--tr);
}
.f-wpp:hover { background: #1EBD5A; }
.f-col h4 { color: var(--white); font-size: .88rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 18px; opacity: .9; }
.f-col ul { display: flex; flex-direction: column; gap: 10px; }
.f-col li a { font-size: .88rem; color: rgba(255,255,255,.6); transition: var(--tr); }
.f-col li a:hover { color: var(--yellow); }
.f-col address p, .f-col p { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.7; }
.f-col strong { color: rgba(255,255,255,.8); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.4); }
.f-legal { display: flex; gap: 12px; font-size: .82rem; color: rgba(255,255,255,.4); }
.f-legal a:hover { color: var(--yellow); }

/* === 19. SCROLL ANIMATIONS === */
[data-anim] { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
[data-anim].visible { opacity: 1; transform: translateY(0); }

/* === 20. RESPONSIVE === */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .promo-cards   { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero-layout   { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual   { display: none; }
  .dif-grid      { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav-menu { display: none; flex-direction: column; align-items: flex-start; gap: 0;
    position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
    background: var(--navy-dark); padding: 24px; overflow-y: auto; z-index: 999;
  }
  .nav-menu.open { display: flex; }
  .nav-link { color: var(--white) !important; font-size: 1.05rem; padding: 14px 8px; border-bottom: 1px solid rgba(255,255,255,.08); width: 100%; }
  .nav-cta  { margin-top: 16px; align-self: flex-start; }
  .nav-toggle { display: flex; }
  .sobre-layout { grid-template-columns: 1fr; gap: 40px; }
  .contato-layout { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .cidades-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-banner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .section { padding: 72px 0; }
}
@media (max-width: 680px) {
  .products-grid   { grid-template-columns: repeat(2, 1fr); }
  .promo-cards     { grid-template-columns: 1fr; }
  .dif-grid        { grid-template-columns: 1fr; }
  .cidades-grid    { grid-template-columns: 1fr; }
  .footer-grid     { grid-template-columns: 1fr; }
  .reviews-summary { flex-direction: column; gap: 24px; }
  .catalog-filters { flex-direction: column; align-items: stretch; }
  .hero-stats      { flex-wrap: wrap; gap: 16px; padding: 16px; }
  .stat-div        { display: none; }
  .wpp-float       { padding: 12px; border-radius: 50%; }
  .wpp-label       { display: none; }
  .hero-title      { font-size: 2rem; }
  .section         { padding: 56px 0; }
  .section-header  { margin-bottom: 36px; }
  .promo-banner    { padding: 28px 24px; }
}
@media (max-width: 400px) {
  .products-grid { grid-template-columns: 1fr; }
  .container     { padding: 0 16px; }
}

/* ============================================================
   COMPLEMENTOS DINÂMICOS (gerados via JS)
   ============================================================ */

/* Scroll lock */
body.no-scroll { overflow: hidden; }

/* Overlay — alias .active = .open */
.overlay.active { display: block; }

/* Toast de carrinho */
.cart-toast {
  position: fixed; bottom: 80px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--navy); color: var(--white);
  padding: 12px 24px; border-radius: var(--r-full);
  font-size: .88rem; box-shadow: var(--sh-md);
  opacity: 0; transition: opacity .3s ease, transform .3s ease;
  z-index: 9999; white-space: nowrap; pointer-events: none;
}
.cart-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Reviews — margem do texto e data */
.rev-card { display: flex; flex-direction: column; gap: 10px; }
.rev-text  { margin: 0; flex: 1; }
.rev-stars { font-size: .95rem; letter-spacing: 1px; }

/* Prod-price promocional */
.prod-price { font-family: 'Montserrat', sans-serif; }

/* Promo cards — layout flex nos preços */
.promo-card { display: flex; flex-direction: column; }
.promo-price { margin-top: auto; margin-bottom: 0; }

/* Responsivo toast */
@media (max-width: 480px) {
  .cart-toast { font-size: .82rem; padding: 10px 18px; bottom: 72px; }
}
