/* Reset e base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f8f9fa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background: #051c50;
  box-shadow: 0 2px 8px rgba(5, 28, 80, 0.25);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0.75rem 0;
  flex-wrap: nowrap;
  gap: 1rem;
}

.header .logo {
  flex-shrink: 0;
}

.header .nav {
  flex: 1;
  min-width: 0;
}

.header-ad-slot {
  flex: 0 0 30%;
  max-width: 30%;
  min-width: 120px;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header .search-form {
  display: flex;
  flex: 1;
  min-width: 0;
  max-width: 100%;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: bold;
}

.logo-img {
  height: 38px;
  width: auto;
  border-radius: 6px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.main-nav-link {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.25rem 0;
  white-space: nowrap;
}

.main-nav-link:hover {
  color: #fff;
  text-decoration: underline;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Banner WhatsApp e Telegram */
.whatsapp-banner {
  background: #25d366;
  overflow: hidden;
}

.social-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 0.4rem 0;
}

.whatsapp-banner-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
}

.telegram-banner-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  background: rgba(255,255,255,0.2);
  border-radius: 6px;
  text-decoration: none;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
}

.telegram-banner-link:hover {
  background: rgba(255,255,255,0.3);
}

.whatsapp-banner-link:hover {
  opacity: 0.9;
}

.wpp-icon-pulse {
  display: flex;
  align-items: center;
  animation: wppPulse 1.5s ease-in-out infinite;
}

@keyframes wppPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.25); }
}

.wpp-text-scroll {
  display: inline-block;
  animation: wppSlideIn 0.8s ease-out;
}

@keyframes wppSlideIn {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 600px) {
  .whatsapp-banner-link {
    font-size: 0.72rem;
  }

  .wpp-text-scroll {
    white-space: normal;
    text-align: center;
    line-height: 1.3;
  }

  .social-banner {
    flex-direction: column;
    gap: 0.5rem;
  }

  .telegram-float {
    right: 5rem;
  }
}

/* Barra de categorias */
.categories-bar {
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  position: sticky;
  top: 0;
  z-index: 99;
}

.categories-bar .container {
  overflow: visible;
  padding-left: 20px;
  padding-right: 20px;
}

.categories-list {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-left: 0;
  padding-right: 40px;
  margin-right: -20px;
}


.categories-list::-webkit-scrollbar {
  display: none;
}

.categories-list .cat-link {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 0.65rem 1.1rem;
  color: #555;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
  flex-shrink: 0;
}

.categories-list .cat-link:hover {
  color: #051c50;
  background: #f0f3fa;
  border-bottom-color: #051c50;
}

.categories-list .cat-link.active {
  color: #051c50;
  background: #e8edf8;
  border-bottom-color: #051c50;
  font-weight: 600;
}

.categories-list .cat-link-spacer {
  flex-shrink: 0;
  min-width: 40px;
  display: inline-block;
}

.categories-list .cat-empty {
  padding: 0.5rem 1rem;
  color: #aaa;
  font-size: 0.85rem;
}

/* Busca */
.search-form {
  display: flex;
  gap: 0;
}

.search-input {
  padding: 0.5rem 0.75rem;
  border: 2px solid #ddd;
  border-radius: 6px 0 0 6px;
  font-size: 0.9rem;
  flex: 1;
  min-width: 0;
}

.search-input:focus {
  outline: none;
  border-color: #051c50;
}

.search-btn {
  background: #051c50;
  color: white;
  border: 2px solid #051c50;
  border-left: none;
  border-radius: 0 6px 6px 0;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.15s;
}

.search-btn:hover {
  background: #0a2e7a;
}

/* Main content */
.main {
  min-height: calc(100vh - 200px);
  padding: 2rem 0;
}

