/* ============================================
   MAPA ESTELAR — style.css
   Estrutura: HTML + CSS + JS puro
   ============================================ */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  color: #1a1a1a;
  background: #fff;
  font-size: 15px;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* --- ANNOUNCEMENT BAR --- */
.announcement-bar {
  background: #111;
  color: #fff;
  text-align: center;
  font-size: 13px;
  padding: 7px 16px;
  letter-spacing: 0.3px;
}

/* --- HEADER --- */
.header {
  background: #111;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #2a2a2a;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.logo img { height: 44px; width: auto; }
.logo-text {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 1px;
  color: #fff;
}

/* Nav */
.nav {
  display: flex;
  gap: 8px;
  flex: 1;
}

.nav a {
  font-size: 14px;
  font-weight: 600;
  color: #e0e0e0;
  padding: 6px 10px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav a:hover { color: #fff; background: rgba(255,255,255,0.08); }

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}
.btn-icon {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 4px;
  position: relative;
  transition: opacity 0.2s;
}
.btn-icon:hover { opacity: 0.75; }
.btn-cart { position: relative; }
.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #e53935;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-total { font-size: 13px; font-weight: 700; color: #fff; white-space: nowrap; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span { width: 22px; height: 2px; background: #fff; border-radius: 2px; display: block; transition: 0.3s; }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: #1a1a1a;
  padding: 8px 24px 16px;
}
.mobile-nav a {
  color: #e0e0e0;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 1px solid #2a2a2a;
}
.mobile-nav.open { display: flex; }

/* Search bar */
.search-bar {
  display: none;
  background: #222;
  padding: 10px 24px;
}
.search-bar.open { display: flex; gap: 8px; }
.search-bar input {
  flex: 1;
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid #444;
  background: #333;
  color: #fff;
  font-size: 14px;
  outline: none;
}
.search-bar button {
  padding: 8px 18px;
  background: #fff;
  color: #111;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
}

/* Container principal */
.hero-slider {
  width: 100%;
  overflow: hidden;
}

.slides {
  display: flex;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
}

.slides::-webkit-scrollbar {
  display: none;
}

.slide {
  flex-shrink: 0;
  /* O slide se expande para o tamanho da imagem */
  width: max-content;
}

.slide-img {
  display: block;
  height: 300px;
  width: auto;
  max-width: none;
}

@media (min-width: 1024px) {
  .slide-img {
    width: 100vw;
    height: auto;
  }
  .slide {
    width: 100vw;
  }
}

/* Slider controls */
.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 36px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10;
  line-height: 1;
}
.slide-btn:hover { background: rgba(255,255,255,0.3); }
.slide-btn--prev { left: 16px; }
.slide-btn--next { right: 16px; }
.slide-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 10;
}
.slide-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.2s;
}
.slide-dots .dot.active { background: #fff; }

/* --- TRUST BADGES --- */
/* --- TRUST BADGES --- */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 0;
  border-bottom: 1px solid #eee;
}

.badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 28px;
  border-right: 1px solid #eee;
  flex: 1 1 220px;
  min-width: 200px;
  max-width: 300px;
}

