/* ============================================
   Armazém das Oportunidades — Catálogo
   ============================================ */

:root {
  --azul: #1565b3;
  --azul-escuro: #0d4a85;
  --azul-claro: #e8f2fc;
  --vermelho: #d72b2b;
  --vermelho-escuro: #ad1f1f;
  --vermelho-claro: #fbe8e8;
  --mostarda: #e8a23a;
  --mostarda-escuro: #b87a1f;

  --bg: #f7f5f0;
  --bg-card: #ffffff;
  --bg-header: #ffffff;
  --texto: #221f1a;
  --texto-suave: #6b6860;
  --texto-fraco: #99958a;
  --borda: #e5e1d6;
  --borda-forte: #d4cfc0;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --sombra: 0 2px 10px rgba(34, 31, 26, 0.06);
  --sombra-hover: 0 8px 24px rgba(34, 31, 26, 0.12);

  --font-display: 'Baloo 2', 'Poppins', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--texto);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Top bar ===== */
.topbar {
  background: var(--azul-escuro);
  color: #fff;
  font-size: 13px;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 7px;
  padding-bottom: 7px;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a { opacity: 0.95; }
.topbar a:hover { text-decoration: underline; }
.topbar .topbar-contacts { display: flex; gap: 18px; flex-wrap: wrap; }
.topbar .topbar-contacts span { display: inline-flex; align-items: center; gap: 5px; }

/* ===== Header ===== */
header.site-header {
  background: var(--bg-header);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: var(--sombra);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 0;
}
.logo-link { flex-shrink: 0; }
.logo-link img {
  height: 53px;
  width: auto;
}

nav.main-nav { flex: 1; display: flex; justify-content: flex-end; }
nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
}
nav.main-nav > ul > li { position: relative; }
nav.main-nav a {
  display: block;
  padding: 10px 14px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--texto);
  border-radius: var(--radius-sm);
  white-space: nowrap;
}
nav.main-nav > ul > li > a:hover,
nav.main-nav > ul > li.active > a {
  background: var(--azul-claro);
  color: var(--azul-escuro);
}

.has-dropdown .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--sombra-hover);
  border: 1px solid var(--borda);
  padding: 8px;
  min-width: 220px;
  z-index: 60;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { display: block; }
.dropdown li a {
  padding: 9px 12px;
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius-sm);
}
.dropdown li a:hover { background: var(--azul-claro); color: var(--azul-escuro); }

.header-search {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.header-search input {
  border: 1.5px solid var(--borda-forte);
  border-radius: 999px 0 0 999px;
  padding: 9px 16px;
  font-size: 14px;
  width: 190px;
  font-family: inherit;
  border-right: none;
}
.header-search input:focus { outline: none; border-color: var(--azul); }
.header-search button {
  border: 1.5px solid var(--azul);
  background: var(--azul);
  color: #fff;
  border-radius: 0 999px 999px 0;
  padding: 0 16px;
  display: flex;
  align-items: center;
}
.header-search button:hover { background: var(--azul-escuro); }

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
}
.mobile-nav-toggle svg { width: 26px; height: 26px; }

.header-admin-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--texto-fraco);
  flex-shrink: 0;
}
.header-admin-link:hover { color: var(--azul); background: var(--azul-claro); }
.header-admin-link svg { width: 16px; height: 16px; }