/* Hero Banner */
.hero-banner {
  background: linear-gradient(135deg, #051c50 0%, #0a2e7a 50%, #051c50 100%);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 350px;
  height: 350px;
  background: rgba(37, 211, 102, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.hero-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: #25d366;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
  animation: heroPulse 2s ease-in-out infinite;
}

@keyframes heroPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
}

.hero-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 500px;
  margin: 0 auto 1.5rem;
  line-height: 1.5;
}

.hero-cta {
  display: inline-block;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  padding: 0.8rem 2.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.hero-cta:hover {
  background: #1fb855;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.hero-affiliate {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.72rem;
  margin-top: 1.25rem;
}

@media (max-width: 768px) {
  .hero-banner {
    padding: 2rem 1.5rem;
    border-radius: 12px;
  }

  .hero-title {
    font-size: 1.6rem;
  }

  .hero-subtitle {
    font-size: 0.92rem;
  }

  .hero-cta {
    padding: 0.7rem 2rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.35rem;
  }

  .hero-banner {
    padding: 1.75rem 1.25rem;
  }
}

/* Category header */
.category-header {
  text-align: center;
  margin-bottom: 3rem;
}

.category-header h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.category-header p {
  font-size: 1.1rem;
  color: #666;
}

/* Search header */
.search-header {
  text-align: center;
  margin-bottom: 3rem;
}

.search-header h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.search-header p {
  font-size: 1.1rem;
  color: #666;
}

/* Páginas institucionais (Quem somos, Política de Privacidade) */
.page-content .lead {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
}

.article-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.article-card {
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  border: 1px solid #e8e8e8;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  overflow: hidden;
}

.article-card h2 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.article-card h2 a {
  color: #051c50;
  text-decoration: none;
}

.article-card h2 a:hover {
  text-decoration: underline;
}

.article-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  margin: -1.5rem -1.5rem 1rem -1.5rem;
}

.article-card p {
  margin-bottom: 0.75rem;
  color: #555;
}

.article-link {
  font-weight: 600;
  color: #051c50;
  text-decoration: none;
}

.article-link:hover {
  text-decoration: underline;
}

.article-content .article-meta {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 1rem;
}

.article-content .article-meta a {
  color: #051c50;
}

.article-content .btn-buy {
  display: inline-block;
  margin: 1.5rem 0;
}

.article-product-block {
  background: #fff;
  border-radius: 10px;
  padding: 0;
  margin: 1.5rem 0;
  border: 1px solid #e0e4e8;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.article-product-block-header {
  background: #f0f4f8;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #e0e4e8;
  margin-bottom: 1rem;
}

.article-product-block-header h3 {
  margin: 0;
  font-size: 1.15rem;
  color: #333;
}

.article-product-block > .article-product-img {
  display: block;
  margin: 0 1.5rem 1rem;
}

.article-product-block > p,
.article-product-block > h4 {
  padding: 0 1.5rem;
}

.article-product-block > p:first-of-type {
  padding-top: 1.25rem;
}

.article-product-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  display: block;
  margin-bottom: 1rem;
  object-fit: cover;
}

.article-product-block h4 {
  font-size: 1rem;
  color: #444;
  margin: 1.25rem 0 0.5rem;
  padding-top: 0;
}

.btn-compre-ja {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  background: #051c50;
  color: #fff !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: background 0.2s, transform 0.15s;
}

.btn-compre-ja:hover {
  background: #0a2d6e;
  transform: translateY(-1px);
}

.btn-compre-ja .cart-icon {
  flex-shrink: 0;
}