.badge:last-child { border-right: none; }
.badge img { width: 36px; height: 36px; object-fit: contain; flex-shrink: 0; }
.badge strong { display: block; font-size: 13px; font-weight: 800; color: #111; }
.badge span { font-size: 12px; color: #666; }

/* ✅ CARROSSEL NO MOBILE */
@media (max-width: 768px) {
  .trust-badges {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex-wrap: nowrap; /* ← impede quebrar linha */
    justify-content: flex-start;
  }

  .trust-badges::-webkit-scrollbar {
    display: none;
  }

  .badge {
    flex: 0 0 240px; /* ← largura fixa, sem encolher */
    scroll-snap-align: start;
  }
}

/* --- CATEGORIES --- */
.categories {
  max-width: 1200px;
  margin: 32px auto 0;
  padding: 0 24px;
}
.category-list {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s;
}
.category-item:hover { transform: translateY(-3px); }
.category-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box,
              linear-gradient(135deg, #f06, #a855f7, #3b82f6) border-box;
  flex-shrink: 0;
}
.category-circle img { width: 100%; height: 100%; object-fit: cover; }
.category-item span { font-size: 12px; font-weight: 700; color: #222; max-width: 90px; line-height: 1.3; }

/* --- PRODUCT SECTIONS --- */
.product-section {
  max-width: 1200px;
  margin: 48px auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 32px;
}

.section-header h2 {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 900;
  color: #111;
  margin-bottom: 8px;
}

.section-header p {
  font-size: 15px;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  /* Centraliza o conteúdo textual do card */
  text-align: center; 
}

.product-card:hover { 
  box-shadow: 0 8px 28px rgba(0,0,0,0.12); 
  transform: translateY(-3px); 
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #f5f5f5;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-img-wrap img { 
  transform: scale(1.04); 
}

.product-badge {
  position: absolute;
  top: 10px;
  left: 50%; /* Centraliza a badge horizontalmente */
  transform: translateX(-50%); /* Ajuste para centralização perfeita */
  background: #e53935; /* Vermelho original */
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.product-info {
  padding: 15px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center; /* Centraliza os itens flexíveis (estrelas, preços) */
}

.product-info h3 {
  font-size: 14px;
  font-weight: 700;
  color: #007bff; /* Azul original */
  line-height: 1.4;
  margin-bottom: 8px;
}

.product-stars { 
  color: #f5a623; 
  font-size: 13px; 
  margin-bottom: 8px; 
}

.product-price-old {
  font-size: 12px;
  color: #999;
  text-decoration: line-through;
  margin-bottom: 2px;
}

.product-price {
  font-size: 22px;
  font-weight: 900;
  color: #16a34a; /* Verde original */
  margin-bottom: 3px;
}

.product-installment { 
  font-size: 12px; 
  color: #555; 
  margin-bottom: 10px; 
}

.btn-personalizar {
  display: block;
  background: #111;
  color: #fff;
  text-decoration: none;
  text-align: center;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 800;
  border-radius: 0 0 12px 12px;
  transition: background 0.2s;
  margin-top: auto;
  letter-spacing: 0.3px;
}

.btn-personalizar:hover { 
  background: #333; 
}

/* --- BANNER MID --- */
.banner-mid {
  position: relative;
  max-height: 420px;
  overflow: hidden;
  margin: 0;
}
.banner-mid img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  filter: brightness(0.55);
}
.banner-mid-content {
  position: absolute;
  top: 50%;
  left: 7%;
  transform: translateY(-50%);
  color: #fff;
}
.banner-mid-sub {
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 400;
  margin-bottom: 6px;
  opacity: 0.9;
}
.banner-mid-title {
  font-size: clamp(28px, 5vw, 60px);
  font-weight: 900;
  font-family: 'Nunito', sans-serif;
  text-transform: uppercase;
  line-height: 1.15;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}
.banner-mid-title em { font-style: italic; font-family: 'Playfair Display', serif; }

/* --- INSTAGRAM SECTION --- */
.instagram-section {
  background: #fff;
  padding: 48px 24px 0;
  text-align: center;
}
.insta-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #111;
  margin: 0 auto 16px;
}
.insta-logo img { width: 100%; height: 100%; object-fit: cover; }
.insta-logo-fallback {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.instagram-section h2 {
  font-size: 16px;
  margin: 0 0 4px;
}

.instagram-section p {
  font-size: 14px;
  color: #888;
  margin: 0 0 20px;
}

/* Mobile: scroll horizontal */
.insta-grid {
  display: flex;
  overflow-x: scroll;
  gap: 4px;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding-bottom: 4px;
}

.insta-grid::-webkit-scrollbar {
  display: none;
}

.insta-grid a {
  flex-shrink: 0;
  scroll-snap-align: start;
  width: 42vw; /* Mostra ~2 fotos e meia — indica que tem mais */
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.insta-grid a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.insta-grid a:hover img {
  transform: scale(1.05);
}

/* Desktop: grid 4 colunas */
@media (min-width: 768px) {
  .insta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow-x: unset;
    scroll-snap-type: unset;
  }

  .insta-grid a {
    width: auto;
    flex-shrink: unset;
  }
}
.insta-grid {
  display: flex;
  overflow-x: auto; /* Mude de scroll para auto */
  gap: 4px;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth; /* Deixa o movimento mais humano */
  /* Remova o scroll-snap-type se quiser que o movimento seja contínuo e sem "travas" */
}
/* --- FOOTER --- */
.footer {
  background: #111;
  color: #ccc;
  padding: 48px 24px 24px;
  text-align: center;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.footer-logo img { height: 50px; width: auto; }
.footer-logo-text {
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 2px;
}
.footer-info { font-size: 14px; line-height: 2; }
.footer-info a { color: #aaa; transition: color 0.2s; }
.footer-info a:hover { color: #fff; }
.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid #2a2a2a;
  border-bottom: 1px solid #2a2a2a;
  margin-bottom: 20px;
}
.footer-links a { font-size: 13px; color: #aaa; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { font-size: 12px; color: #666; line-height: 2; }
.payment-icons {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.payment-icons img { height: 28px; width: auto; }

/* ============================================
   PÁGINAS INTERNAS
   ============================================ */

/* Página: quadro-mapa-estelar.html e quadros-personalizados.html */
.page-hero {
  text-align: center;
  padding: 48px 24px 24px;
  max-width: 800px;
  margin: 0 auto;
}
.page-hero h1 { font-size: clamp(24px, 5vw, 36px); font-weight: 900; margin-bottom: 12px; }
.page-hero p { font-size: 15px; color: #555; }

/* ============================================
   PÁGINA DE PRODUTO
   ============================================ */
.product-page {
  max-width: 1100px;
  margin: 48px auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.product-gallery { position: relative; }
.product-main-img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #eee;
  overflow: hidden;
}
.product-main-img img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.product-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.product-thumbs img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s;
}
.product-thumbs img.active { border-color: #111; }
.product-details {}
.product-details h1 { font-size: 26px; font-weight: 900; margin-bottom: 8px; }
.product-details .stars { color: #f5a623; font-size: 15px; margin-bottom: 12px; }
.product-details .price-old { font-size: 14px; color: #999; text-decoration: line-through; }
.product-details .price { font-size: 34px; font-weight: 900; color: #16a34a; margin: 4px 0; }
.product-details .installment { font-size: 14px; color: #555; margin-bottom: 24px; }
.product-details label { font-size: 13px; font-weight: 700; display: block; margin-bottom: 6px; margin-top: 16px; }
.product-details input[type="text"],
.product-details input[type="date"],
.product-details textarea,
.product-details select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.product-details input:focus,
.product-details textarea:focus,
.product-details select:focus { border-color: #111; }
.product-details textarea { resize: vertical; min-height: 80px; }
.btn-add-cart {
  display: block;
  width: 100%;
  margin-top: 24px;
  background: #111;
  color: #fff;
  border: none;
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}
.btn-add-cart:hover { background: #333; }
.btn-buy-now {
  display: block;
  width: 100%;
  margin-top: 10px;
  background: #16a34a;
  color: #fff;
  border: none;
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-buy-now:hover { background: #15803d; }

/* ============================================
   CARRINHO
   ============================================ */
.cart-page {
  max-width: 900px;
  margin: 48px auto;
  padding: 0 24px;
}
.cart-page h1 { font-size: 28px; font-weight: 900; margin-bottom: 28px; }
.cart-empty { text-align: center; padding: 60px 0; color: #888; font-size: 16px; }
.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding: 16px 0;
}
.cart-item img { width: 80px; height: 80px; object-fit: cover; border-radius: 8px; }
.cart-item-info h3 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.cart-item-info p { font-size: 13px; color: #555; }
.cart-item-price { font-size: 18px; font-weight: 900; color: #16a34a; text-align: right; }
.cart-item-remove { background: none; border: none; color: #e53935; cursor: pointer; font-size: 18px; margin-top: 4px; }
.cart-summary {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 32px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 2px solid #111;
}
.cart-total-label { font-size: 18px; font-weight: 700; }
.cart-total-value { font-size: 28px; font-weight: 900; color: #16a34a; }
.btn-checkout {
  background: #111;
  color: #fff;
  border: none;
  padding: 14px 36px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-checkout:hover { background: #333; }

/* ============================================
   RASTREIO
   ============================================ */
.track-page {
  max-width: 600px;
  margin: 64px auto;
  padding: 0 24px;
  text-align: center;
}
.track-page h1 { font-size: 28px; font-weight: 900; margin-bottom: 12px; }
.track-page p { color: #666; margin-bottom: 28px; }
.track-form { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.track-form input {
  flex: 1;
  min-width: 220px;
  padding: 12px 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Nunito', sans-serif;
  outline: none;
}
.track-form button {
  padding: 12px 28px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

/* ============================================
   RESPONSIVO
   ============================================ */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .insta-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .header-actions .cart-total { display: none; }

  .hero-slider { aspect-ratio: 16/9; max-height: 360px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .insta-grid { grid-template-columns: repeat(4, 1fr); }
  .trust-badges { flex-direction: column; align-items: stretch; }
  .badge { border-right: none; border-bottom: 1px solid #eee; max-width: 100%; }
  .badge:last-child { border-bottom: none; }

  .product-page { grid-template-columns: 1fr; gap: 24px; }
  .footer-links { gap: 14px; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .category-circle { width: 72px; height: 72px; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-slider { aspect-ratio: 4/3; max-height: 300px; }
  .slide-content { right: 4%; }
}
/* --- Ajustes para Mobile (Telas até 768px) --- */
@media (max-width: 768px) {
  
  /* 1. SELOS DE CONFIANÇA (Trust Badges) */
  .trust-badges {
    display: flex;
    flex-wrap: wrap;       /* Permite quebrar a linha */
    justify-content: space-between;
    gap: 15px 5px;         /* Espaçamento entre os selos */
    padding: 15px;
  }

  .badge {
    flex: 0 0 48%;         /* Faz com que cada selo ocupe quase metade da largura (2 por linha) */
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .badge strong {
    font-size: 13px;       /* Ajuste de fonte para caber no celular */
    display: block;
  }

  .badge span {
    font-size: 11px;
    display: block;
  }

  /* 2. CATEGORIAS (Círculos) */
  .categories {
    overflow-x: auto;      /* Ativa o scroll horizontal */
    -webkit-overflow-scrolling: touch; /* Scroll suave no iOS */
    padding: 10px 0;
  }

  .category-list {
    display: flex;         /* Coloca os itens um ao lado do outro */
    flex-wrap: nowrap;     /* Impede que eles quebrem a linha */
    gap: 15px;             /* Espaço entre os círculos */
    padding: 0 15px;       /* Respiro nas laterais */
  }

  .category-item {
    flex: 0 0 85px;        /* Define uma largura fixa para cada item não esmagar */
    text-align: center;
    text-decoration: none;
  }

  .category-circle {
    width: 70px;           /* Tamanho do círculo no mobile */
    height: 70px;
    margin: 0 auto 5px;
  }

  .category-item span {
    font-size: 11px;       /* Texto menor para as categorias */
    display: block;
    line-height: 1.2;
    white-space: normal;   /* Permite que o texto quebre linha se for grande */
  }

  /* Esconder barra de scroll para ficar mais limpo (opcional) */
  .categories::-webkit-scrollbar {
    display: none;
  }
  .categories {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}
/* ============================================
   ADICIONE ESTE BLOCO AO FINAL DO SEU style.css
   ============================================ */

/* ============================================
   ADICIONE ESTE BLOCO AO FINAL DO SEU style.css
   ============================================ */

/* --- Cabeçalho de personalização --- */
.personalize-header {
  background: #111;
  color: #fff;
  text-align: center;
  font-weight: 800;
  font-size: 14px;
  padding: 14px;
  border-radius: 8px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

/* --- Grupo de campo --- */
.custom-field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.custom-field-group label {
  font-size: 13px;
  font-weight: 700;
  color: #222;
}

.custom-field-group input[type="text"],
.custom-field-group input[type="date"],
.custom-field-group select,
.custom-field-group textarea {
  border: 1.5px solid #ddd;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 14px;
  font-family: inherit;
  color: #333;
  outline: none;
  transition: border-color 0.2s;
  background: #fafafa;
}

.custom-field-group input:focus,
.custom-field-group select:focus,
.custom-field-group textarea:focus {
  border-color: #e53935;
  background: #fff;
}

.custom-field-group textarea {
  min-height: 90px;
  resize: vertical;
}

/* --- Grid de modelos de quadro --- */
.modelo-quadro-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 6px;
}

.modelo-quadro-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  border-radius: 10px;
  border: 2.5px solid transparent;
  padding: 6px;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #f9f9f9;
  position: relative;
}

.modelo-quadro-item img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 7px;
  display: block;
}

.modelo-quadro-item span {
  font-size: 10px;
  font-weight: 700;
  color: #444;
  text-align: center;
  line-height: 1.2;
}

.modelo-quadro-item:hover {
  border-color: #e53935;
  box-shadow: 0 2px 10px rgba(229,57,53,0.15);
}

.modelo-quadro-item.selected {
  border-color: #e53935;
  box-shadow: 0 2px 12px rgba(229,57,53,0.25);
  background: #fff5f5;
}

.modelo-quadro-item.selected::after {
  content: '✓';
  position: absolute;
  top: 4px;
  right: 6px;
  background: #e53935;
  color: #fff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 11px;
  font-weight: 900;
  line-height: 18px;
  text-align: center;
}

/* --- Upload de imagem --- */
.upload-area {
  width: 110px;
  height: 110px;
  border: 2px dashed #ccc;
  border-radius: 10px;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.2s;
  background: #f5f5f5;
}

.upload-area:hover {
  border-color: #e53935;
}

.upload-preview {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.upload-plus {
  font-size: 36px;
  color: #aaa;
  line-height: 1;
  font-weight: 300;
}

.btn-upload {
  display: inline-block;
  margin-top: 8px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}

.btn-upload:hover {
  background: #333;
}

.upload-hint {
  font-size: 12px;
  color: #888;
  margin: 4px 0 0;
  font-style: italic;
}

/* --- Badges de qualidade --- */
.product-badges-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 12px 0;
}

.product-badge-check {
  font-size: 13px;
  color: #333;
  margin: 0;
}

/* --- Label de categoria --- */
.product-category-label {
  font-size: 11px;
  font-weight: 800;
  color: #e53935;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

/* --- Descrição do produto --- */
.product-description {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 8px;
}

/* --- Responsivo mobile --- */
@media (max-width: 480px) {
  .modelo-quadro-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .modelo-quadro-item span {
    font-size: 9px;
  }

  .upload-area {
    width: 90px;
    height: 90px;
  }
}
/* ============================================
   ADICIONE ESTE BLOCO AO FINAL DO SEU style.css
   ============================================ */

/* --- Cabeçalho de personalização --- */
.personalize-header {
  background: #111;
  color: #fff;
  text-align: center;
  font-weight: 800;
  font-size: 14px;
  padding: 14px;
  border-radius: 8px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

/* --- Grupo de campo --- */
.custom-field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.custom-field-group label {
  font-size: 13px;
  font-weight: 700;
  color: #222;
}

.custom-field-group input[type="text"],
.custom-field-group input[type="date"],
.custom-field-group select,
.custom-field-group textarea {
  border: 1.5px solid #ddd;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 14px;
  font-family: inherit;
  color: #333;
  outline: none;
  transition: border-color 0.2s;
  background: #fafafa;
}

.custom-field-group input:focus,
.custom-field-group select:focus,
.custom-field-group textarea:focus {
  border-color: #e53935;
  background: #fff;
}

.custom-field-group textarea { min-height: 90px; resize: vertical; }

/* --- Grid de modelos --- */
.modelo-quadro-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 6px;
}

.modelo-quadro-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  border-radius: 10px;
  border: 2.5px solid transparent;
  padding: 6px;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #f9f9f9;
  position: relative;
}

.modelo-quadro-item img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 7px;
}

.modelo-quadro-item span {
  font-size: 10px;
  font-weight: 700;
  color: #444;
  text-align: center;
  line-height: 1.2;
}

.modelo-quadro-item:hover { border-color: #e53935; box-shadow: 0 2px 10px rgba(229,57,53,.15); }

.modelo-quadro-item.selected {
  border-color: #e53935;
  box-shadow: 0 2px 12px rgba(229,57,53,.25);
  background: #fff5f5;
}

.modelo-quadro-item.selected::after {
  content: '✓';
  position: absolute;
  top: 4px; right: 6px;
  background: #e53935;
  color: #fff;
  border-radius: 50%;
  width: 18px; height: 18px;
  font-size: 11px; font-weight: 900;
  line-height: 18px; text-align: center;
}

/* --- Upload --- */
.upload-area {
  width: 110px; height: 110px;
  border: 2px dashed #ccc;
  border-radius: 10px;
  cursor: pointer;
  overflow: hidden;
  background: #f5f5f5;
  transition: border-color 0.2s;
}

.upload-area:hover { border-color: #e53935; }

.upload-preview {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}

.upload-plus { font-size: 36px; color: #aaa; line-height: 1; font-weight: 300; }

.btn-upload {
  display: inline-block;
  margin-top: 8px;
  background: #111; color: #fff;
  border: none; border-radius: 8px;
  padding: 10px 20px;
  font-size: 13px; font-weight: 700;
  cursor: pointer; font-family: inherit;
  transition: background 0.2s;
}

.btn-upload:hover { background: #333; }
.upload-hint { font-size: 12px; color: #888; margin: 4px 0 0; font-style: italic; }

/* --- Badges --- */
.product-badges-list { display: flex; flex-direction: column; gap: 4px; margin: 12px 0; }
.product-badge-check { font-size: 13px; color: #333; margin: 0; }
.product-category-label { font-size: 11px; font-weight: 800; color: #e53935; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.product-description { font-size: 14px; color: #555; line-height: 1.6; margin-bottom: 8px; }

/* ============================================
   ACORDEÃO DE DESCRIÇÃO
   ============================================ */
.accordion {
  border: 1px solid #eee;
  border-radius: 10px;
  margin-top: 24px;
  overflow: hidden;
}

.accordion-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: #f7f7f7;
  border: none;
  font-size: 14px;
  font-weight: 700;
  color: #222;
  cursor: pointer;
  font-family: inherit;
}

.accordion-icon { font-size: 20px; color: #e53935; }

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 18px;
}

.accordion-body.open {
  max-height: 2000px;
  padding: 18px;
}

.desc-intro {
  font-size: 15px;
  color: #333;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 500;
}

.desc-footer {
  font-size: 13px;
  color: #555;
  margin: 16px 0;
  font-style: italic;
}

/* Features cards */
.features-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 10px;
  padding: 14px;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
}

.feature-emoji { font-size: 26px; flex-shrink: 0; }
.feature-card strong { font-size: 14px; color: #111; display: block; margin-bottom: 3px; }
.feature-card p { font-size: 13px; color: #666; margin: 0; line-height: 1.4; }

/* Itens da cesta */
.itens-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 10px;
  padding: 16px 18px;
  margin-bottom: 14px;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
}

.itens-card h4 { font-size: 14px; font-weight: 800; color: #111; margin: 0 0 10px; }

.itens-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 7px; }

.itens-card li { font-size: 13px; color: #444; display: flex; align-items: flex-start; gap: 8px; }

.check-icon { color: #e53935; font-weight: 900; flex-shrink: 0; }

/* ============================================
   FAQ
   ============================================ */
.faq-section { margin-top: 32px; }

.faq-title {
  font-size: 22px;
  font-weight: 800;
  color: #111;
  text-align: center;
  margin-bottom: 6px;
}

.faq-subtitle {
  font-size: 13px;
  color: #777;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.5;
}

.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
}

.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #fff;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}

.faq-emoji { font-size: 22px; flex-shrink: 0; }

.faq-question { font-size: 14px; font-weight: 700; color: #111; flex: 1; line-height: 1.3; }

.faq-arrow {
  font-size: 12px;
  color: #888;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 16px;
}

.faq-answer.open {
  max-height: 400px;
  padding: 0 16px 16px;
}

.faq-answer p { font-size: 13px; color: #555; line-height: 1.6; margin: 0; }

/* ============================================
   AVALIAÇÕES
   ============================================ */
.avaliacoes-section { margin-top: 36px; }

.avaliacoes-label {
  font-size: 12px;
  font-weight: 800;
  color: #e53935;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.avaliacoes-title {
  font-size: 24px;
  font-weight: 800;
  color: #111;
  text-align: center;
  margin-bottom: 20px;
}

.avaliacoes-list { display: flex; flex-direction: column; gap: 16px; }

.avaliacao-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

.avaliacao-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.avaliacao-nome { font-size: 15px; font-weight: 800; color: #111; margin: 0 0 2px; }
.avaliacao-cidade { font-size: 12px; color: #888; margin: 0; }
.avaliacao-stars { color: #f4b740; font-size: 16px; letter-spacing: 1px; }

.avaliacao-texto {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 14px;
  font-style: italic;
}

.avaliacao-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f5f5f5;
  padding-top: 12px;
}

.avaliacao-curtir { font-size: 13px; color: #888; cursor: pointer; }
.avaliacao-curtir:hover { color: #e53935; }
.avaliacao-count { font-size: 12px; color: #aaa; }

/* --- Responsivo --- */
@media (max-width: 480px) {
  .modelo-quadro-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .modelo-quadro-item span { font-size: 9px; }
  .upload-area { width: 90px; height: 90px; }
  .avaliacoes-title { font-size: 20px; }
}/* ============================================
   ADICIONE ESTE BLOCO AO FINAL DO SEU style.css
   ============================================ */

/* --- Cabeçalho de personalização --- */
.personalize-header {
  background: #111;
  color: #fff;
  text-align: center;
  font-weight: 800;
  font-size: 14px;
  padding: 14px;
  border-radius: 8px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

/* --- Grupo de campo --- */
.custom-field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.custom-field-group label {
  font-size: 13px;
  font-weight: 700;
  color: #222;
}

.custom-field-group input[type="text"],
.custom-field-group input[type="date"],
.custom-field-group select,
.custom-field-group textarea {
  border: 1.5px solid #ddd;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 14px;
  font-family: inherit;
  color: #333;
  outline: none;
  transition: border-color 0.2s;
  background: #fafafa;
}

.custom-field-group input:focus,
.custom-field-group select:focus,
.custom-field-group textarea:focus {
  border-color: #e53935;
  background: #fff;
}

.custom-field-group textarea { min-height: 90px; resize: vertical; }

/* --- Grid de modelos --- */
.modelo-quadro-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 6px;
}

.modelo-quadro-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  border-radius: 10px;
  border: 2.5px solid transparent;
  padding: 6px;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #f9f9f9;
  position: relative;
}

.modelo-quadro-item img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 7px;
}

.modelo-quadro-item span {
  font-size: 10px;
  font-weight: 700;
  color: #444;
  text-align: center;
  line-height: 1.2;
}

.modelo-quadro-item:hover { border-color: #e53935; box-shadow: 0 2px 10px rgba(229,57,53,.15); }

.modelo-quadro-item.selected {
  border-color: #e53935;
  box-shadow: 0 2px 12px rgba(229,57,53,.25);
  background: #fff5f5;
}

.modelo-quadro-item.selected::after {
  content: '✓';
  position: absolute;
  top: 4px; right: 6px;
  background: #e53935;
  color: #fff;
  border-radius: 50%;
  width: 18px; height: 18px;
  font-size: 11px; font-weight: 900;
  line-height: 18px; text-align: center;
}

/* --- Upload --- */
.upload-area {
  width: 110px; height: 110px;
  border: 2px dashed #ccc;
  border-radius: 10px;
  cursor: pointer;
  overflow: hidden;
  background: #f5f5f5;
  transition: border-color 0.2s;
}

.upload-area:hover { border-color: #e53935; }

.upload-preview {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}

.upload-plus { font-size: 36px; color: #aaa; line-height: 1; font-weight: 300; }

.btn-upload {
  display: inline-block;
  margin-top: 8px;
  background: #111; color: #fff;
  border: none; border-radius: 8px;
  padding: 10px 20px;
  font-size: 13px; font-weight: 700;
  cursor: pointer; font-family: inherit;
  transition: background 0.2s;
}

.btn-upload:hover { background: #333; }
.upload-hint { font-size: 12px; color: #888; margin: 4px 0 0; font-style: italic; }

/* --- Badges --- */
.product-badges-list { display: flex; flex-direction: column; gap: 4px; margin: 12px 0; }
.product-badge-check { font-size: 13px; color: #333; margin: 0; }
.product-category-label { font-size: 11px; font-weight: 800; color: #e53935; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.product-description { font-size: 14px; color: #555; line-height: 1.6; margin-bottom: 8px; }

/* ============================================
   ACORDEÃO DE DESCRIÇÃO
   ============================================ */
.accordion {
  border: 1px solid #eee;
  border-radius: 10px;
  margin-top: 24px;
  overflow: hidden;
}

.accordion-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: #f7f7f7;
  border: none;
  font-size: 14px;
  font-weight: 700;
  color: #222;
  cursor: pointer;
  font-family: inherit;
}

.accordion-icon { font-size: 20px; color: #e53935; }

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 18px;
}

.accordion-body.open {
  max-height: 2000px;
  padding: 18px;
}

.desc-intro {
  font-size: 15px;
  color: #333;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 500;
}

.desc-footer {
  font-size: 13px;
  color: #555;
  margin: 16px 0;
  font-style: italic;
}

/* Features cards */
.features-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 10px;
  padding: 14px;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
}

.feature-emoji { font-size: 26px; flex-shrink: 0; }
.feature-card strong { font-size: 14px; color: #111; display: block; margin-bottom: 3px; }
.feature-card p { font-size: 13px; color: #666; margin: 0; line-height: 1.4; }

/* Itens da cesta */
.itens-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 10px;
  padding: 16px 18px;
  margin-bottom: 14px;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
}

.itens-card h4 { font-size: 14px; font-weight: 800; color: #111; margin: 0 0 10px; }

.itens-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 7px; }

.itens-card li { font-size: 13px; color: #444; display: flex; align-items: flex-start; gap: 8px; }

.check-icon { color: #e53935; font-weight: 900; flex-shrink: 0; }

/* ============================================
   FAQ
   ============================================ */
.faq-section { margin-top: 32px; }

.faq-title {
  font-size: 22px;
  font-weight: 800;
  color: #111;
  text-align: center;
  margin-bottom: 6px;
}

.faq-subtitle {
  font-size: 13px;
  color: #777;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.5;
}

.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
}

.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #fff;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}

.faq-emoji { font-size: 22px; flex-shrink: 0; }

.faq-question { font-size: 14px; font-weight: 700; color: #111; flex: 1; line-height: 1.3; }

.faq-arrow {
  font-size: 12px;
  color: #888;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 16px;
}

.faq-answer.open {
  max-height: 400px;
  padding: 0 16px 16px;
}

.faq-answer p { font-size: 13px; color: #555; line-height: 1.6; margin: 0; }

/* ============================================
   AVALIAÇÕES
   ============================================ */
.avaliacoes-section { margin-top: 36px; }

.avaliacoes-label {
  font-size: 12px;
  font-weight: 800;
  color: #e53935;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.avaliacoes-title {
  font-size: 24px;
  font-weight: 800;
  color: #111;
  text-align: center;
  margin-bottom: 20px;
}

.avaliacoes-list { display: flex; flex-direction: column; gap: 16px; }

.avaliacao-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

.avaliacao-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.avaliacao-nome { font-size: 15px; font-weight: 800; color: #111; margin: 0 0 2px; }
.avaliacao-cidade { font-size: 12px; color: #888; margin: 0; }
.avaliacao-stars { color: #f4b740; font-size: 16px; letter-spacing: 1px; }

.avaliacao-texto {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 14px;
  font-style: italic;
}

.avaliacao-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f5f5f5;
  padding-top: 12px;
}

.avaliacao-curtir { font-size: 13px; color: #888; cursor: pointer; }
.avaliacao-curtir:hover { color: #e53935; }
.avaliacao-count { font-size: 12px; color: #aaa; }

/* Foto da avaliação */
.avaliacao-foto {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
  display: block;
}

/* ============================================
   BLOCO DE PREÇOS COM PIX
   ============================================ */
.preco-bloco {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 4px 0;
}

.price-old {
  font-size: 13px;
  color: #aaa;
  text-decoration: line-through;
  margin: 0;
}

.price-cartao {
  font-size: 15px;
  color: #444;
  margin: 0;
}

.price-cartao strong {
  color: #111;
  font-size: 17px;
}

.installment {
  font-size: 13px;
  color: #777;
  margin: 0 0 8px;
}

.price-pix-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #f0faf0;
  border: 1.5px solid #4caf50;
  border-radius: 12px;
  padding: 12px 16px;
  margin-top: 4px;
}

.pix-badge {
  background: #4caf50;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  padding: 6px 10px;
  border-radius: 8px;
  letter-spacing: 1px;
  flex-shrink: 0;
}

.price-pix {
  font-size: 22px;
  font-weight: 900;
  color: #2e7d32;
  margin: 0;
  line-height: 1.2;
}

.pix-desconto {
  font-size: 12px;
  color: #4caf50;
  font-weight: 700;
  margin: 2px 0 0;
}

/* --- Responsivo --- */
@media (max-width: 480px) {
  .modelo-quadro-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .modelo-quadro-item span { font-size: 9px; }
  .upload-area { width: 90px; height: 90px; }
  .avaliacoes-title { font-size: 20px; }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .hamburger { display: flex; margin-left: 0; } /* remove o auto daqui */

  .header-actions {
    margin-left: auto; /* empurra tudo para a direita */
    order: 2;
  }

  .hamburger {
    order: 3; /* hamburger vai depois do carrinho */
  }
}