/* ===== Hero ===== */
.hero {
  background: linear-gradient(135deg, var(--azul) 0%, var(--azul-escuro) 100%);
  color: #fff;
  padding: 10px 0;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 320px;
  height: 320px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: nowrap;
}
.hero-slogans {
  flex: 1 1 auto;
  text-align: left;
  padding: 8px 0;
}
.hero-slogan-1 {
  font-family: 'Baloo 2';
  font-size: 30px;
  font-weight: 500;
  color: #ff3b3b;
  line-height: 1.2;
  letter-spacing: 0px;
  margin-bottom: -10px;
  text-shadow: 0 1px 3px rgba(0,0,0,.15);
}
.hero-slogan-2 {
  font-family: var(--font-display);
  font-size: 33px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0px;
  text-transform: uppercase;
}
.hero-search {
  flex: 0 0 260px;
  display: flex;
  align-items: center;
}
.hero-search input {
  width: 100%;
  padding: 10px 14px;
  border: none;
  border-radius: 4px;
  font-size: 15px;
  color: #333;
  outline: none;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.hero-search input::placeholder {
  color: #999;
}

/* ===== Toolbar ===== */
.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 22px 0 6px;
}
.toolbar-results { font-size: 14.5px; color: var(--texto-suave); }
.toolbar-results strong { color: var(--texto); }
.toolbar-filters { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.toolbar-sort { display: flex; align-items: center; gap: 8px; font-size: 14px; }
.toolbar-sort select {
  border: 1.5px solid var(--borda-forte);
  border-radius: var(--radius-sm);
  padding: 7px 10px;
  font-family: inherit;
  font-size: 14px;
  background: #fff;
}

/* ===== Product grid ===== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 20px;
  padding: 20px 0 56px;
}

.card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--borda);
  box-shadow: var(--sombra);
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
  cursor: pointer;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sombra-hover);
}

.card-img {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #f0ede4;
  overflow: hidden;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-img .no-img {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--texto-fraco);
}
.card-img .no-img svg { width: 48px; height: 48px; }


.card-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.card-cat {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--azul);
  text-transform: uppercase;
  letter-spacing: .4px;
}
.card-title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--texto);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.7em;
}
.card-price-row {
  margin-top: auto;
  padding-top: 8px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.card-price {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  color: var(--azul-escuro);
}
.card-price.promo { color: var(--vermelho); }
.card-price-old {
  font-size: 13.5px;
  color: var(--texto-fraco);
  text-decoration: line-through;
}
.card-price-na { font-size: 13.5px; color: var(--texto-suave); font-weight: 600; }

.empty-state {
  text-align: center;
  padding: 70px 20px;
  color: var(--texto-suave);
}
.empty-state svg { width: 56px; height: 56px; margin: 0 auto 16px; opacity: .5; }
.empty-state h3 { font-family: var(--font-display); font-size: 19px; margin-bottom: 6px; color: var(--texto); }

/* ===== Load more ===== */
.load-more-wrap { text-align: center; padding-bottom: 40px; }
.btn-load-more {
  background: #fff;
  border: 1.5px solid var(--borda-forte);
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--azul-escuro);
}
.btn-load-more:hover { border-color: var(--azul); background: var(--azul-claro); }