/* CTA no topo do artigo - antes da lista */
.article-cta-top {
  background: linear-gradient(135deg, #051c50 0%, #0a2d6e 100%);
  color: #fff;
  padding: 1.5rem 1.75rem;
  border-radius: 10px;
  margin: 1.5rem 0 2rem;
  text-align: center;
}

.article-cta-top .article-cta-text {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff !important;
}

.article-cta-top .btn-cta-mercado {
  display: inline-block;
  background: #ffdb00;
  color: #051c50;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.article-cta-top .btn-cta-mercado:hover {
  background: #ffe033;
  transform: translateY(-2px);
}

.article-cta-top .article-cta-affiliate {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  opacity: 0.95;
  color: rgba(255, 255, 255, 0.9) !important;
}

/* CTA final — última chance antes de voltar ao blog */
.article-cta-final {
  background: linear-gradient(135deg, #051c50 0%, #0a2d6e 100%);
  color: #fff;
  padding: 1.5rem 1.75rem;
  border-radius: 10px;
  margin: 2rem 0 1.5rem;
  text-align: center;
}

.article-cta-final .article-cta-text {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff !important;
}

.article-cta-final .btn-cta-mercado {
  display: inline-block;
  background: #ffdb00;
  color: #051c50;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.article-cta-final .btn-cta-mercado:hover {
  background: #ffe033;
  transform: translateY(-2px);
}

/* Bloco de compra no blog - agrupa aviso + botão */
.article-product-block .buy-block {
  margin-top: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: #f0f4f8;
  border-top: 1px solid #e0e4e8;
}

.article-product-block .buy-block .price-disclaimer-inline {
  font-size: 0.78rem;
  color: #666;
  margin: 0 0 0.5rem;
}

.article-product-block .buy-block .btn-compre-ja {
  margin-top: 0;
}

.contact-form-page {
  max-width: 500px;
  margin: 1.5rem 0;
}

/* Formulário de contato em página dedicada (fundo claro) */
.contact-form-page .contact-field input,
.contact-form-page .contact-field textarea {
  background: #fff;
  color: #333;
  border: 1px solid #ccc;
}

.contact-form-page .contact-field input::placeholder,
.contact-form-page .contact-field textarea::placeholder {
  color: #888;
}

.contact-form-page .contact-field input:focus,
.contact-form-page .contact-field textarea:focus {
  border-color: #051c50;
  background: #fff;
}

.contact-form-page .contact-status.success {
  color: #1a7f37;
}

.contact-form-page .contact-status.error {
  color: #c41e3a;
}

.contact-form-page .btn-contact-send {
  background: #051c50;
  color: #fff;
  padding: 0.65rem 1.75rem;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: background 0.2s, transform 0.15s;
}

.contact-form-page .btn-contact-send:hover:not(:disabled) {
  background: #0a2d6e;
  transform: translateY(-1px);
}

/* Overlay de loading ao enviar contato */
.contact-loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}

.contact-loading-overlay.active {
  opacity: 1;
  visibility: visible;
}

.contact-loading-box {
  background: #fff;
  padding: 2rem 2.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.contact-loading-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid #e0e0e0;
  border-top-color: #051c50;
  border-radius: 50%;
  animation: contactSpin 0.8s linear infinite;
  margin: 0 auto 1rem;
}

@keyframes contactSpin {
  to { transform: rotate(360deg); }
}

.contact-loading-text {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
}

/* Caixa de diálogo sucesso/falha */
.contact-dialog-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}

.contact-dialog-overlay.active {
  opacity: 1;
  visibility: visible;
}

.contact-dialog {
  background: #fff;
  max-width: 400px;
  width: 90%;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  text-align: center;
}

