/* ============================================================
   RSM Supri — style.css
   Tema claro · azul + branco + laranja (inspirado nos grandes
   e-commerces de tecnologia) · Inter + Space Grotesk
   Mobile-first
   ============================================================ */

:root {
  --blue: #1553c7;
  --blue-deep: #0b2d75;
  --blue-navy: #0a1c45;
  --blue-soft: #e8effc;
  --accent: #ff6a00;
  --accent-2: #ff8c38;
  --bg: #f4f6fa;
  --surface: #ffffff;
  --border: #e2e8f2;
  --text: #131c2e;
  --dim: #5c6b84;
  --whats: #25d366;
  --whats-dark: #16a34a;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(19, 28, 46, 0.10);
  --shadow-lg: 0 18px 44px rgba(19, 28, 46, 0.16);
  --header-h: 68px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, .logo-name, .stat-num, .slide-title {
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
}

.container { width: min(1160px, 100% - 40px); margin-inline: auto; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img, svg { display: block; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 8px 22px rgba(255, 106, 0, 0.35);
}
.btn-primary:hover { box-shadow: 0 12px 30px rgba(255, 106, 0, 0.45); }

.btn-dark {
  background: var(--blue-navy);
  color: #fff;
  box-shadow: 0 8px 22px rgba(10, 28, 69, 0.35);
}

.btn-outline {
  background: #fff;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover { background: var(--blue-soft); }

.btn-lg { padding: 15px 32px; font-size: 1.02rem; }
.btn-block { width: 100%; }

.btn-whats-sm {
  flex: 0 0 46px !important;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.5);
  color: var(--whats-dark);
}
.btn-whats-sm:hover { background: rgba(37, 211, 102, 0.25); }

.grad-text {
  background: linear-gradient(135deg, var(--blue), #3f8cff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  background: linear-gradient(90deg, var(--blue-deep), var(--blue));
  transition: box-shadow 0.25s ease;
}
.header.scrolled { box-shadow: 0 8px 26px rgba(10, 28, 69, 0.35); }

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 100%;
}

.logo { display: flex; align-items: center; gap: 11px; }
.logo-icon { width: 42px; height: 42px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name { font-weight: 700; font-size: 1.15rem; letter-spacing: 0.02em; color: #fff; }
.logo-name em { font-style: normal; color: #ffb15e; }
.logo-tag {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.nav { display: none; }

.header-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }

.cart-btn {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: grid;
  place-items: center;
  transition: background 0.2s;
}
.cart-btn:hover { background: rgba(255, 255, 255, 0.22); }
.cart-btn svg { width: 20px; height: 20px; }

.cart-badge {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  display: grid;
  place-items: center;
}
.cart-badge.pop { animation: badgePop 0.4s ease; }
@keyframes badgePop {
  0% { transform: scale(1); }
  40% { transform: scale(1.5); }
  100% { transform: scale(1); }
}

.menu-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  margin: 2.5px 0;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero fixo (faixa slim) ---------- */
.hero-static {
  position: relative;
  overflow: hidden;
  margin-top: var(--header-h);
  background:
    radial-gradient(560px 280px at 88% -50%, rgba(255, 255, 255, 0.16), transparent 62%),
    radial-gradient(480px 240px at -4% 130%, rgba(47, 123, 255, 0.55), transparent 62%),
    linear-gradient(115deg, #0b2d75, #1553c7 58%, #2f7bff);
}
.hero-static::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.3;
  pointer-events: none;
}
.hero-static::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2) 45%, transparent 85%);
}
.hero-static-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding-block: 22px 26px;
}
.hero-static-text { color: #fff; max-width: 62ch; }
.hero-static .slide-tag {
  margin-bottom: 8px;
  padding: 4px 12px;
  font-size: 0.72rem;
}
.hero-static-text h1 {
  font-size: clamp(1.25rem, 2.8vw, 1.7rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.hero-static-text h1 em { font-style: normal; color: #ffc36b; }
.hero-static-text > p { opacity: 0.85; font-size: 0.9rem; margin-bottom: 0; }

.hero-static-cta { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-static .btn-lg { padding: 11px 22px; font-size: 0.9rem; }
.hero-static .btn-outline { background: rgba(255, 255, 255, 0.1); color: #fff; border-color: rgba(255, 255, 255, 0.55); }
.hero-static .btn-outline:hover { background: rgba(255, 255, 255, 0.2); }

@media (min-width: 900px) {
  .hero-static-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    padding-block: 24px 28px;
  }
  .hero-static-cta { flex-shrink: 0; }
}

/* ---------- Carrossel de banners ---------- */
.hero-carousel { margin-top: var(--header-h); }

.carousel {
  position: relative;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease;
}
.slide.active { position: relative; inset: auto; opacity: 1; pointer-events: auto; }

.slide-blue { background: linear-gradient(120deg, #0b2d75, #1553c7 55%, #2f7bff); }
.slide-orange { background: linear-gradient(120deg, #b34a00, #ff6a00 55%, #ff9445); }
.slide-teal { background: linear-gradient(120deg, #083344, #0e7490 55%, #14b8c4); }

.slide-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  padding-block: 30px 64px;
}

.slide-text { color: #fff; max-width: 56ch; }
.slide-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 14px;
}
.slide-text h1,
.slide-title {
  font-size: clamp(1.5rem, 4.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.slide-text h1 em { font-style: normal; color: #ffc36b; }
.slide-text > p:not(.slide-title) { opacity: 0.92; margin-bottom: 18px; font-size: 1.02rem; }

.slide-features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-bottom: 22px;
}
.slide-features li {
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 5px 12px;
  border-radius: 999px;
}

.slide-media {
  position: relative;
  align-self: center;
  flex-shrink: 0;
}
.slide-img {
  width: min(300px, 70vw);
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  object-fit: contain;
  box-shadow: var(--shadow-lg);
}

.slide-badge {
  position: absolute;
  top: -12px;
  right: -10px;
  z-index: 2;
  background: var(--blue-navy);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  white-space: nowrap;
}
.slide-badge-price {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.05;
  font-size: 1.15rem;
  padding: 8px 16px;
}
.slide-badge-price small { font-size: 0.62rem; font-weight: 600; opacity: 0.9; }

.slide-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
}
.slide-deco-1 {
  width: 320px;
  height: 320px;
  top: -120px;
  right: -60px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 70%);
}
.slide-deco-2 {
  width: 240px;
  height: 240px;
  bottom: -110px;
  left: -40px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 70%);
}

.slide.active .slide-text { animation: fadeUp 0.6s ease both; }
.slide.active .slide-media { animation: floatIn 0.7s ease both, floatY 5s ease-in-out 0.7s infinite; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes floatIn {
  from { opacity: 0; transform: translateX(40px) scale(0.95); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.car-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  color: var(--blue-deep);
  font-size: 1.5rem;
  line-height: 1;
  box-shadow: var(--shadow);
  transition: background 0.2s;
}
.car-arrow:hover { background: #fff; }
.car-prev { left: 12px; }
.car-next { right: 12px; }

.car-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 8px;
}
.car-dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.45);
  transition: width 0.25s, background 0.25s;
}
.car-dots button.active { width: 26px; background: #fff; }

.car-note {
  position: absolute;
  right: 8px;
  bottom: 10px;
  z-index: 5;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
}

/* ---------- Faixa de benefícios ---------- */
.benefit-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.benefit-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
}
.benefit-inner span { font-size: 0.85rem; font-weight: 600; color: var(--dim); }

/* ---------- Estatísticas ---------- */
.stats-strip { padding: 34px 0 10px; }
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 64px;
}
.stat { display: flex; flex-direction: column; align-items: center; }
.stat-num {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--blue), #3f8cff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label { color: var(--dim); font-size: 0.85rem; font-weight: 500; }

/* ---------- Faixa de marcas ---------- */
.brands-strip { padding: 26px 0 6px; text-align: center; }
.brands-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 14px;
}
.brands-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.brand-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 100px;
  height: 52px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  box-shadow: 0 2px 8px rgba(19, 28, 46, 0.05);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.brand-item:hover {
  transform: translateY(-3px);
  border-color: var(--blue);
  box-shadow: 0 8px 20px rgba(19, 28, 46, 0.12);
}

.brand-logo {
  max-height: 20px;
  max-width: 92px;
  width: auto;
  height: auto;
  object-fit: contain;
}
/* logos que são só símbolo, acompanhados do nome escrito */
.brand-logo-mark { max-height: 24px; max-width: 26px; }
/* logos mais verticais (símbolo + texto) ganham mais altura */
.brand-logo-tall { max-height: 30px; }
/* logos extraídos de fotos: fundo escuro vira um selo arredondado */
.brand-logo-boxed {
  max-height: 26px;
  max-width: 84px;
  border-radius: 5px;
}
.brand-name { white-space: nowrap; }

/* ---------- Seções ---------- */
.section { padding: 64px 0; }

.section-title {
  font-size: clamp(1.5rem, 3.6vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.section-sub { color: var(--dim); margin-bottom: 34px; max-width: 62ch; }

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Catálogo: abertura e navegação por categoria ---------- */
.catalog-intro { padding-bottom: 30px; }

.cat-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}
.cat-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(19, 28, 46, 0.05);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.cat-nav-link:hover {
  transform: translateY(-3px);
  border-color: var(--blue);
  box-shadow: var(--shadow);
}
.cat-nav-ico {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--blue-soft);
  display: grid;
  place-items: center;
  font-size: 1.15rem;
}
.cat-nav-link-alt .cat-nav-ico { background: #fff1e3; }
.cat-nav-txt {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.25;
}
.cat-nav-txt small { font-weight: 500; font-size: 0.76rem; color: var(--dim); }

/* ---------- Seções de categoria ---------- */
.cat-section { padding: 44px 0 52px; scroll-margin-top: calc(var(--header-h) + 8px); }
.cat-section:nth-child(even) {
  background: linear-gradient(180deg, #eef2f9, #f7f9fd);
  border-block: 1px solid var(--border);
}

.cat-banner {
  position: relative;
  min-height: 190px;
  display: flex;
  align-items: center;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 26px;
  box-shadow: var(--shadow);
}
.cat-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.cat-banner:hover .cat-banner-bg { transform: scale(1.04); }
.cat-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(7, 24, 58, 0.95) 22%, rgba(7, 24, 58, 0.66) 58%, rgba(7, 24, 58, 0.15));
}
.cat-banner::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 5px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
}

.cat-banner-body {
  position: relative;
  z-index: 3;
  padding: 26px 28px;
  max-width: 620px;
  color: #fff;
}
.cat-banner-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffc36b;
  margin-bottom: 6px;
}
.cat-banner-body h3 {
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.cat-banner-body p { color: rgba(255, 255, 255, 0.86); font-size: 0.92rem; margin-bottom: 14px; }

.cat-banner-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.cat-banner-count {
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.78rem;
  font-weight: 700;
}
.cat-banner-brands {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
}

/* ---------- Chamada final do catálogo (locação) ---------- */
.catalog-cta {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 200px;
  margin: 8px 0 56px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.catalog-cta:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.catalog-cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.catalog-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(11, 45, 117, 0.95) 25%, rgba(11, 45, 117, 0.6) 60%, rgba(11, 45, 117, 0.15));
}
.catalog-cta-body {
  position: relative;
  z-index: 2;
  padding: 30px 28px;
  max-width: 600px;
  color: #fff;
}
.catalog-cta-body h3 { font-size: 1.45rem; font-weight: 700; margin-bottom: 6px; }
.catalog-cta-body p { color: rgba(255, 255, 255, 0.86); font-size: 0.92rem; margin-bottom: 16px; }
.catban-btn { padding: 10px 22px; font-size: 0.88rem; }

.product-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }

.product-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  animation: cardIn 0.4s ease both;
}
@keyframes cardIn {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(21, 83, 199, 0.5);
  box-shadow: var(--shadow-lg);
}

.product-emoji { font-size: 2.4rem; }

.product-img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 4px;
}

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

.product-cat {
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-soft);
  border: 1px solid rgba(21, 83, 199, 0.25);
  padding: 3px 10px;
  border-radius: 999px;
}

.product-brand {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 999px;
}

.product-details-link {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.product-card:hover .product-details-link,
.product-card:focus .product-details-link { opacity: 1; }

.product-name { font-size: 1.02rem; font-weight: 700; line-height: 1.3; }
.product-desc { color: var(--dim); font-size: 0.88rem; flex-grow: 1; }

.product-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
  font-family: "Space Grotesk", "Inter", sans-serif;
}
.price-ask { font-size: 1.05rem; font-weight: 700; color: var(--blue); }

.product-actions { display: flex; gap: 10px; margin-top: 8px; }
.product-actions .btn { flex: 1; padding: 11px 14px; font-size: 0.86rem; }
.product-actions .btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 64px 24px;
  border-radius: var(--radius);
  border: 1px dashed var(--border);
  background: var(--surface);
}
.empty-state .empty-emoji { font-size: 3rem; display: block; margin-bottom: 14px; }
.empty-state h3 { font-size: 1.2rem; margin-bottom: 8px; }
.empty-state p { color: var(--dim); max-width: 46ch; margin: 0 auto 22px; }

/* ---------- Locação ---------- */
.rental { background: var(--blue-soft); }
.rental-inner { display: grid; gap: 36px; align-items: center; }

.rental-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.rental-list li {
  padding: 14px 18px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-weight: 500;
  font-size: 0.95rem;
  box-shadow: 0 2px 10px rgba(19, 28, 46, 0.05);
}

.rental-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 18px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.rental-photo {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 14px;
}
.rental-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.rental-tags span {
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-soft);
  border: 1px solid rgba(21, 83, 199, 0.3);
}

