/* ═══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  display: flex;
  align-items: center;
}
.navbar .container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  max-width: 100%;
  padding: 0 48px;
}
.navbar-left {
  display: flex;
  align-items: center;
  gap: 44px;
  justify-self: start;
}
.navbar-logo {
  justify-self: center;
}
.navbar-logo img {
  height: 52px;
  width: auto;
  display: block;
}
.navbar-link {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.2s;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  white-space: nowrap;
}
.navbar-link:hover,
.navbar-link.active {
  color: var(--bordeaux);
  border-bottom-color: var(--bordeaux);
}
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-self: end;
}
.navbar-actions .btn-icon {
  width: 40px;
  height: 40px;
  color: var(--text);
}
.navbar-actions .btn-icon:hover { color: var(--bordeaux); }

@media (max-width: 900px) {
  .navbar-left { gap: 20px; }
  .navbar-link { font-size: 11px; letter-spacing: 0.08em; }
  .navbar-logo img { height: 42px; }
}
@media (max-width: 640px) {
  .navbar .container {
    grid-template-columns: 1fr auto;
    padding: 0 16px;
  }
  .navbar-logo {
    justify-self: start;
    order: 1;
  }
  .navbar-logo img { height: 34px; }
  .navbar-left {
    display: none;
  }
  .navbar-actions {
    justify-self: end;
    order: 2;
    gap: 0;
  }
  .navbar-actions .btn-icon { width: 36px; height: 36px; }
  .navbar-actions .btn-icon svg { width: 18px; height: 18px; }
}
/* Mini-menu mobile abaixo da navbar para garantir acesso ao catálogo */
.mobile-subnav {
  display: none;
}
@media (max-width: 640px) {
  .mobile-subnav {
    display: flex;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--rosa-light);
    border-bottom: 1px solid var(--border);
    z-index: 99;
    justify-content: center;
    gap: 28px;
    padding: 10px 16px;
  }
  .mobile-subnav a {
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 4px 0;
    border-bottom: 1px solid transparent;
  }
  .mobile-subnav a.active {
    color: var(--bordeaux);
    border-bottom-color: var(--bordeaux);
  }
  :root { --nav-height: 60px; }
  .page-content { padding-top: calc(var(--nav-height) + 42px); }
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 48px 0 32px;
  margin-top: auto;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.footer-logo img { height: 96px; filter: brightness(0) invert(1); opacity: 0.85; }
.footer-socials {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  color: rgba(255,255,255,0.7);
  transition: all 0.2s;
}
.footer-social-link:hover { border-color: var(--rosa); color: var(--rosa); }
.footer-copy {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4);
}
.footer-city {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ═══════════════════════════════════════
   PRODUCT CARD
═══════════════════════════════════════ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media (max-width: 480px)  { .product-grid { gap: 12px; } }
@media (max-width: 480px) {
  .product-card-name { font-size: 14px; }
  .product-card-price { font-size: 14px; }
  .product-card-body { padding-top: 10px; gap: 2px; }
  .product-card-footer { padding-top: 10px; }
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  transition: transform 0.22s ease;
  cursor: pointer;
}
.product-card:hover { transform: translateY(-4px); }

.product-card-img {
  aspect-ratio: 1 / 1;
  background: var(--rosa-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.04); }
.product-card-img .img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--rosa-mid);
}
.product-card-hidden-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--text);
  color: white;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
}

.product-card-body {
  padding: 14px 0 0;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 4px;
}
.product-card-category {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bordeaux);
  opacity: 0.7;
}
.product-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  color: var(--text);
  margin-top: 2px;
}
.product-card-brand {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-muted);
}
.product-card-price {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--bordeaux);
  margin-top: 6px;
}
.product-card-footer {
  margin-top: auto;
  padding-top: 16px;
}