.contact-dialog.success .contact-dialog-icon { color: #1a7f37; }
.contact-dialog.error .contact-dialog-icon { color: #c41e3a; }

.contact-dialog-icon {
  font-size: 3rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.contact-dialog-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.contact-dialog-message {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.contact-dialog-btn {
  background: #051c50;
  color: #fff;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.contact-dialog-btn:hover {
  background: #0a2d6e;
}

.legal-content {
  max-width: 720px;
  margin: 0 auto 3rem;
  padding: 2rem 0;
}

.legal-content h1,
.article-content h1 {
  font-size: 1.8rem;
  color: #051c50;
  margin-bottom: 0.5rem;
}

.legal-content .legal-updated {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 2rem;
}

.legal-content h2,
.article-content h2 {
  font-size: 1.25rem;
  color: #333;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-content h3,
.article-content h3 {
  font-size: 1.1rem;
  color: #444;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

.article-content h4 {
  font-size: 1rem;
  color: #444;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.legal-content p,
.article-content p {
  line-height: 1.7;
  color: #555;
  margin-bottom: 1rem;
}

.legal-content ul {
  margin: 0.5rem 0 1rem 1.5rem;
  line-height: 1.7;
  color: #555;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-content a {
  color: #051c50;
  text-decoration: underline;
}

.legal-content a:hover {
  color: #0a2d7a;
}

.legal-content .btn-back,
.article-content .btn-back {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.5rem 1rem;
  background: #051c50;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
}

.legal-content .btn-back:hover,
.article-content .btn-back:hover {
  background: #0a2d7a;
}

.section-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #051c50;
}

/* Products grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

/* Destaques - carrossel com setas */
.destaques-section {
  margin-bottom: 0.5rem;
  position: relative;
}

.destaques-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.destaques-section .section-title {
  margin-bottom: 0;
}

.destaques-updated {
  font-size: 0.8rem;
  color: #666;
  font-weight: 500;
}

.destaques-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}

.destaques-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: #051c50;
  color: white;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, opacity 0.2s;
  padding: 0;
}

.destaques-arrow:hover {
  background: #0a2e7a;
}

.destaques-arrow:active {
  background: #051c50;
}

.destaques-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 0.5rem;
  flex: 1;
  min-width: 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.destaques-scroll::-webkit-scrollbar {
  height: 6px;
}

.destaques-scroll::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 3px;
}

.destaques-scroll::-webkit-scrollbar-thumb {
  background: #051c50;
  border-radius: 3px;
}

.destaques-track {
  display: flex;
  width: max-content;
}

.destaques-list {
  display: flex;
  gap: 1rem;
  padding: 0 20px;
  flex-shrink: 0;
}

/* Cards na lista de destaques - tamanho menor, mesmo padrão */
.destaques-list .product-card {
  flex: 0 0 200px;
  min-width: 200px;
  font-size: 0.9em;
}

.destaques-list .product-card .product-image {
  aspect-ratio: 1;
  height: auto;
}

.destaques-list .product-card .product-cupom-badge {
  font-size: 0.65rem;
  padding: 0.2rem 0.4rem;
}

.destaques-list .product-card .product-image > img.product-main-img {
  height: 100%;
  object-fit: contain;
}

.destaques-list .product-card .product-content {
  padding: 0.6rem;
}

.destaques-list .product-card .product-title {
  font-size: 0.9rem;
}

.destaques-list .product-card .product-price {
  font-size: 1rem;
}

.destaques-list .product-card .btn-view,
.destaques-list .product-card .btn-buy {
  padding: 0.4rem 0.6rem;
  font-size: 0.8rem;
}

.destaques-list .product-card .share-btn {
  width: 30px;
  height: 30px;
}

.destaques-list .product-card .share-btn svg {
  width: 14px;
  height: 14px;
}

.destaques-list .product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* Product card */
.product-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.product-image {
  position: relative;
  background: #f8f9fa;
  overflow: hidden;
}

.product-cupom-badge {
  position: absolute;
  top: 0.4rem;
  right: 0.4rem;
  background: linear-gradient(135deg, #051c50 0%, #0a2e7a 100%);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  z-index: 2;
  white-space: nowrap;
  animation: cupomBadgePulse 2s ease-in-out infinite;
}

@keyframes cupomBadgePulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2), 0 0 0 0 rgba(255, 219, 0, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25), 0 0 12px 2px rgba(255, 219, 0, 0.3);
  }
}

.product-image > img.product-main-img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  display: block;
  transition: transform 0.3s, opacity 0.15s;
  cursor: zoom-in;
  background: #fff;
}

.product-card:hover .product-image > img.product-main-img {
  transform: scale(1.03);
}