/* ---------- Sobre ---------- */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.about-card {
  padding: 26px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.about-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.about-icon { font-size: 1.9rem; display: block; margin-bottom: 12px; }
.about-card h3 { font-size: 1.02rem; margin-bottom: 6px; }
.about-card p { color: var(--dim); font-size: 0.9rem; }

/* ---------- Contato ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }

.contact-form {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row { display: grid; grid-template-columns: 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--dim); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #f8fafd;
  color: var(--text);
  font-family: inherit;
  font-size: 0.93rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(21, 83, 199, 0.15);
  background: #fff;
}

.contact-info { display: grid; grid-template-columns: 1fr; gap: 16px; align-content: start; }
.info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
}
.info-icon { font-size: 1.5rem; }
.info-card h4 { font-size: 0.92rem; margin-bottom: 3px; }
.info-card p { color: var(--dim); font-size: 0.9rem; }
.info-card a:hover { color: var(--blue); }

/* ---------- Footer ---------- */
.footer { background: var(--blue-navy); color: #e8eeff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-block: 52px 40px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-desc { color: #9db0d6; font-size: 0.92rem; max-width: 34ch; margin-bottom: 18px; }

.socials { display: flex; gap: 10px; }
.socials a {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  color: #b8c6e8;
  transition: all 0.2s ease;
}
.socials a:hover { color: #fff; border-color: #fff; transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; }

.footer h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9db0d6;
  margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; font-size: 0.92rem; color: #9db0d6; }
.footer-links a { color: #e8eeff; }
.footer-links a:hover { color: #ffb15e; }

.pay-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.pay-badges span {
  padding: 6px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.8rem;
  font-weight: 600;
}
.pay-note { color: #9db0d6; font-size: 0.8rem; max-width: 30ch; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 0;
  text-align: center;
  color: #9db0d6;
  font-size: 0.84rem;
}

/* ---------- Carrinho (sidebar) ---------- */
.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 20, 45, 0.55);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.cart-overlay.show { opacity: 1; }

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 210;
  width: min(420px, 92vw);
  background: var(--surface);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transform: translateX(105%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: -20px 0 60px rgba(10, 20, 45, 0.25);
}
.cart-sidebar.open { transform: translateX(0); }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--border);
}
.cart-header h3 { font-size: 1.1rem; }
.cart-close {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-size: 1rem;
  transition: all 0.2s;
}
.cart-close:hover { border-color: var(--blue); color: var(--blue); }

.cart-items { flex: 1; overflow-y: auto; padding: 18px 24px; display: flex; flex-direction: column; gap: 14px; }

.cart-empty { text-align: center; color: var(--dim); padding: 48px 12px; }
.cart-empty .empty-emoji { font-size: 2.6rem; display: block; margin-bottom: 12px; }

.cart-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 12px;
  background: var(--bg);
  border: 1px solid var(--border);
}
.ci-emoji { font-size: 1.7rem; }
.ci-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 4px;
  flex-shrink: 0;
}
.ci-info { flex: 1; min-width: 0; }
.ci-name { font-size: 0.88rem; font-weight: 600; line-height: 1.3; }
.ci-price { color: var(--accent); font-size: 0.85rem; font-weight: 700; }