/* ═══════════════════════════════════════
   FILTROS DO CATÁLOGO
═══════════════════════════════════════ */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.filter-pill {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 18px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: var(--white);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-pill:hover { border-color: var(--bordeaux-mid); color: var(--bordeaux); }
.filter-pill.active { border-color: var(--bordeaux); background: var(--bordeaux); color: var(--white); }

/* ═══════════════════════════════════════
   CARRINHO — ITEM
═══════════════════════════════════════ */
.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 600px) {
  .cart-item {
    grid-template-columns: 72px 1fr;
    grid-template-rows: auto auto;
    column-gap: 14px;
    row-gap: 12px;
    padding: 16px 0;
  }
  .cart-item-img { width: 72px; height: 72px; }
  .cart-item-name { font-size: 14px; }
  .cart-item-actions {
    grid-column: 1 / -1;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.cart-item-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  background: var(--rosa-light);
  flex-shrink: 0;
}
.cart-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
}
.cart-item-brand {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}
.cart-item-price {
  font-weight: 500;
  color: var(--bordeaux);
  font-size: 14px;
  margin-top: 6px;
}
.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
}
.qty-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
  line-height: 1;
  flex-shrink: 0;
}
.qty-btn:hover { background: var(--rosa-light); }
.qty-value {
  width: 36px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-remove {
  color: var(--text-muted);
  padding: 4px;
  transition: color 0.2s;
}
.btn-remove:hover { color: #c0392b; }

/* ═══════════════════════════════════════
   ORDER SUMMARY BOX
═══════════════════════════════════════ */
.order-summary {
  border: 1px solid var(--border);
  padding: 28px;
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}
.order-summary-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 24px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.summary-row.total {
  font-weight: 500;
  font-size: 15px;
  color: var(--text);
  border-bottom: none;
  margin-top: 8px;
  padding-top: 12px;
}
.summary-row.total .value { color: var(--bordeaux); font-size: 18px; }
.customer-name-input { margin: 20px 0; }

/* ═══════════════════════════════════════
   PAGE HEADER
═══════════════════════════════════════ */
.page-header {
  padding: 48px 0 32px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}
.page-header h1 { font-size: clamp(32px, 6vw, 48px); }
.page-header p { color: var(--text-muted); margin-top: 8px; max-width: 480px; }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  background: linear-gradient(135deg, var(--rosa-light) 0%, var(--rosa) 60%, #f0b5c2 100%);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-end;
  gap: 0;
  width: 100%;
  padding-top: var(--nav-height);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: left;
  padding: 0 clamp(24px, 6%, 80px) clamp(48px, 10vw, 100px) clamp(24px, 8%, 120px);
}
/* Foto da modelo — do cabeçalho ao rodapé no lado direito */
.hero-photo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 54%;
  height: 100%;
  object-fit: cover;
  object-position: 42% 42%;
  z-index: 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 22%);
          mask-image: linear-gradient(to right, transparent 0%, #000 22%);
}
.hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bordeaux);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--bordeaux);
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(44px, 11vw, 108px);
  line-height: 1.02;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--bordeaux);
  font-weight: 300;
}
.hero-subtitle {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  opacity: 0.8;
  margin-bottom: 36px;
  max-width: 420px;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    flex-direction: column;
    padding-top: var(--nav-height);
  }
  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 32px;
    padding-bottom: 48px;
    gap: 0;
  }
  .hero-content {
    padding: 0 24px 40px;
  }
  .hero-subtitle { max-width: 100%; margin-bottom: 28px; }
  .hero-cta { gap: 12px; }
  .hero-cta .btn { flex: 1 1 auto; padding: 14px 20px; }
  .hero-photo {
    position: relative;
    width: 100%;
    height: 320px;
    object-position: center 20%;
    -webkit-mask-image: linear-gradient(to bottom, #000 65%, transparent 100%);
            mask-image: linear-gradient(to bottom, #000 65%, transparent 100%);
  }
}
@media (max-width: 640px) {
  .hero {
    padding-top: calc(var(--nav-height) + 42px);
  }
}
@media (max-width: 480px) {
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .hero-photo { height: 260px; }
}

/* ═══════════════════════════════════════
   STATUS BADGE
═══════════════════════════════════════ */
.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
}
.status-novo      { background: #FEF3CD; color: #856404; }
.status-confirmado { background: #D1ECF1; color: #0C5460; }
.status-enviado   { background: #D4EDDA; color: #155724; }
.status-entregue  { background: #E2E3E5; color: #383D41; }
.status-visivel   { background: #D4EDDA; color: #155724; }
.status-oculto    { background: #F8D7DA; color: #721C24; }

/* ═══════════════════════════════════════
   MOBILE — AJUSTES FINAIS (overrides p/ inline styles)
═══════════════════════════════════════ */
@media (max-width: 768px) {
  .container { padding: 0 16px; }

  .page-content { padding-bottom: 56px; }
  .page-header { padding: 28px 0 20px; margin-bottom: 24px; }
  .page-header h1 { font-size: clamp(28px, 7vw, 40px); }

  .filter-bar { gap: 8px; flex-wrap: wrap; }
  .filter-pill { padding: 9px 14px; }

  /* Modal de produto — vira coluna única e ajusta paddings */
  #modal-produto { padding: 0 !important; align-items: flex-end !important; }
  #modal-produto-inner {
    max-height: 96vh !important;
    max-width: 100% !important;
  }
  #modal-produto-body > div[style*="grid"] {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }
  #modal-produto-body > div[style*="grid"] > div:first-child {
    min-height: 240px !important;
    max-height: 280px;
  }
  #modal-produto-body > div[style*="grid"] > div:first-child img {
    min-height: 240px !important;
    max-height: 280px;
  }
  #modal-produto-body > div[style*="grid"] > div:last-child {
    padding: 24px 20px 28px !important;
  }
  #modal-produto-body h2 {
    font-size: 22px !important;
  }

  .modal { padding: 24px; }
  .modal-header { margin-bottom: 20px; }

  /* Order summary mobile */
  .order-summary { padding: 20px; }
  .order-summary-title { font-size: 18px; margin-bottom: 18px; }
  .summary-row { font-size: 12px; }
  .summary-row.total .value { font-size: 16px; }

  /* Footer compacto */
  .footer { padding: 36px 0 24px; }
  .footer-logo img { height: 72px; }
}

@media (max-width: 480px) {
  /* Cupom: empilha input e botão */
  .order-summary div[style*="display:flex"][style*="gap:8px"] {
    flex-direction: column;
  }
  .order-summary div[style*="display:flex"][style*="gap:8px"] .btn {
    width: 100%;
  }
}

/* ═══════════════════════════════════════
   CATÁLOGO — TOOLBAR DE FILTROS AVANÇADOS
═══════════════════════════════════════ */
.catalog-toolbar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
  margin-bottom: 32px;
  padding: 24px;
  background: var(--rosa-light);
  border: 1px solid var(--border);
}
@media (max-width: 768px) {
  .catalog-toolbar {
    grid-template-columns: 1fr;
    padding: 20px 16px;
    gap: 18px;
  }
}
.toolbar-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.toolbar-label {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.sort-select {
  width: 100%;
  max-width: 280px;
  border: 1px solid var(--border);
  padding: 10px 14px;
  font-size: 13px;
  color: var(--text);
  background: var(--white);
  cursor: pointer;
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237A6469' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.sort-select:focus { border-color: var(--bordeaux); }

.price-range {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 240px;
}
.price-range-inputs {
  display: flex;
  align-items: center;
  gap: 10px;
}
.price-range-inputs input {
  width: 80px;
  border: 1px solid var(--border);
  padding: 8px 10px;
  font-size: 13px;
  background: var(--white);
  outline: none;
}
.price-range-inputs input:focus { border-color: var(--bordeaux); }
.price-range-inputs span { color: var(--text-muted); font-size: 12px; }
.price-slider-wrap {
  position: relative;
  height: 28px;
}
.price-slider-track {
  position: absolute;
  top: 13px;
  left: 0; right: 0;
  height: 3px;
  background: var(--border);
  border-radius: 2px;
}
.price-slider-fill {
  position: absolute;
  top: 13px;
  height: 3px;
  background: var(--bordeaux);
  border-radius: 2px;
}
.price-slider-wrap input[type=range] {
  position: absolute;
  top: 0;
  left: 0; right: 0;
  width: 100%;
  height: 28px;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  margin: 0;
}
.price-slider-wrap input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  background: var(--white);
  border: 2px solid var(--bordeaux);
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
}
.price-slider-wrap input[type=range]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: var(--white);
  border: 2px solid var(--bordeaux);
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
}