.product-thumbs {
  display: flex;
  gap: 4px;
  padding: 6px 8px;
  background: #f1f1f1;
  overflow-x: auto;
  scrollbar-width: none;
}

.product-thumbs::-webkit-scrollbar {
  display: none;
}

.thumb-small {
  width: 40px;
  height: 40px;
  min-width: 40px;
  object-fit: cover;
  border-radius: 4px;
  cursor: zoom-in;
  border: 2px solid transparent;
  transition: border-color 0.2s;
  background: #fff;
}

.thumb-small:hover,
.thumb-small.active {
  border-color: #051c50;
}

.thumb-more {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
}

.img-counter {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 10px;
  pointer-events: none;
}

/* Lightbox */
.image-lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.image-lightbox.active {
  display: flex;
}

.image-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
}

.image-lightbox-content {
  position: relative;
  z-index: 1;
  max-width: 92vw;
  max-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-lightbox-img {
  display: block;
  max-width: 80vw;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  user-select: none;
  -webkit-user-drag: none;
}

.image-lightbox-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.image-lightbox-prev,
.image-lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  color: #333;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.image-lightbox-prev:hover,
.image-lightbox-next:hover {
  background: #fff;
}

.image-lightbox-prev {
  left: 1rem;
}

.image-lightbox-next {
  right: 1rem;
}

.image-lightbox-counter {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  z-index: 2;
}

@media (max-width: 768px) {
  .image-lightbox-img {
    max-width: 95vw;
    max-height: 80vh;
  }

  .image-lightbox-prev,
  .image-lightbox-next {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.1rem;
  }

  .image-lightbox-prev { left: 0.5rem; }
  .image-lightbox-next { right: 0.5rem; }
}

.no-image {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  color: #999;
  font-size: 1.2rem;
}

.product-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-title a {
  color: #333;
  text-decoration: none;
}

.product-title a:hover {
  color: #051c50;
}

.product-category {
  display: inline-block;
  background: #e8edf8;
  color: #051c50;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.product-plataforma {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #f5f5f5;
  color: #333;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  margin: 0.35rem 0;
  border: 1px solid #e0e0e0;
}

.product-plataforma-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}

.product-price-block {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 0.5rem 0;
}

.product-price-original {
  font-size: 0.85rem;
  color: #999;
  text-decoration: line-through;
}

.product-price {
  font-size: 1.75rem;
  font-weight: 800;
  color: #051c50;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.product-cupom-hint {
  font-size: 0.8rem;
  color: #051c50;
  font-weight: 600;
  margin: 0.25rem 0 0;
  padding: 0.2rem 0;
}

.product-cupom-slot {
  min-height: 1.6rem;
  margin: 0;
  padding: 0;
  visibility: hidden;
}