/* ===== Modal ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 18, 14, 0.55);
  display: none;
  align-items: flex-start;
  justify-content: center;
  z-index: 200;
  padding: 30px 16px;
  overflow-y: auto;
}
.modal-overlay.open { display: flex; }
.modal {
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 880px;
  width: 100%;
  margin-top: 20px;
  overflow: hidden;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #fff;
  border: 1px solid var(--borda);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow: var(--sombra);
}
.modal-close:hover { background: var(--vermelho-claro); border-color: var(--vermelho); }
.modal-close svg { width: 18px; height: 18px; }

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 720px) {
  .modal-grid { grid-template-columns: 1fr; }
}

.modal-gallery {
  background: #f0ede4;
  display: flex;
  flex-direction: column;
}
.modal-gallery-main {
  aspect-ratio: 1/1;
  overflow: hidden;
}
.modal-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.modal-gallery-thumbs {
  display: flex;
  gap: 7px;
  padding: 10px;
  overflow-x: auto;
  background: #fff;
}
.modal-gallery-thumbs img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  flex-shrink: 0;
}
.modal-gallery-thumbs img.active { border-color: var(--azul); }

.modal-info {
  padding: 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
}
.modal-cats { display: flex; gap: 6px; flex-wrap: wrap; }
.modal-cat-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--azul-escuro);
  background: var(--azul-claro);
  padding: 3px 10px;
  border-radius: 999px;
  text-transform: uppercase;
}
.modal-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
}
.modal-price-row { display: flex; align-items: baseline; gap: 10px; }
.modal-iva-aviso {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--vermelho);
  margin-top: -4px;
}
.modal-price { font-family: var(--font-display); font-size: 30px; font-weight: 700; color: var(--azul-escuro); }
.modal-price.promo { color: var(--vermelho); }
.modal-price-old { font-size: 16px; color: var(--texto-fraco); text-decoration: line-through; }
.modal-desc { font-size: 14.5px; color: var(--texto-suave); line-height: 1.65; white-space: pre-line; }
.modal-stock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  width: fit-content;
  padding: 5px 12px;
  border-radius: 999px;
}
.modal-stock.in { background: #e7f5ea; color: #1d7a3a; }
.modal-stock.out { background: #f3f1ea; color: var(--texto-suave); }
.modal-stock svg { width: 14px; height: 14px; }
.modal-stock-link { cursor: pointer; transition: background .15s, color .15s; }
.modal-stock-link:hover { background: #e7f5ea; color: #1d7a3a; }

.modal-cta {
  display: flex;
  gap: 10px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--azul);
  color: #fff;
  border: none;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover { background: var(--azul-escuro); }
.btn-secondary {
  background: #fff;
  color: var(--texto);
  border: 1.5px solid var(--borda-forte);
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-secondary:hover { border-color: var(--azul); color: var(--azul-escuro); }

/* ===== Footer ===== */
footer.site-footer {
  background: #1a1812;
  color: #d9d6cb;
  margin-top: 24px;
}
.footer-top {
  padding: 48px 0 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 32px;
}
@media (max-width: 860px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-top { grid-template-columns: 1fr; }
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 15px;
  color: #fff;
  margin-bottom: 14px;
  font-weight: 600;
}
.footer-col p, .footer-col li { font-size: 13.5px; line-height: 1.8; color: #b3b0a3; }
.footer-col ul { list-style: none; }
.footer-col a:hover { color: #fff; }
.footer-logo img { height: 32px; margin-bottom: 14px; filter: brightness(0) invert(1); opacity: .92; }
.footer-contact-item { display: flex; gap: 8px; margin-bottom: 8px; align-items: flex-start; }
.footer-contact-item span { font-size: 13.5px; line-height: 1.6; color: #b3b0a3; }
.footer-contact-item svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; opacity: .8; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 0;
  font-size: 12.5px;
  color: #8a8779;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a { color: #8a8779; }
.footer-bottom a:hover { color: #fff; }

/* ===== Mobile ===== */
@media (max-width: 900px) {
  .container { padding: 0 16px; }

  .topbar .container { font-size: 12px; gap: 4px 14px; padding: 0 16px; }
  .topbar-contacts { gap: 10px !important; }

  .header-inner { gap: 8px; padding: 8px 0; flex-wrap: nowrap; }
  .logo-link { flex-shrink: 0; }
  .logo-link img { height: auto; width: 120px; max-width: 120px; }

  nav.main-nav { display: none; }
  .mobile-nav-toggle { display: flex; flex-shrink: 0; }

  .header-search { flex: 1 1 60px; min-width: 0; flex-shrink: 1; }
  .header-search input { width: 100%; min-width: 0; padding: 9px 10px; font-size: 13px; }
  .header-search button { padding: 0 10px; flex-shrink: 0; }

  .header-admin-link { flex-shrink: 0; width: 28px; height: 28px; }

  .hero { padding: 26px 0; }
  .hero-slogan-1 { font-size: 26px; }
  .hero-slogan-2 { font-size: 18px; }
  .hero-slogans { text-align: center; }
  .hero-search { display: none; }

  .grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
  .card-title { font-size: 13.5px; }
  .card-price { font-size: 18px; }

  .toolbar { flex-direction: column; align-items: stretch; }
  .toolbar-filters { flex-direction: column; align-items: stretch; gap: 10px; }
  .toolbar-sort { justify-content: space-between; }
  .toolbar-sort select { flex: 1; }
}

@media (max-width: 480px) {
  .topbar .container { flex-direction: row; align-items: center; justify-content: flex-start; gap: 4px; padding: 8px 0; flex-wrap: wrap; }
  .topbar-contacts { flex-direction: row; gap: 12px !important; align-items: center; flex-wrap: wrap; font-size: 11.5px; }
  .topbar .topbar-contacts:last-child { display: none; }

  .header-search input { font-size: 13px; padding: 9px 12px; }
  .logo-link img { height: 26px; }

  .grid { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 13px 0; }
  .hero-slogan-1 { font-size: 20px; }
  .hero-slogan-2 { font-size: 14px; letter-spacing: .5px; }
}

nav.main-nav.mobile-open {
  display: flex;
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 100;
  padding: 20px;
  overflow-y: auto;
  flex-direction: column;
}
nav.main-nav.mobile-open ul {
  flex-direction: column;
  width: 100%;
  align-items: stretch;
}
nav.main-nav.mobile-open .has-dropdown .dropdown {
  display: block;
  position: static;
  box-shadow: none;
  border: none;
  padding-left: 14px;
}
.mobile-nav-close {
  display: none;
  align-self: flex-end;
  background: none;
  border: none;
  padding: 10px;
  margin-bottom: 10px;
}
nav.main-nav.mobile-open .mobile-nav-close { display: block; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--azul);
  color: #fff;
  padding: 10px 16px;
  z-index: 999;
}
.skip-link:focus { left: 10px; top: 10px; }

/* ===== Botão flutuante WhatsApp ===== */
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  z-index: 90;
  transition: transform .15s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }

@media (max-width: 600px) {
  .whatsapp-float { width: 50px; height: 50px; bottom: 16px; right: 16px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
}

/* ===== Páginas institucionais ===== */
.page-hero {
  background: linear-gradient(135deg, var(--azul) 0%, var(--azul-escuro) 100%);
  color: #fff;
  padding: 36px 0;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
}
.breadcrumb {
  font-size: 13px;
  opacity: 0.85;
  margin-bottom: 8px;
}
.breadcrumb a { color: #fff; opacity: 0.85; }
.breadcrumb a:hover { opacity: 1; text-decoration: underline; }

.page-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 40px 24px 60px;
}
.page-content h2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin: 28px 0 10px;
  color: var(--azul-escuro);
}
.page-content h2:first-child { margin-top: 0; }
.page-content h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 20px 0 8px;
}
.page-content p {
  font-size: 15px;
  color: var(--texto-suave);
  line-height: 1.75;
  margin-bottom: 14px;
}
.page-content ul {
  margin: 0 0 14px 20px;
}
.page-content li {
  font-size: 15px;
  color: var(--texto-suave);
  line-height: 1.75;
  margin-bottom: 8px;
}
.page-content strong { color: var(--texto); }

.empresa-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0;
}
@media (max-width: 600px) {
  .empresa-stats { grid-template-columns: 1fr; }
}
.empresa-stat {
  background: var(--azul-claro);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}