.ci-qty { display: flex; align-items: center; gap: 8px; }
.ci-qty button {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-weight: 700;
  line-height: 1;
  transition: all 0.15s;
}
.ci-qty button:hover { border-color: var(--blue); color: var(--blue); }
.ci-qty span { min-width: 18px; text-align: center; font-weight: 700; font-size: 0.9rem; }

.ci-remove {
  border: none;
  background: none;
  color: var(--dim);
  font-size: 1rem;
  padding: 4px;
  transition: color 0.15s;
}
.ci-remove:hover { color: #e11d48; }

.cart-footer { padding: 20px 24px 26px; border-top: 1px solid var(--border); }
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
  font-size: 0.95rem;
  color: var(--dim);
}
.cart-total strong {
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 800;
  font-family: "Space Grotesk", "Inter", sans-serif;
}
.cart-note { margin-top: 12px; text-align: center; color: var(--dim); font-size: 0.78rem; }

/* ---------- Modal de produto ---------- */
.product-modal[hidden] { display: none; }

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(10, 20, 45, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.product-modal.show { opacity: 1; }

.modal-dialog {
  position: relative;
  width: min(880px, 100%);
  max-height: min(90vh, 720px);
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  transform: translateY(14px) scale(0.98);
  transition: transform 0.25s ease;
}
.product-modal.show .modal-dialog { transform: translateY(0) scale(1); }

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font-size: 1rem;
  transition: all 0.2s;
}
.modal-close:hover { border-color: var(--blue); color: var(--blue); }