.product-cupom {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin: 0.4rem 0;
  padding: 0.35rem 0.6rem;
  background: linear-gradient(135deg, #051c50 0%, #0a2e7a 100%);
  color: #fff;
  border-radius: 6px;
  font-size: 0.85rem;
}

.product-cupom .cupom-label {
  font-weight: 500;
}

.product-cupom .cupom-codigo {
  background: rgba(255,255,255,0.2);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.product-cupom .cupom-valor {
  color: #ffd700;
  font-weight: 600;
}

.product-discount {
  display: inline-block;
  background: #25d366;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
}

.product-description {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.product-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: stretch;
  margin-top: auto;
  padding-top: 0.75rem;
}

.product-actions .btn-view,
.product-actions .btn-buy {
  width: 100%;
  text-align: center;
}

.product-share {
  display: flex;
  gap: 0.35rem;
  justify-content: flex-end;
  margin-top: 0.25rem;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: #f0f0f0;
  color: #555;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.share-btn:hover {
  transform: scale(1.08);
}

.share-generic:hover { background: #051c50; color: #fff; }

.btn-view {
  background: #fff;
  color: #051c50;
  border: 1.5px solid #051c50;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
}

.btn-view:hover {
  background: #051c50;
  color: #fff;
}

.btn-buy {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  padding: 0.65rem 1.2rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.15s, box-shadow 0.15s, transform 0.15s;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.btn-buy:hover {
  background: #1fb855;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  transform: translateY(-1px);
}

.btn-buy:hover .cart-icon {
  animation: cartBounce 0.5s ease;
}

.cart-icon {
  flex-shrink: 0;
}

@keyframes cartBounce {
  0% { transform: translateX(0); }
  25% { transform: translateX(3px) rotate(-8deg); }
  50% { transform: translateX(-2px) rotate(5deg); }
  75% { transform: translateX(1px) rotate(-3deg); }
  100% { transform: translateX(0) rotate(0); }
}

/* Product detail */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .product-detail {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gallery-main {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.gallery-main img {
  width: 100%;
  height: auto;
  display: block;
}

.no-image-large {
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  color: #999;
  font-size: 1.5rem;
}

.gallery-thumbs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}

.thumb:hover,
.thumb.active {
  border-color: #051c50;
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-title-large {
  font-size: 2rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.product-category-large {
  display: inline-block;
  background: #e8edf8;
  color: #051c50;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  align-self: flex-start;
}

.product-description-full {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
}

.product-meta {
  margin-top: auto;
}

.product-date {
  color: #999;
  font-size: 0.9rem;
}

.product-buy-section {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}

.btn-buy-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  transition: background 0.15s, box-shadow 0.15s, transform 0.15s;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.btn-buy-large:hover {
  background: #1fb855;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  transform: translateY(-1px);
}

.btn-buy-large:hover .cart-icon {
  animation: cartBounce 0.5s ease;
}

.buy-note {
  color: #666;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  text-align: center;
}

.no-link {
  text-align: center;
  color: #999;
  font-style: italic;
}

/* Empty states */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.empty-state h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.empty-state p {
  color: #666;
  margin-bottom: 1.5rem;
}

.btn-back {
  display: inline-block;
  background: #051c50;
  color: white;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 500;
  transition: background 0.15s;
}

.btn-back:hover {
  background: #0a2e7a;
}

.empty-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.search-again {
  display: flex;
  gap: 0;
}

.search-input-small {
  padding: 0.5rem 0.75rem;
  border: 2px solid #ddd;
  border-radius: 6px 0 0 6px;
  font-size: 0.9rem;
  min-width: 200px;
}

.search-btn-small {
  background: #051c50;
  color: white;
  border: 2px solid #051c50;
  border-left: none;
  border-radius: 0 6px 6px 0;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-size: 0.9rem;
}

/* Paginação */
.pagination-wrapper {
  margin-top: 2rem;
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.pagination-info {
  color: #666;
  font-size: 0.9rem;
}

.pagination-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pagination-list li {
  margin: 0;
}

.pagination-num,
.pagination-btn {
  display: inline-block;
  padding: 0.5rem 0.9rem;
  min-width: 2.5rem;
  text-align: center;
  text-decoration: none;
  color: #051c50;
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.15s;
}

.pagination-num:hover,
.pagination-btn:hover {
  background: #051c50;
  color: white;
  border-color: #051c50;
}

.pagination-current {
  background: #051c50 !important;
  color: white !important;
  border-color: #051c50 !important;
  cursor: default;
}

.pagination-current:hover {
  background: #051c50 !important;
  color: white !important;
}

.pagination-ellipsis {
  padding: 0 0.5rem;
  color: #999;
}

/* Loading */
.loading {
  text-align: center;
  padding: 2rem;
  color: #666;
}

/* Error */
.error-state {
  text-align: center;
  padding: 2rem;
  color: #dc3545;
  background: #f8d7da;
  border-radius: 8px;
}

/* Breadcrumb */
.breadcrumb {
  margin-bottom: 2rem;
}

.breadcrumb a {
  color: #051c50;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  background: #051c50;
  color: white;
  padding: 2rem 0;
  margin-top: auto;
}

.footer .container {
  text-align: center;
}

.footer p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.footer-whatsapp,
.footer-telegram {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 0.5rem;
  transition: opacity 0.15s;
}

.footer-whatsapp {
  color: #25d366;
}

.footer-whatsapp:hover,
.footer-telegram:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.footer-telegram {
  color: #0088cc;
}

/* WhatsApp flutuante */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  z-index: 9000;
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* Telegram flutuante */
.telegram-float {
  position: fixed;
  bottom: 1.5rem;
  right: 5.75rem;
  width: 56px;
  height: 56px;
  background: #0088cc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 136, 204, 0.4);
  z-index: 9000;
  transition: transform 0.2s, box-shadow 0.2s;
}

.telegram-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 136, 204, 0.5);
}


/* Responsivo */
@media (max-width: 768px) {
  .header-ad-slot {
    flex: 0 0 25%;
    max-width: 25%;
    min-width: 90px;
  }

  .header-content {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0;
  }

  .header .logo {
    order: 1;
  }

  .header .header-ad-slot {
    order: 2;
  }

  .header .nav {
    order: 3;
    flex: 1 1 100%;
    width: 100%;
    margin-top: 0.25rem;
  }

  .header .search-form {
    width: 100%;
    flex: 1 1 100%;
  }

  .header .logo a {
    font-size: 0.95rem;
  }

  .logo-img {
    height: 28px;
  }

  .header .search-input {
    flex: 1;
    min-width: 0;
  }

  .header .search-btn {
    flex-shrink: 0;
    min-width: 44px;
    min-height: 40px;
  }

  .categories-list .cat-link {
    padding: 0.55rem 0.85rem;
    font-size: 0.82rem;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
  }

  .destaques-list .product-card {
    flex: 0 0 180px;
    min-width: 180px;
  }

  .destaques-arrow {
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
  }

  .destaques-list {
    padding: 0 16px;
    gap: 0.75rem;
  }

  .product-image > img.product-main-img {
    height: 180px;
  }

  .thumb-small {
    width: 34px;
    height: 34px;
    min-width: 34px;
  }

  .thumb-more {
    width: 34px;
    height: 34px;
    min-width: 34px;
    font-size: 0.7rem;
  }

  .product-detail {
    gap: 2rem;
  }

  .product-title-large {
    font-size: 1.5rem;
  }

  .product-actions {
    flex-direction: column;
  }

  .btn-view,
  .btn-buy {
    text-align: center;
  }

  .empty-actions {
    flex-direction: column;
    align-items: center;
  }

  .search-input-small {
    min-width: 150px;
  }
}

@media (max-width: 480px) {
  .header-ad-slot {
    display: none;
  }

  .header .nav {
    margin-top: 0.35rem;
  }

  .header-content {
    padding: 0.45rem 0;
    gap: 0.5rem;
  }

  .header .logo a {
    font-size: 0.9rem;
  }

  .logo-img {
    height: 26px;
  }

  .header .search-input,
  .header .search-btn {
    padding: 0.45rem 0.6rem;
    font-size: 0.88rem;
  }

  .header .search-btn {
    min-width: 40px;
    min-height: 38px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .destaques-list .product-card {
    flex: 0 0 160px;
    min-width: 160px;
  }

  .destaques-arrow {
    width: 32px;
    height: 32px;
    font-size: 1.2rem;
  }

  .destaques-updated {
    font-size: 0.75rem;
  }

  .product-image > img.product-main-img {
    height: 200px;
  }
}

/* Contato no footer */
.contact-details {
  max-width: 500px;
  margin: 0 auto 1.25rem;
}

.contact-toggle {
  display: block;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  padding: 0.4rem;
  list-style: none;
  transition: color 0.15s;
}

.contact-toggle::-webkit-details-marker {
  display: none;
}

.contact-toggle:hover {
  color: #fff;
}

.contact-details[open] .contact-toggle {
  color: #fff;
  margin-bottom: 0.35rem;
}

.contact-hint {
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.78rem;
  margin-bottom: 0.85rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  font-size: 0.88rem;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: border-color 0.15s, background 0.15s;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.contact-field input:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.15);
}

.contact-field textarea {
  resize: vertical;
  min-height: 70px;
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-contact-send {
  background: #fff;
  color: #051c50;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}

.btn-contact-send:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.85);
}

.btn-contact-send:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.contact-status {
  font-size: 0.82rem;
  font-weight: 500;
}

.contact-status.success {
  color: #25d366;
}

.contact-status.error {
  color: #ff6b6b;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
}

.footer-legal {
  display: inline-block;
  color: #fff !important;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0.25rem 0.5rem;
  margin: 0 0.15rem;
  border-radius: 4px;
  transition: background 0.2s;
}

.footer-legal:hover {
  background: rgba(255, 255, 255, 0.15);
  text-decoration: underline;
}

.footer-bottom a:not(.footer-whatsapp):not(.footer-telegram):not(.footer-legal) {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.footer-bottom a:not(.footer-whatsapp):not(.footer-telegram):not(.footer-legal):hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .contact-row {
    grid-template-columns: 1fr;
  }
}

.price-disclaimer {
  background: #fff8e1;
  border-top: 1px solid #ffe082;
  padding: 1rem 0;
  margin-top: 0;
}

.price-disclaimer p {
  color: #8d6e00;
  font-size: 0.82rem;
  text-align: center;
  line-height: 1.5;
  margin: 0;
}

.price-disclaimer .affiliate-disclaimer {
  margin-top: 0.5rem;
}

/* ===================== Modal de Produto ===================== */
.product-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 5000;
  padding: 1rem;
}

.product-modal.active {
  display: flex;
}

.product-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.product-modal-container {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 12px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.product-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.2rem;
  height: 2.2rem;
  border: 0;
  border-radius: 999px;
  background: #f0f0f0;
  color: #333;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.product-modal-close:hover {
  background: #ddd;
}

.product-modal-body {
  padding: 0;
}

.pm-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.pm-gallery {
  background: #f8f9fa;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-radius: 12px 0 0 12px;
}

.pm-main-img-wrap {
  position: relative;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.pm-main-img {
  width: 100%;
  max-height: 400px;
  object-fit: contain;
  cursor: zoom-in;
}

.pm-thumbs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.pm-thumb {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s;
  background: #fff;
}

.pm-thumb:hover,
.pm-thumb.active {
  border-color: #051c50;
}

.pm-no-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  color: #999;
  font-size: 1.2rem;
}

.pm-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pm-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  line-height: 1.3;
}

.pm-info .product-category,
.pm-info .product-plataforma {
  align-self: flex-start;
}

.pm-info .product-plataforma-icon {
  width: 22px;
  height: 22px;
}

.pm-info .product-price-block {
  margin: 0.25rem 0;
}

.pm-info .product-price {
  font-size: 2.2rem;
}

.pm-description {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
  max-height: 200px;
  overflow-y: auto;
}

.pm-actions {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #eee;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.pm-actions .btn-buy-large {
  flex: 1;
  min-width: 200px;
  text-align: center;
  display: block;
}

.pm-actions .product-share {
  margin-left: 0;
}

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

  .pm-gallery {
    border-radius: 12px 12px 0 0;
    padding: 1rem;
  }

  .pm-main-img-wrap {
    min-height: 200px;
  }

  .pm-main-img {
    max-height: 280px;
  }

  .pm-info {
    padding: 1.25rem;
  }

  .pm-title {
    font-size: 1.2rem;
  }

  .pm-info .product-price {
    font-size: 1.5rem;
  }

  .pm-thumb {
    width: 44px;
    height: 44px;
  }

  .product-modal-container {
    max-height: 95vh;
  }
}