.empresa-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--azul-escuro);
}
.empresa-stat span {
  font-size: 13px;
  color: var(--texto-suave);
}

.valores-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 12px 0 28px;
}
@media (max-width: 600px) {
  .valores-grid { grid-template-columns: 1fr; }
}
.valor-card {
  background: #fff;
  border: 1px solid var(--borda);
  border-radius: var(--radius-md);
  padding: 18px 20px;
}
.valor-card h3 {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--azul-escuro);
  margin: 0 0 6px;
}
.valor-card p { margin: 0; font-size: 14px; }

/* ===== Contactos ===== */
.contactos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 760px) {
  .contactos-grid { grid-template-columns: 1fr; }
}
.contacto-card {
  background: #fff;
  border: 1px solid var(--borda);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.contacto-card svg {
  width: 22px; height: 22px;
  color: var(--azul);
  flex-shrink: 0;
  margin-top: 2px;
}
.contacto-card h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}
.contacto-card p, .contacto-card a {
  font-size: 14.5px;
  color: var(--texto-suave);
}
.contacto-card a:hover { color: var(--azul); }

.mapa-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--borda);
  aspect-ratio: 4/3;
}
.mapa-wrap iframe { width: 100%; height: 100%; border: 0; }

.form-contacto {
  background: #fff;
  border: 1px solid var(--borda);
  border-radius: var(--radius-md);
  padding: 24px;
}
.form-contacto label {
  font-size: 13.5px;
  font-weight: 700;
  display: block;
  margin: 14px 0 6px;
}
.form-contacto label:first-child { margin-top: 0; }
.form-contacto input, .form-contacto textarea {
  width: 100%;
  border: 1.5px solid var(--borda-forte);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 14px;
  font-family: inherit;
}
.form-contacto textarea { resize: vertical; }
.form-contacto button { margin-top: 18px; width: 100%; justify-content: center; padding: 13px; }


/* ===== Destaques Slider ===== */
.destaques-section {
  background: #f4f6f9;
  padding: 28px 0 24px;
  border-bottom: 1px solid #e0e4ea;
}
.destaques-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}
.destaques-titulo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--azul-escuro);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.destaques-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.destaques-tab {
  padding: 5px 14px;
  border-radius: 20px;
  border: 2px solid var(--azul);
  background: transparent;
  color: var(--azul);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.destaques-tab.active,
.destaques-tab:hover {
  background: var(--azul);
  color: #fff;
}
.destaques-slider-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.destaques-track-outer {
  flex: 1;
  overflow: hidden;
  min-width: 0;
  min-height: 220px;
}
.destaques-track {
  display: flex;
  gap: 16px;
  transition: transform .35s ease;
  will-change: transform;
}
.destaque-card {
  flex: 0 0 200px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow .2s, transform .2s;
}
.destaque-card:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,.13);
  transform: translateY(-2px);
}
.destaque-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}
.destaque-card-info {
  padding: 10px 12px;
}
.destaque-card-nome {
  font-size: 13px;
  font-weight: 600;
  color: #222;
  line-height: 1.3;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.destaque-card-preco {
  font-size: 15px;
  font-weight: 700;
  color: var(--azul);
}
.destaque-card-preco-original {
  font-size: 12px;
  color: #999;
  text-decoration: line-through;
  margin-left: 6px;
}
.slider-btn {
  background: var(--azul);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .15s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-btn:hover { background: var(--azul-escuro); }
.slider-btn:disabled { opacity: .3; cursor: default; }

@media (max-width: 600px) {
  .destaque-card { flex: 0 0 160px; }
  .destaque-card img { height: 110px; }
  .destaques-titulo { font-size: 15px; }
}

/* ===== Duas linhas do slider ===== */
.destaques-linha {
  margin-bottom: 20px;
}
.destaques-linha:last-child {
  margin-bottom: 0;
}
.destaques-linha-header {
  margin-bottom: 10px;
}