.modal-media {
  background: #fff;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 26px;
  border-radius: 20px 20px 0 0;
}
.modal-media img {
  max-width: 100%;
  max-height: 260px;
  object-fit: contain;
}
.modal-illustrative {
  margin-top: 12px;
  font-size: 0.72rem;
  color: var(--dim);
  text-align: center;
  max-width: 34ch;
}

.modal-info {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.modal-info h3 { font-size: 1.3rem; line-height: 1.25; }
.modal-long { color: var(--dim); font-size: 0.93rem; }

.modal-specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.modal-specs li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 12px;
  padding: 9px 14px;
  font-size: 0.86rem;
}
.modal-specs li:nth-child(odd) { background: #f5f8fc; }
.modal-specs li span { color: var(--dim); font-weight: 500; }
.modal-specs li strong { font-weight: 600; }

.modal-trust { display: flex; flex-wrap: wrap; gap: 8px; }
.modal-trust span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--dim);
  border: 1px solid var(--border);
  background: var(--bg);
  padding: 6px 12px;
  border-radius: 999px;
}

.modal-buy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.modal-price-box { display: flex; flex-direction: column; }
.modal-price-label { color: var(--dim); font-size: 0.78rem; font-weight: 500; }
.modal-price {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--accent);
  font-family: "Space Grotesk", "Inter", sans-serif;
}