.toggle-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.toggle-chip {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 14px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 999px;
}
.toggle-chip:hover { border-color: var(--bordeaux-mid); color: var(--bordeaux); }
.toggle-chip.active {
  background: var(--bordeaux);
  border-color: var(--bordeaux);
  color: var(--white);
}

.results-count {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* Badge de promoção no card */
.product-card-sale-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--bordeaux);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 9px;
  z-index: 2;
}
.product-card-price.old {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 300;
  margin-top: 0;
}

/* ═══════════════════════════════════════
   VOUCHER PRESENTE — CARD ESPECIAL
═══════════════════════════════════════ */
.product-card.voucher-card .product-card-img {
  background: linear-gradient(135deg, var(--bordeaux) 0%, var(--bordeaux-dark) 100%);
  color: var(--white);
  flex-direction: column;
  gap: 12px;
  font-family: 'Cormorant Garamond', serif;
}
.product-card.voucher-card .voucher-card-title {
  font-size: 28px;
  font-style: italic;
  font-weight: 500;
}
.product-card.voucher-card .voucher-card-sub {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.9;
}

.voucher-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 8px 0 16px;
}
.voucher-value-btn {
  padding: 14px 10px;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
  transition: all 0.18s;
}
.voucher-value-btn:hover { border-color: var(--bordeaux-mid); color: var(--bordeaux); }
.voucher-value-btn.active {
  background: var(--bordeaux);
  color: var(--white);
  border-color: var(--bordeaux);
}

