/* ============================================================
   DECOR COLORS — HOMEPAGE  (Professional E-commerce Redesign)
   https://loja.decorcolors.com.br/
   ============================================================ */

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

/* ---------- CUSTOM PROPERTIES ---------- */
:root {
  --clr-teal:    #0B9E8E;
  --clr-teal-d:  #087A6D;
  --clr-teal-dd: #066358;
  --clr-accent:  #b7151a;
  --clr-pink:    #E5006D;
  --clr-gold:    #C8A96E;
  --clr-dark:    #3f3f40;
  --clr-darker:  #2C2C2C;
  --clr-mid:     #979899;
  --clr-light:   #F5F5F5;
  --clr-bg:      #fff;
  --clr-bg-alt:  #f5f5f5;
  --clr-white:   #fff;
  --clr-border:  rgba(13,13,13,0.12);
  --img-size:    400px;
  --radius-pill: 24px;
  --radius-card: 8px;
  --shadow-sm:   0 1px 4px rgba(0,0,0,0.06);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg:   0 4px 8px rgba(0,0,0,0.15);
  --shadow-xl:   0 20px 60px rgba(0,0,0,0.15);
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- GLOBAL ---------- */
html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: #fff;
  color: #3f3f40;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-size: 1rem;
}

::selection {
  background: rgba(11,158,142,0.2);
  color: var(--clr-dark);
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
img { max-width: 100%; display: block; }

.container { max-width: 1366px; margin: 0 auto; padding: 0 43px; }

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--clr-bg); }
::-webkit-scrollbar-thumb {
  background: #C4C4C4;
  border-radius: 100px;
}
::-webkit-scrollbar-thumb:hover { background: #999; }

/* ---------- ANIMATIONS ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.animate-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--transition), transform 0.6s var(--transition);
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: #f5f5f5;
  color: #3f3f40;
  font-size: 0.875rem;
  font-weight: 400;
  border-bottom: 1px solid rgba(13,13,13,0.08);
}
.topbar__inner {
  max-width: 1366px; margin: 0 auto; padding: 0 43px;
  display: flex; justify-content: space-between; align-items: center;
  height: 40px;
}
.topbar__link {
  display: flex; align-items: center; gap: 6px;
  color: #3f3f40;
  transition: color var(--transition);
  font-size: 0.875rem;
}
.topbar__link:hover { color: var(--clr-accent); }
.topbar__link svg { color: #656667; flex-shrink: 0; }
.topbar__sep { color: #ccc; font-size: 0.75rem; }
.topbar__divider { color: #ccc; font-size: 0.75rem; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--clr-white);
  box-shadow: none;
  transition: box-shadow var(--transition);
}
.header--scrolled {
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.header__row {
  max-width: 1366px; margin: 0 auto; padding: 0 43px;
  display: flex; align-items: center; gap: 24px;
  height: 88px;
}
.logo { flex-shrink: 0; }
.logo img { height: 34px; width: auto; display: block; }

/* Search — bordered input (identical to official site) */
.search {
  flex: 1;
  display: flex;
  border: 1px solid rgba(13,13,13,0.2);
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  max-width: 600px;
  transition: border-color var(--transition);
}
.search:focus-within {
  border-color: #3f3f40;
}
.search input {
  flex: 1; padding: 0 16px; height: 42px;
  font-family: inherit; font-size: 0.875rem;
  border: none; outline: none;
  background: transparent;
  color: #3f3f40;
}
.search input::placeholder { color: #979899; }
.search button {
  padding: 0 14px;
  color: #656667;
  display: flex; align-items: center; justify-content: center;
  transition: color var(--transition);
}
.search button:hover { color: #3f3f40; }

/* Header actions */
.header__actions {
  display: flex; align-items: center; gap: 24px;
}
.header__link {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.875rem; font-weight: 400;
  color: #3f3f40;
  padding: 4px 0;
  transition: color var(--transition);
}
.header__link:hover { color: var(--clr-accent); }
.header__cart {
  position: relative;
  padding: 4px 0;
  color: #3f3f40;
  transition: color var(--transition);
}
.header__cart:hover { color: var(--clr-accent); }
.cart-badge {
  position: absolute; top: -6px; right: -8px;
  background: var(--clr-accent);
  color: var(--clr-white);
  font-size: 0.6rem; font-weight: 700;
  min-width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* HEADER — header__main layout */
.header__main {
  max-width: 1366px; margin: 0 auto; padding: 0 43px;
}
.header__inner {
  display: flex; align-items: center; gap: 24px;
  height: 64px;
  padding: 8px 0;
}

/* Search area — with overlay */
.search-area {
  flex: 1;
  max-width: 600px;
  position: relative;
}
.search-wrap {
  display: flex;
  border: 1px solid rgba(13,13,13,0.2);
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  transition: border-color var(--transition);
}
.search-area:focus-within .search-wrap {
  border-color: #3f3f40;
}
.search-area:focus-within .search-overlay { opacity: 1; visibility: visible; }

/* Search overlay */
.search-overlay {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--clr-white);
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  max-height: 480px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.search-overlay__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  min-height: 280px;
  overflow-y: auto;
}
.search-overlay__sugestoes {
  padding: 20px 24px;
  border-right: 1px solid var(--clr-border);
}
.search-overlay__sugestoes h4 {
  font-size: .72rem;
  font-weight: 700;
  color: var(--clr-mid);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 14px;
}
.search-overlay__sugestoes a {
  display: block;
  padding: 8px 0;
  font-size: .88rem;
  color: #4B5563;
  text-decoration: none;
  transition: color var(--transition);
}
.search-overlay__sugestoes a:hover { color: var(--clr-teal); }
.search-overlay__produtos {
  padding: 20px 24px;
  overflow-y: auto;
}
.search-overlay__produtos h4 {
  font-size: .72rem;
  font-weight: 700;
  color: var(--clr-mid);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 14px;
}
.search-overlay__produtos-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.search-overlay__produtos-grid a {
  display: flex;
  gap: 14px;
  padding: 10px 8px;
  border-bottom: 1px solid #F3F4F6;
  text-decoration: none;
  color: inherit;
  border-radius: 10px;
  transition: background var(--transition);
}
.search-overlay__produtos-grid a:last-child { border-bottom: none; }
.search-overlay__produtos-grid a:hover { background: #F5F7F7; }
.search-overlay__prod-img {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  background: #F3F4F6;
  position: relative;
}
.search-overlay__prod-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}
.search-overlay__prod-badge {
  position: absolute;
  top: 4px;
  left: 4px;
  background: linear-gradient(135deg, #2563EB, #3B82F6);
  color: #fff;
  font-size: .56rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  text-transform: uppercase;
}
.search-overlay__prod-body {
  flex: 1;
  min-width: 0;
}
.search-overlay__prod-name {
  font-size: .84rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.35;
  margin-bottom: 4px;
}
.search-overlay__prod-price {
  font-size: .95rem;
  font-weight: 800;
  color: var(--clr-teal);
}
.search-overlay__prod-install {
  font-size: .73rem;
  color: var(--clr-mid);
}
.search-overlay__footer {
  padding: 14px 24px;
  border-top: 1px solid var(--clr-border);
  background: #FAFAFA;
  border-radius: 0 0 16px 16px;
}
.search-overlay__footer a {
  font-size: .88rem;
  font-weight: 600;
  color: var(--clr-teal);
  text-decoration: none;
  transition: color var(--transition);
}
.search-overlay__footer a:hover { text-decoration: underline; }

/* Termos mais buscados */
.search-overlay__mais-buscados {
  padding: 24px 28px;
  min-height: 200px;
}
.search-overlay__mais-buscados h4 {
  font-size: .82rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 18px;
}
.search-overlay__mais-buscados-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.search-overlay__mais-buscados-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 8px;
  font-size: .88rem;
  color: #4B5563;
  text-decoration: none;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}
.search-overlay__mais-buscados-list a:hover { color: var(--clr-teal); background: rgba(11,158,142,0.04); }
.search-overlay__mais-buscados-num {
  font-weight: 700;
  color: #C4C4C4;
  font-size: .78rem;
  min-width: 24px;
}
.search-overlay--empty .search-overlay__inner,
.search-overlay--empty .search-overlay__footer { display: none !important; }
.search-overlay:not(.search-overlay--empty) .search-overlay__mais-buscados { display: none !important; }

@media (max-width: 768px) {
  .search-overlay__inner { grid-template-columns: 1fr; }
}

/* Search input / button alternate classes */
.search-input {
  flex: 1; padding: 0 16px; height: 42px;
  font-family: inherit; font-size: 16px;
  border: none; outline: none;
  background: transparent;
  color: #3f3f40;
}
.search-input::placeholder { color: #979899; }
.search-clear {
  display: none;
  align-items: center; justify-content: center;
  padding: 0 8px; height: 42px;
  background: none; border: none;
  color: #979899; font-size: 1.2rem; line-height: 1;
  cursor: pointer; flex-shrink: 0;
  transition: color 0.2s;
}
.search-clear:hover { color: #3f3f40; }
.search-clear.visible { display: flex; }
.search-btn {
  padding: 0 14px;
  color: #656667;
  display: flex; align-items: center; justify-content: center;
  transition: color var(--transition);
}
.search-btn:hover { color: #3f3f40; }

/* Action buttons */
.action-btn {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.875rem; font-weight: 400;
  color: #3f3f40;
  padding: 4px 0;
  transition: color var(--transition);
}
.action-btn:hover { color: var(--clr-accent); }
.cart-btn { position: relative; }
.cart-icon-wrap { position: relative; display: flex; }
.cart-icon-wrap .cart-badge {
  position: absolute; top: -4px; right: -4px;
}

/* ============================================================
   NAV / NAVBAR
   ============================================================ */
.nav {
  background: #fff;
  border-top: 1px solid rgba(13,13,13,0.2);
}
.navbar {
  background: #fff;
  border-top: 1px solid rgba(13,13,13,0.2);
}
.navbar__inner {
  max-width: 1366px; margin: 0 auto; padding: 0 43px;
  display: flex; align-items: center;
  position: relative;
  justify-content: center;
}
.burger {
  display: none;
  padding: 12px;
  color: #3f3f40;
}
.nav__list {
  max-width: 1366px; margin: 0 auto; padding: 0;
  display: flex; align-items: center; flex-wrap: wrap;
  justify-content: center;
}
.navbar__inner .nav__list { max-width: none; padding: 0; }

.nav__list li a,
.nav__list .nav__item > a {
  display: block;
  padding: 9px 20px;
  font-size: 0.875rem; font-weight: 700;
  color: #3f3f40;
  position: relative;
  transition: color var(--transition);
  letter-spacing: 0;
}
.nav__list li a::after,
.nav__list .nav__item > a::after {
  display: none;
}
.nav__list li a:hover,
.nav__list .nav__item > a:hover { color: var(--clr-accent); }

/* DROPDOWNS */
.nav__item--dropdown {
  position: relative;
}
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  border-radius: 0 0 16px 16px;
  z-index: 100;
  padding: 32px 40px;
}
.nav__item--dropdown:hover .dropdown,
.nav__item--dropdown.open .dropdown {
  display: block;
}
.dropdown ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.dropdown li a {
  display: block;
  padding: 8px 0;
  font-size: 0.875rem;
  font-weight: 400;
  color: #3f3f40;
  transition: color var(--transition);
}
.dropdown li a::after { display: none; }
.dropdown li a:hover {
  color: var(--clr-accent);
}

/* MEGA DROPDOWN */
.dropdown--mega {
  left: 50%;
  transform: translateX(-50%);
  min-width: 560px;
  display: none;
  padding: 0;
  overflow: hidden;
  border-radius: 0 0 16px 16px;
}
.nav__item--dropdown:hover .dropdown--mega,
.nav__item--dropdown.open .dropdown--mega {
  display: flex;
  transform: translateX(-50%);
}
.dropdown__links {
  flex: 0 0 240px;
  padding: 20px 0;
}
.dropdown__links ul { padding: 0 16px; }
.dropdown__links li a {
  padding: 9px 14px;
  font-size: 0.84rem;
  border-radius: 8px;
}
.dropdown__banner {
  flex: 1;
  display: flex;
  min-height: 200px;
  text-decoration: none;
  color: inherit;
  transition: opacity var(--transition);
}
.dropdown__banner:hover { opacity: 0.95; }
.dropdown__banner-img {
  width: 200px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  background-color: #F3F4F6;
}
.dropdown__banner-content {
  flex: 1;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.dropdown__banner-tag {
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--clr-teal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.dropdown__banner-title {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
}
.dropdown__banner-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--clr-teal);
}
.dropdown__banner-cta {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--clr-teal);
  margin-top: 4px;
}

/* ============================================================
   HERO — Carousel
   ============================================================ */
.hero {
  position: relative;
  background: var(--clr-dark);
  overflow: hidden;
}
.hero::after {
  display: none;
}
.hero__slider {
  position: relative;
  width: 100%;
  aspect-ratio: 1440 / 495;
  overflow: hidden;
}
.hero__track {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.hero__slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  height: 100%;
}
.hero__link {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* Hero Arrows */
.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.9);
  color: #3f3f40;
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: none;
  transition: background var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.hero__arrow:hover {
  background: #fff;
}
.hero__arrow--prev { left: 20px; }
.hero__arrow--next { right: 20px; }

/* Hero Dots */
.hero__dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.hero__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: 2px solid rgba(255,255,255,0.8);
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero__dot:hover { background: rgba(255,255,255,0.8); }
.hero__dot.active {
  background: #fff;
  border-color: #fff;
}

/* Campaign bar */
.hero__bar {
  background: #f5f5f5;
  padding: 10px 43px;
  text-align: center;
  border-top: none;
}
.hero__campaign {
  font-size: 0.7rem;
  color: #979899;
  letter-spacing: 0.02em;
  margin-bottom: 0;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: #fff;
  border-bottom: 1px solid rgba(13,13,13,0.08);
  padding: 20px 0;
}
.trust-strip__items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}
.trust-strip__item svg {
  color: #656667;
  flex-shrink: 0;
}
.trust-strip__item strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #3f3f40;
  line-height: 1.3;
}
.trust-strip__item span {
  font-size: 0.75rem;
  color: #979899;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .trust-strip__items {
    flex-wrap: wrap;
    justify-content: center;
  }
  .trust-strip__item {
    flex: 0 0 calc(50% - 12px);
  }
}
@media (max-width: 480px) {
  .trust-strip__item {
    flex: 0 0 100%;
  }
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: 56px 0;
  background: #fff;
}
.section--dark {
  background: linear-gradient(135deg, #0B4A3F 0%, var(--clr-teal) 100%) !important;
  color: var(--clr-white);
}
.section__title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #3f3f40;
  margin-bottom: 40px;
  text-align: center;
  text-transform: uppercase;
}
.section__title::after {
  display: none;
}
.section__title--light {
  color: #6EE8DC;
}
.section__desc {
  text-align: center;
  color: #656667;
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   INOVACAO SECTION — tabs + banner
   ============================================================ */
.inovacao-section .section__title { margin-bottom: 12px; }
.inovacao__subtitle {
  color: var(--clr-mid) !important;
  margin-bottom: 28px;
  font-size: 0.92rem;
}
.inovacao-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
  border-bottom: none;
  padding-bottom: 0;
}
.inovacao-tab {
  padding: 10px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #656667;
  background: transparent;
  border: 1px solid rgba(13,13,13,0.15);
  border-radius: 4px;
  margin-bottom: 0;
  transition: all var(--transition);
  font-family: 'Montserrat', sans-serif;
}
.inovacao-tab:hover {
  color: #3f3f40;
  border-color: #3f3f40;
}
.inovacao-tab.active {
  color: #fff;
  background: #3f3f40;
  border-color: #3f3f40;
}
.inovacao-banner {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.inovacao-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center left;
  background-color: #E5E7EB;
  background-attachment: scroll;
}
.inovacao-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.5) 45%, transparent 70%);
}
.inovacao-banner__content {
  position: relative;
  z-index: 2;
  padding: 48px 56px 48px 0;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
}
.inovacao-banner__slogan {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--clr-dark);
  line-height: 1.2;
  text-align: right;
}
.inovacao-banner__products {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}
.inovacao-product {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.95);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform var(--transition), box-shadow var(--transition);
}
.inovacao-product:hover {
  transform: translateX(-4px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.inovacao-product__img {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.inovacao-product__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.inovacao-product__label {
  font-size: 0.84rem;
  font-weight: 600;
  color: #374151;
}
.inovacao-banner__cta {
  padding: 14px 32px;
  font-size: 0.95rem;
}
@media (max-width: 900px) {
  .inovacao-banner__content { max-width: 70%; padding-right: 24px; }
  .inovacao-banner__slogan { font-size: 1.4rem; }
}
@media (max-width: 768px) {
  .inovacao-tabs { gap: 6px; }
  .inovacao-tab { font-size: 0.76rem; padding: 8px 16px; }
  .inovacao-banner { min-height: 360px; flex-direction: column; justify-content: flex-end; }
  .inovacao-banner__overlay { background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.95) 50%); }
  .inovacao-banner__content {
    max-width: 100%;
    padding: 32px 20px 28px;
    align-items: center;
    text-align: center;
  }
  .inovacao-banner__slogan { font-size: 1.2rem; text-align: center; }
  .inovacao-banner__products { align-items: center; }
}

/* ============================================================
   INSPIRE SECTION
   ============================================================ */
.inspire-section .section__title { margin-bottom: 12px; }
.inspire__subtitle {
  color: var(--clr-mid) !important;
  margin-bottom: 28px;
  font-size: 0.92rem;
}
.inspire-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
}
.inspire-tab {
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #656667;
  background: transparent;
  border: 1px solid rgba(13,13,13,0.15);
  border-radius: 4px;
  transition: all var(--transition);
  font-family: 'Montserrat', sans-serif;
}
.inspire-tab:hover {
  color: #3f3f40;
  border-color: #3f3f40;
}
.inspire-tab.active {
  color: #fff;
  background: #3f3f40;
  border-color: #3f3f40;
}
.inspire-banner {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: stretch;
}
.inspire-banner__img {
  flex: 1;
  background-size: cover;
  background-position: center;
  background-color: #E5E7EB;
}
.inspire-banner__products {
  width: 320px;
  flex-shrink: 0;
  padding: 24px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-left: none;
}
.inspire-product {
  display: flex;
  gap: 14px;
  padding: 14px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid rgba(13,13,13,0.08);
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
}
.inspire-product:hover {
  border-color: rgba(13,13,13,0.2);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.inspire-product__img-wrap {
  position: relative;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.inspire-product__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.inspire-product__badge {
  position: absolute;
  top: 4px;
  left: 4px;
  background: linear-gradient(135deg, #E5006D, #FF4D9D);
  color: #fff;
  font-size: 0.56rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 0.03em;
}
.inspire-product__body { flex: 1; min-width: 0; }
.inspire-product__name {
  font-size: 0.82rem;
  font-weight: 600;
  color: #1E1E1E;
  line-height: 1.35;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.inspire-product__price {
  font-size: 1.05rem;
  font-weight: 700;
  color: #3f3f40;
  margin-bottom: 2px;
}
.inspire-product__installments {
  font-size: 0.73rem;
  color: var(--clr-mid);
  margin: 0;
}
@media (max-width: 900px) {
  .inspire-banner { flex-direction: column; min-height: auto; }
  .inspire-banner__img { min-height: 300px; }
  .inspire-banner__products { width: 100%; border-left: none; border-top: none; flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .inspire-product { flex: 1 1 260px; max-width: 400px; }
}
@media (max-width: 600px) {
  .inspire-banner__products { flex-direction: column; }
  .inspire-product { max-width: none; }
}

/* ============================================================
   PRODUCTS
   ============================================================ */
.products {
  display: grid;
  gap: 40px;
}
.products--3 {
  grid-template-columns: repeat(3, 1fr);
}
.products--scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 12px;
  scrollbar-width: thin;
  scroll-snap-type: x mandatory;
}
.products--scroll .product {
  flex: 0 0 270px;
  scroll-snap-align: start;
}

.product {
  background: #fff;
  border: none;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: none;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}
.product:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.product__discount-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #b7151a;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 4px;
  z-index: 2;
  line-height: 1.2;
  text-transform: uppercase;
}
.product__img {
  aspect-ratio: 1;
  overflow: hidden;
  background: #F5F5F5;
  position: relative;
}
.product__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}
.product:hover .product__img img {
  transform: scale(1.03);
}
.product__info { padding: 16px; text-align: center; }
.product__name {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
  color: #3f3f40;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product__price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #3f3f40;
  margin-bottom: 4px;
}
.product__price-de {
  font-size: 0.8rem;
  font-weight: 400;
  color: #979899;
  text-decoration: line-through;
  display: block;
  margin-bottom: 2px;
}
.product__price-por {
  font-size: 1.2rem;
  font-weight: 800;
  color: #3f3f40;
  display: block;
}
.product__price-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: #979899;
  text-transform: uppercase;
  display: block;
}
.product__installments {
  font-size: 0.82rem;
  color: #979899;
  margin-bottom: 14px;
}

/* ============================================================
   ANIVERSÁRIO SECTION
   ============================================================ */
.aniv-layout {
  display: flex;
  gap: 20px;
  align-items: stretch;
}
.aniv-layout__banner {
  flex: 0 0 36%;
  border-radius: var(--radius-card);
  overflow: hidden;
}
.aniv-layout__banner a { display: block; height: 100%; }
.aniv-layout__banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.aniv-layout__right {
  flex: 1;
  position: relative;
  min-width: 0;
}
.aniv-carousel { overflow: hidden; }
.aniv-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.aniv-page {
  flex: 0 0 100%;
  display: flex;
  gap: 14px;
}
.aniv-card {
  flex: 1;
  background: #fff;
  border: 1px solid rgba(13,13,13,0.09);
  border-radius: var(--radius-card);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
  min-width: 0;
}
.aniv-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.aniv-card__img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f8f8f8;
}
.aniv-card__img-wrap img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 0.3s;
}
.aniv-card:hover .aniv-card__img-wrap img { transform: scale(1.04); }
.aniv-card__badge {
  position: absolute; top: 8px; left: 8px;
  background: #FF6B6B;
  color: #fff;
  font-size: 0.58rem; font-weight: 800;
  padding: 3px 9px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: 0.04em;
  z-index: 2;
}
.aniv-card__heart {
  position: absolute; top: 8px; right: 8px;
  width: 30px; height: 30px;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(13,13,13,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: #979899; z-index: 2;
  transition: color 0.2s;
}
.aniv-card__heart:hover { color: #b7151a; }
.aniv-card__swatches {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 12px 0; min-height: 30px; flex-wrap: wrap;
}
.aniv-swatch {
  width: 18px; height: 18px; border-radius: 50%;
  cursor: pointer; flex-shrink: 0;
  border: 1.5px solid rgba(13,13,13,0.14);
  display: inline-block;
}
.aniv-swatch--active {
  outline: 2px solid #3f3f40; outline-offset: 1px;
}
.aniv-swatch--more {
  font-size: 0.68rem; color: #979899;
  font-weight: 600; cursor: default;
  background: none; border: none;
  display: inline-block;
}
.aniv-card__stars {
  color: #4A90D9; font-size: 0.75rem;
  padding: 4px 12px 0; line-height: 1;
}
.aniv-card__body { padding: 6px 12px 14px; }
.aniv-card__name {
  font-size: 0.8rem; font-weight: 500;
  color: #3f3f40; margin-bottom: 8px;
  line-height: 1.4; display: block;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.aniv-card__old-price {
  font-size: 0.7rem; color: #979899;
  text-decoration: line-through; display: block;
  margin-bottom: 2px;
}
.aniv-card__price-row {
  display: flex; align-items: center; gap: 7px;
  flex-wrap: wrap; margin-bottom: 3px;
}
.aniv-card__price {
  font-size: 1rem; font-weight: 700; color: #3f3f40;
}
.aniv-card__off-badge {
  background: #0B5FBF; color: #fff;
  font-size: 0.6rem; font-weight: 700;
  padding: 2px 6px; border-radius: 3px;
  text-transform: uppercase; white-space: nowrap;
}
.aniv-card__installments {
  font-size: 0.7rem; color: #979899;
}
/* Arrows */
.aniv-arrow {
  position: absolute;
  top: calc(50% - 20px);
  transform: translateY(-50%);
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(13,13,13,0.14);
  border-radius: 50%;
  font-size: 1.2rem; display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: #3f3f40; z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: box-shadow 0.2s;
}
.aniv-arrow:hover { box-shadow: 0 4px 14px rgba(0,0,0,0.18); }
.aniv-arrow--prev { left: -17px; }
.aniv-arrow--next { right: -17px; }
/* Dots */
.aniv-dots {
  display: flex; justify-content: center; gap: 6px; margin-top: 14px;
}
.aniv-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #C8C4BC; border: none; cursor: pointer;
  transition: background 0.2s, width 0.2s;
}
.aniv-dot.active { background: #3f3f40; width: 20px; border-radius: 4px; }
/* aniv-card as <a> */
a.aniv-card {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  .aniv-layout { flex-direction: column; }
  .aniv-layout__banner { flex: none; height: 220px; }
  .aniv-page { flex-wrap: wrap; gap: 10px; }
  .aniv-card { flex: 0 0 calc(50% - 5px); }
  .aniv-arrow { display: none; }
  /* aniv carousel: swipe via CSS scroll on mobile fallback */
  .aniv-carousel { cursor: grab; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 4px;
  transition: all var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  min-height: 2.5rem;
}
.btn--primary {
  background: #1C2B4A;
  color: #fff;
  border-color: #1C2B4A;
  width: 100%;
}
.btn--primary:hover {
  background: #142038;
  border-color: #142038;
}
.btn--outline {
  background: transparent;
  color: #3f3f40;
  border-color: rgba(13,13,13,0.2);
  width: 100%;
}
.btn--outline:hover {
  background: #3f3f40;
  color: #fff;
  border-color: #3f3f40;
}
.btn--dark {
  background: #3f3f40;
  color: #fff;
  border-color: #3f3f40;
}
.btn--dark:hover {
  background: #2c2c2c;
  border-color: #2c2c2c;
}
.btn--full { width: 100%; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #f5f5f5;
  color: #3f3f40;
  padding: 48px 0 24px;
}
img.footer__logo { height: 36px !important; width: auto !important; display: block; }
.footer__desc {
  font-size: 0.875rem;
  color: #656667;
  line-height: 1.75;
  max-width: 480px;
}
.footer__newsletter-title {
  font-size: 1rem;
  font-weight: 700;
  color: #3f3f40;
  margin-bottom: 16px;
}
.footer__newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__newsletter-form input[type="text"],
.footer__newsletter-form input[type="email"] {
  padding: 12px 14px;
  border: 1px solid rgba(13,13,13,0.15);
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.875rem;
  background: #fff;
  color: #3f3f40;
  transition: border-color var(--transition);
}
.footer__newsletter-form input::placeholder { color: #979899; }
.footer__newsletter-form input:focus {
  outline: none;
  border-color: #3f3f40;
}
.footer__newsletter-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.78rem;
  color: #656667;
  cursor: pointer;
}
.footer__newsletter-check input { margin-top: 3px; accent-color: var(--clr-accent); }
.footer__newsletter-btn {
  padding: 12px 28px;
  background: var(--clr-accent) !important;
  border-color: var(--clr-accent) !important;
  color: #fff;
  align-self: flex-start;
  border-radius: 4px;
  font-weight: 600;
  transition: all var(--transition);
}
.footer__newsletter-btn:hover {
  background: #9a1216 !important;
  border-color: #9a1216 !important;
}

.footer__mid {
  display: grid;
  grid-template-columns: auto 1fr 1fr 1fr;
  gap: 40px 36px;
  margin-bottom: 40px;
}
.footer__social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid rgba(13,13,13,0.12);
  border-radius: 8px;
  color: #656667;
  transition: all var(--transition);
}
.footer__social a:hover {
  color: var(--clr-accent);
  border-color: var(--clr-accent);
}
.footer__col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: #3f3f40;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.footer__col a,
.footer__col p {
  display: block;
  font-size: 0.85rem;
  color: #656667;
  margin-bottom: 10px;
  line-height: 1.5;
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--clr-accent); }
.footer__link--cta { font-weight: 700 !important; color: inherit !important; }
.footer__col--atendimento p { margin-bottom: 8px; }
.footer__atend-label { font-weight: 700 !important; color: #3f3f40 !important; margin-top: 10px !important; margin-bottom: 2px !important; font-size: 0.85rem !important; }

.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(13,13,13,0.1);
  text-align: center;
}
.footer__bottom-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 32px 48px;
  margin-bottom: 24px;
}
.footer__payments,
.footer__seals,
.footer__shipping {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.footer__label {
  font-size: 0.75rem;
  color: #979899;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.footer__logos {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer__logo-placeholder {
  padding: 6px 12px;
  background: #fff;
  border: 1px solid rgba(13,13,13,0.1);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #656667;
}
.footer__pay-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.12);
  flex-shrink: 0;
}
.footer__pay-icon svg {
  display: block;
}
.footer__rating-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #16A34A;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(22,163,74,0.3);
}
.footer__credits {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: #979899;
}
.footer__credit-item {
  display: flex; align-items: center; gap: 5px;
}
.footer__credit-item span { font-size: 0.72rem; color: #979899; }
.footer__credit-brand { font-size: 0.78rem; font-weight: 700; color: #374151; letter-spacing: .5px; }
.footer__seal-badge { display: inline-flex; border-radius: 5px; overflow: hidden; box-shadow: 0 1px 4px rgba(0,0,0,0.1); }
.footer__copyright {
  font-size: 0.78rem;
  color: #979899;
  margin: 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.footer__text {
  font-size: 0.88rem;
  color: #9CA3AF;
  line-height: 1.7;
}

/* ============================================================
   COOKIE BAR
   ============================================================ */
.cookie-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  color: #3f3f40;
  padding: 16px 43px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 2000;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.08);
  border-top: 1px solid rgba(13,13,13,0.1);
}
.cookie-bar.hidden { display: none; }
.cookie-bar p {
  font-size: 0.875rem;
  color: #3f3f40;
  margin: 0;
  line-height: 1.5;
}
.cookie-bar a { color: var(--clr-accent); text-decoration: underline; font-weight: 600; }
.cookie-bar .btn {
  border-radius: 4px;
  padding: 10px 24px;
  font-size: 0.82rem;
  white-space: nowrap;
  background: var(--clr-accent);
  color: #fff;
  border-color: var(--clr-accent);
}

/* ============================================================
   CART SIDEBAR
   ============================================================ */
.cart-sidebar {
  position: fixed;
  top: 0; right: 0;
  width: 380px; max-width: 100%;
  height: 100vh;
  background: var(--clr-white);
  box-shadow: -8px 0 40px rgba(0,0,0,0.15);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.cart-sidebar.open { transform: translateX(0); }
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 2999;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }

.cart-empty { text-align: center; padding: 48px 24px; color: var(--clr-mid); }
.cart-empty svg { margin-bottom: 14px; opacity: 0.3; }
.cart-empty p { font-weight: 600; margin-bottom: 4px; }
.cart-item {
  display: flex; gap: 14px; padding: 14px 0;
  border-bottom: 1px solid var(--clr-border);
  transition: background var(--transition);
}
.cart-item:hover { background: #FAFAFA; }
.cart-item__img-wrap { flex: 0 0 64px; }
.cart-item__img { width: 64px; height: 64px; object-fit: contain; border-radius: 10px; background: var(--clr-bg); }
.cart-item__info { flex: 1; min-width: 0; }
.cart-item__name { font-size: 0.85rem; font-weight: 600; display: block; margin-bottom: 4px; color: var(--clr-dark); }
.cart-item__details { font-size: 0.73rem; color: var(--clr-mid); margin-bottom: 4px; }
.cart-item__price { font-weight: 700; color: var(--clr-teal); margin-bottom: 8px; font-size: 0.95rem; }
.cart-item__qty { display: flex; align-items: center; gap: 6px; }
.cart-qty-btn {
  width: 30px; height: 30px;
  border: 1px solid var(--clr-border);
  border-radius: 8px; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.cart-qty-btn:hover { border-color: var(--clr-teal); color: var(--clr-teal); }
.cart-item__remove { padding: 4px; color: var(--clr-mid); transition: color var(--transition); }
.cart-item__remove:hover { color: #dc2626; }
.cart-sidebar__head,
.cart-sidebar__header {
  flex-shrink: 0;
  padding: 22px 24px;
  border-bottom: 1px solid var(--clr-border);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.cart-sidebar__head h3,
.cart-sidebar__header h3,
.cart-sidebar__title { font-size: 1.1rem; font-weight: 700; color: var(--clr-dark); margin-bottom: 2px; }
.cart-close {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--clr-mid);
  transition: color var(--transition);
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
}
.cart-close:hover { color: var(--clr-dark); background: #F3F4F6; }
.cart-sidebar__items,
.cart-sidebar__body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 16px 24px;
}
.cart-sidebar__footer {
  flex-shrink: 0;
  padding: 20px 24px;
  border-top: 1px solid var(--clr-border);
  background: var(--clr-white);
}
.cart-total { margin-bottom: 12px; font-size: 1rem; }

/* Cart shipping */
.cart-shipping { margin-bottom: 14px; }
.cart-shipping__label { display: block; font-size: 0.85rem; font-weight: 600; color: #374151; margin-bottom: 8px; }
.cart-shipping__row { display: flex; gap: 8px; }
.cart-shipping__input {
  flex: 1;
  padding: 11px 14px;
  border: 1px solid var(--clr-border);
  border-radius: 10px;
  font-size: 0.88rem;
  transition: border-color var(--transition);
}
.cart-shipping__input:focus { outline: none; border-color: var(--clr-teal); }
.cart-shipping__input::placeholder { color: #9CA3AF; }
.cart-shipping__btn {
  padding: 11px 18px;
  background: #fff;
  border: 1px solid var(--clr-border);
  border-radius: 10px;
  font-size: 0.88rem; font-weight: 600;
  color: #374151;
  cursor: pointer;
  transition: all var(--transition);
}
.cart-shipping__btn:hover { background: #F5F5F5; border-color: #CCC; }

/* Cart shipping options */
.cart-shipping-options { margin-top: 10px; }
.cart-shipping-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  cursor: pointer;
  border-bottom: 1px solid var(--clr-border);
}
.cart-shipping-opt:last-child { border-bottom: none; }
.cart-shipping-opt input[type="radio"] {
  flex-shrink: 0;
  width: 16px; height: 16px;
  margin: 0;
  accent-color: var(--clr-teal);
  cursor: pointer;
}
.cart-shipping-opt__info {
  flex: 1; min-width: 0;
  font-size: 0.82rem; line-height: 1.4; color: var(--clr-mid);
}
.cart-shipping-opt__info strong { color: var(--clr-dark); font-weight: 600; }
.cart-shipping-opt__price {
  flex-shrink: 0;
  font-size: 0.82rem; font-weight: 700; color: var(--clr-dark);
}

/* Cart summary */
.cart-summary { margin-bottom: 14px; }
.cart-summary__row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.9rem; color: #4B5563;
  padding: 5px 0;
}
.cart-summary__row.cart-summary__total { font-weight: 700; font-size: 1.05rem; color: var(--clr-dark); }
.cart-checkout-btn {
  width: 100%;
  margin-top: 4px;
  background: #1C2B4A;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background var(--transition);
}
.cart-checkout-btn:hover {
  background: #142038;
}
.cart-sidebar__count {
  display: block; font-size: 0.78rem; color: var(--clr-mid); font-weight: 400; margin-top: 2px;
}
.cart-summary__pix span {
  display: flex; align-items: center; gap: 5px; font-size: 0.82rem; color: #16a34a; font-weight: 600;
}
.cart-summary__pix strong { font-size: 0.82rem; }
.cart-keep-buying {
  display: block; width: 100%; margin-top: 10px;
  background: none; border: none; padding: 10px;
  font-size: 0.85rem; color: var(--clr-teal); font-weight: 600;
  cursor: pointer; text-align: center; font-family: inherit;
  text-decoration: underline; transition: color var(--transition);
}
.cart-keep-buying:hover { color: var(--clr-dark); }

/* ============================================================
   LOGIN MODAL
   ============================================================ */
.login-modal {
  position: fixed; inset: 0;
  z-index: 4000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .3s ease, visibility .3s ease;
}
.login-modal--open {
  opacity: 1; visibility: visible; pointer-events: auto;
}
.login-modal__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.login-modal__box {
  position: relative;
  width: 100%; max-width: 420px;
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--shadow-xl);
  animation: fadeInUp 0.3s ease;
}
.login-modal__close {
  position: absolute; top: 18px; right: 18px;
  font-size: 1.4rem; line-height: 1;
  color: #C4C4C4;
  padding: 6px;
  border-radius: 8px;
  transition: all var(--transition);
}
.login-modal__close:hover { color: #374151; background: #F3F4F6; }
.login-modal__title {
  font-size: 1.35rem; font-weight: 700; color: var(--clr-dark);
  margin-bottom: 28px;
}
.login-modal__field {
  margin-bottom: 18px;
}
.login-modal__field label {
  display: block;
  font-size: 0.84rem; font-weight: 600; color: #4B5563;
  margin-bottom: 6px;
}
.login-modal__field input {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--clr-border);
  border-radius: 12px;
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.login-modal__field input:focus {
  outline: none;
  border-color: var(--clr-teal);
  box-shadow: 0 0 0 3px rgba(11,158,142,.15);
}
.login-modal__btn {
  width: 100%;
  padding: 14px;
  background: var(--clr-accent);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 0.95rem; font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
  transition: all var(--transition);
}
.login-modal__btn:hover {
  background: #9a1216;
}
.login-modal__hint {
  font-size: 0.76rem; color: #9CA3AF;
  margin-top: 18px; text-align: center;
}

/* Login user dropdown */
.login-user-wrap { position: relative; }
.login-user-btn {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.84rem; font-weight: 500;
  color: #4B5563;
  padding: 8px 14px;
  border: none; background: none;
  cursor: pointer;
  border-radius: 10px;
  transition: all var(--transition);
}
.login-user-btn:hover { color: var(--clr-teal); background: rgba(11,158,142,0.05); }
.login-user-email {
  max-width: 140px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.login-user-dropdown {
  display: none;
  position: absolute; top: 100%; right: 0;
  margin-top: 6px;
  min-width: 230px;
  background: #fff;
  border: 1px solid var(--clr-border);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 14px;
  z-index: 100;
}
.login-user-dropdown.open { display: block; }
.login-user-dropdown__email {
  display: block;
  font-size: 0.78rem; color: var(--clr-mid);
  padding-bottom: 10px; margin-bottom: 10px;
  border-bottom: 1px solid var(--clr-border);
  word-break: break-all;
}
.login-user-dropdown__logout {
  width: 100%;
  padding: 9px 14px;
  background: #F5F5F5;
  border: none;
  border-radius: 10px;
  font-size: 0.84rem; font-weight: 600;
  color: #4B5563;
  cursor: pointer;
  transition: all var(--transition);
}
.login-user-dropdown__logout:hover { background: #FEE2E2; color: #dc2626; }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 2100;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: all var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 1500;
  width: 44px;
  height: 44px;
  background: var(--clr-white);
  color: var(--clr-dark);
  border: 1px solid var(--clr-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--clr-teal);
  color: var(--clr-white);
  border-color: var(--clr-teal);
  box-shadow: 0 4px 16px rgba(11,158,142,0.3);
  transform: translateY(-2px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .products--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .header__main { padding: 0 16px; }
  .header__row { flex-wrap: wrap; height: auto; padding: 12px 16px; }
  .header__inner { flex-wrap: wrap; height: auto; padding: 12px 0; justify-content: space-between; }
  .header__actions { gap: 16px; }
  .search { max-width: none; order: 3; width: 100%; }
  .search-area, .search-wrap { max-width: none; order: 3; width: 100%; }
  .products--3 { grid-template-columns: repeat(2, 1fr); }
  .products--scroll .product { flex: 0 0 200px; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__mid { grid-template-columns: 1fr; }
  .footer__social { flex-direction: row; }
  .footer__bottom-row { flex-direction: column; gap: 20px; }
  .footer__logos { flex-wrap: wrap; }
  .cookie-bar { flex-direction: column; align-items: flex-start; padding: 14px 16px; gap: 12px; }
  .cookie-bar p { font-size: 0.8rem; }
  .cookie-bar .btn { width: 100%; text-align: center; justify-content: center; }
  .navbar__inner { padding: 0 16px; }
  .topbar__inner { padding: 0 16px; }
  /* inovacao tabs scrollable */
  .inovacao-tabs { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .inovacao-tabs::-webkit-scrollbar { display: none; }
  .inovacao-tab { white-space: nowrap; flex-shrink: 0; }
  /* hide scrollbar on product scroll sections */
  .products--scroll { -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .products--scroll::-webkit-scrollbar { display: none; }
  /* search overlay height fix on mobile */
  .search-overlay { max-height: calc(100vh - 160px); }
  /* section spacing */
  .section { padding: 32px 0; }
  /* heart button touch target */
  .aniv-card__heart { width: 36px; height: 36px; }
  /* product card adjustments */
  .product__info { padding: 10px; }
  .product__name { font-size: 0.78rem; }
  /* section title */
  .section__title { font-size: 1.2rem; }
  /* inspire banner */
  .inovacao-banner { min-height: 260px; }
  .inovacao-banner__products { gap: 10px; }
  /* footer bottom */
  .footer__credits { justify-content: center; }
  .footer__copyright { text-align: center; font-size: 0.75rem; }

  /* Mobile burger + nav */
  .burger { display: flex; align-items: center; justify-content: center; }
  .nav__list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--clr-white);
    flex-direction: column;
    padding: 0;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    z-index: 1100;
    border-radius: 0 0 16px 16px;
    animation: fadeInUp 0.3s ease;
  }
  .nav__list.open {
    display: flex;
  }
  .nav__list .nav__item { width: 100%; }
  .nav__list .nav__item > a {
    padding: 14px 20px;
    border-bottom: 1px solid var(--clr-border);
  }
  .nav__list .nav__item > a::after { display: none; }

  /* Dropdown on mobile */
  .dropdown {
    position: static;
    display: none;
    min-width: auto;
    box-shadow: none;
    background: var(--clr-bg);
    border-radius: 0;
    padding: 0 0 12px 20px;
  }
  .nav__item--dropdown.open .dropdown { display: block; opacity: 1; transform: none; }
  .nav__item--dropdown:hover .dropdown { display: none; }
  .nav__item--dropdown.open .dropdown { display: block; }
  .dropdown--mega {
    position: static;
    transform: none;
    min-width: auto;
    flex-direction: column;
  }
  .nav__item--dropdown:hover .dropdown--mega,
  .nav__item--dropdown.open .dropdown--mega {
    transform: none;
  }
  .dropdown__banner { min-height: 120px; }
  .dropdown__banner-img { width: 100px; }
}
@media (max-width: 480px) {
  .topbar__inner { flex-direction: column; height: auto; padding: 8px 16px; gap: 6px; }
  .header__link span, .action-btn span { display: none; }
  .section { padding: 28px 0; }
  .hero__bar { padding: 8px 16px; font-size: 0.7rem; }
  .whatsapp-float { bottom: 80px; right: 16px; width: 50px; height: 50px; font-size: 1.4rem; }
  .back-to-top { bottom: 140px; right: 16px; width: 40px; height: 40px; }
  /* 2 cards per row on small mobile */
  .aniv-card { flex: 0 0 calc(50% - 5px); }
  .aniv-card__body { padding: 5px 8px 10px; }
  .aniv-card__name { font-size: 0.72rem; }
  .aniv-card__price { font-size: 0.88rem; }
  .aniv-card__installments { font-size: 0.65rem; }
  /* products scroll */
  .products--scroll .product { flex: 0 0 160px; }
  .products--3 { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  /* footer */
  .footer { padding: 32px 0 16px; }
  .footer__pay-icon svg { width: 36px !important; height: 22px !important; }
  /* section title */
  .section__title { font-size: 1.05rem; }
  .section__desc { font-size: 0.82rem; }
  /* hero campaign bar */
  .hero__campaign { font-size: 0.68rem; letter-spacing: 0; }
}

/* ============================================================
   MOBILE FIXES — touch targets, positioning, overflow
   ============================================================ */

/* WhatsApp e back-to-top acima da cookie bar no celular (768px) */
@media (max-width: 768px) {
  .whatsapp-float { bottom: 80px; }
  .back-to-top { bottom: 148px; }

  /* Burger: área de toque mínima 44px */
  .burger { min-width: 44px; min-height: 44px; }

  /* Qty buttons no carrinho: área de toque mínima */
  .cart-qty__btn { width: 40px; height: 40px; font-size: 18px; }
  .cart-qty__val { width: 40px; }

  /* Impede scroll horizontal indesejado */
  body { overflow-x: hidden; }

  /* Carrinho lateral não vaza */
  .cart-sidebar { max-width: 100vw; }

  /* Swatches de cor maiores */
  .aniv-swatch { width: 26px !important; height: 26px !important; }

  /* Botão heart maior */
  .aniv-card__heart { width: 40px !important; height: 40px !important; }

  /* Carousel arrows não cortam nas bordas */
  .aniv-arrow { left: 0 !important; right: 0 !important; }
}