.modal-actions { display: flex; gap: 10px; }
.modal-actions .btn:disabled { opacity: 0.45; cursor: not-allowed; }

/* ---------- WhatsApp flutuante ---------- */
.whats-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 150;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whats);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease;
  animation: whatsPulse 2.6s ease-in-out infinite;
}
.whats-float:hover { transform: scale(1.1); }
.whats-float svg { width: 30px; height: 30px; }
@keyframes whatsPulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.35); }
  50% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45), 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* ---------- Menu mobile ---------- */
@media (max-width: 899px) {
  .nav {
    display: flex;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    z-index: 99;
    flex-direction: column;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 10px 0 16px;
    transform: translateY(-130%);
    transition: transform 0.3s ease;
  }
  .nav.open { transform: translateY(0); }
  .nav-link { padding: 13px 28px; font-weight: 600; color: var(--text); }
  .nav-link.active, .nav-link:hover { color: var(--blue); }
}

/* ---------- Tablet ≥ 640px ---------- */
@media (min-width: 640px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr 1fr; }
  .contact-info { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-banner-body,
  .catalog-cta-body { padding: 34px 42px; }
}

/* ---------- Desktop ≥ 900px ---------- */
@media (min-width: 900px) {
  .menu-btn { display: none; }
  .nav { display: flex; gap: 4px; margin-left: auto; }
  .nav-link {
    padding: 8px 16px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-size: 0.92rem;
    transition: color 0.2s, background 0.2s;
  }
  .nav-link:hover { color: #fff; }
  .nav-link.active { color: #fff; background: rgba(255, 255, 255, 0.16); }
  .header-actions { margin-left: 0; }

  .slide-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    min-height: 430px;
    padding-block: 24px 48px;
  }
  .slide-img { width: 340px; align-self: center; }

  .rental-inner { grid-template-columns: 1.15fr 1fr; }
  .contact-grid { grid-template-columns: 1.3fr 1fr; }
  .contact-info { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1.3fr 1fr; }

  .modal-dialog { grid-template-columns: 1fr 1.15fr; }
  .modal-media {
    border-bottom: none;
    border-right: 1px solid var(--border);
    border-radius: 20px 0 0 20px;
    padding: 30px;
  }
  .modal-media img { max-height: 340px; }
}

/* ---------- Desktop ≥ 1100px ---------- */
@media (min-width: 1100px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Acessibilidade ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