/* Modal "voucher gerado" pós-compra */
.voucher-code-box {
  background: linear-gradient(135deg, var(--bordeaux) 0%, var(--bordeaux-dark) 100%);
  color: var(--white);
  padding: 28px 24px;
  text-align: center;
  margin: 16px 0 24px;
}
.voucher-code-box .label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.85;
  color: var(--white);
}
.voucher-code-box .code {
  font-family: 'Jost', monospace;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.12em;
  margin: 10px 0;
}
.voucher-code-box .value {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 20px;
}

/* ═══════════════════════════════════════
   PÁGINA SOBRE
═══════════════════════════════════════ */
.about-hero {
  text-align: center;
  padding: 32px 0 56px;
}
.about-hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 16px;
}
.about-hero p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.7;
}
.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
@media (max-width: 768px) { .policy-grid { grid-template-columns: 1fr; gap: 16px; } }
.policy-card {
  border: 1px solid var(--border);
  padding: 28px;
  background: var(--white);
  transition: border-color 0.2s;
}
.policy-card:hover { border-color: var(--rosa-mid); }
.policy-card-icon {
  width: 42px;
  height: 42px;
  background: var(--rosa-light);
  color: var(--bordeaux);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.policy-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 10px;
}
.policy-card p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.7;
}
.policy-card ul {
  margin-top: 10px;
  padding-left: 18px;
  list-style: disc;
}
.policy-card li {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 4px;
}

/* ═══════════════════════════════════════
   AVALIAÇÕES
═══════════════════════════════════════ */
.reviews-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 48px;
}
@media (max-width: 900px) {
  .reviews-layout { grid-template-columns: 1fr; gap: 32px; }
}
.review-form-box {
  border: 1px solid var(--border);
  padding: 28px;
  background: var(--rosa-light);
  position: sticky;
  top: calc(var(--nav-height) + 24px);
  align-self: start;
}
@media (max-width: 900px) { .review-form-box { position: static; } }
.review-form-box h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 20px;
}
.star-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}
.star-rating button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--rosa-mid);
  transition: color 0.15s, transform 0.15s;
}
.star-rating button:hover { transform: scale(1.1); }
.star-rating button.active { color: var(--bordeaux); }

.review-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.review-card {
  border: 1px solid var(--border);
  padding: 24px;
  background: var(--white);
}
.review-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 12px;
}
.review-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 18px;
}
.review-card-date {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.review-card-stars {
  display: flex;
  gap: 2px;
  color: var(--bordeaux);
  margin-bottom: 10px;
}
.review-card-text {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text);
}
.reviews-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: var(--rosa-light);
  border-left: 3px solid var(--bordeaux);
  margin-bottom: 28px;
}
.reviews-summary .big {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 36px;
  color: var(--bordeaux);
  line-height: 1;
}
.reviews-summary .meta {
  font-size: 12px;
  color: var(--text-muted);
}

/* Navbar com mais itens — gap maior no desktop */
.navbar-left.has-many { gap: 48px; }
@media (max-width: 1200px) {
  .navbar .container { padding: 0 32px; }
  .navbar-left.has-many { gap: 32px; }
}
@media (max-width: 1024px) {
  .navbar .container { padding: 0 24px; }
  .navbar-left.has-many { gap: 22px; }
  .navbar-left.has-many .navbar-link { font-size: 11px; }
}
