/* ═══════════════════════════════════════════════════════════
   Portal Chefa Negócios — Estilos Globais
   Paleta extraída de representante.digital (portal-chefa.md)
   ═══════════════════════════════════════════════════════════ */

:root {
  /* Cores */
  --navy: #0A1628;
  --navy-dark: #112240;
  --blue-text: #8899AA;
  --gray-bg: #F0F4F8;
  --white: #FFFFFF;
  --teal: #00C2A8;
  --teal-hover: #00E5C8;
  --amber: #F5A623;
  --text-light: #C5D5E8;
  --text-muted: #9FB0C4;

  /* Tipografia */
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'Fira Code', monospace;

  /* Espacamento */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 60px;
  --space-2xl: 100px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--blue-text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100vw;
}

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

@media (min-width: 768px) {
  .container {
    padding: 0 48px;
  }
}

/* ═══════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════ */

.header {
  position: fixed;
  top: 38px;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(30, 50, 91, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 32px;
}

@media (min-width: 900px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-desktop a {
  color: var(--white);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: opacity 0.2s;
}

.nav-desktop a:hover {
  opacity: 0.7;
}

.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

@media (min-width: 900px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}

/* ═══════════════════════════════════════════════════════════
   BOTÕES
   ═══════════════════════════════════════════════════════════ */

.btn-primary,
.btn-primary-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary-sm {
  padding: 10px 20px;
  font-size: 14px;
}

.btn-primary:hover,
.btn-primary-sm:hover {
  background: var(--teal-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 194, 168, 0.3);
}

.btn-ghost,
.btn-ghost-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-ghost-sm {
  padding: 8px 16px;
  font-size: 14px;
}

.btn-ghost:hover,
.btn-ghost-sm:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

/* ═══════════════════════════════════════════════════════════
   HERO COM DIAGONAL
   ═══════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  padding: 140px 0 120px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero .container {
  width: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  text-align: center;
  margin: 0 auto;
}

.badge-ia {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(0, 194, 168, 0.15);
  border: 1px solid rgba(0, 194, 168, 0.3);
  border-radius: 99px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

/* Diagonal cut no final do hero */
.hero-diagonal {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--white);
  clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
}

/* ═══════════════════════════════════════════════════════════
   SEÇÕES
   ═══════════════════════════════════════════════════════════ */

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

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--navy-dark);
  letter-spacing: -1px;
}

/* ═══════════════════════════════════════════════════════════
   BENEFÍCIOS
   ═══════════════════════════════════════════════════════════ */

.benefits {
  padding: var(--space-2xl) 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid rgba(30, 50, 91, 0.08);
  border-radius: 12px;
  transition: all 0.3s;
}

.benefit-card:hover {
  border-color: rgba(30, 50, 91, 0.16);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(30, 50, 91, 0.08);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  border-radius: 50%;
  color: var(--white);
  margin-bottom: 20px;
}

.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 12px;
}

.benefit-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--blue-text);
}

/* ═══════════════════════════════════════════════════════════
   COMO FUNCIONA
   ═══════════════════════════════════════════════════════════ */

.how-it-works {
  padding: var(--space-2xl) 0;
  background: var(--gray-bg);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.step-card {
  padding: 28px;
  background: var(--white);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(30, 50, 91, 0.08);
}

.step-number {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--teal), var(--teal-hover));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  border-radius: 50%;
  margin: 0 auto 20px;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 12px;
}

.step-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--blue-text);
}

/* ═══════════════════════════════════════════════════════════
   CTA FINAL
   ═══════════════════════════════════════════════════════════ */

.cta-final {
  padding: var(--space-2xl) 0;
  background: var(--navy);
  color: var(--white);
}

.cta-content {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.cta-content p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */

.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 calc(24px + 90px);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 12px;
  transition: color 0.2s;
}

.footer-col a.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-desc {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 12px;
  max-width: 300px;
}

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

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* ═══════════════════════════════════════════════════════════
   UTILITÁRIOS
   ═══════════════════════════════════════════════════════════ */

.hidden {
  display: none !important;
}

.loading {
  opacity: 0.5;
  pointer-events: none;
}

.error-text {
  color: #ef4444;
  font-size: 14px;
  margin-top: 8px;
}

.success-text {
  color: var(--green);
  font-size: 14px;
  margin-top: 8px;
}

/* ═══════════════════════════════════════════════════════════
   TOP BAR
   ═══════════════════════════════════════════════════════════ */

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .top-bar-content {
    font-size: 12px;
    gap: 8px;
    flex-wrap: nowrap;
    white-space: nowrap;
  }
  .top-bar-content span:nth-child(2),
  .top-bar-content span:nth-child(4) {
    display: none;
  }
}

@media (max-width: 480px) {
  /* Mantém a top-bar em 1 linha só — some com os textos menos essenciais */
  .top-bar-content span:nth-child(1),
  .top-bar-content span:nth-child(5) {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════
   SEARCH BAR (decorativa no header)
   ═══════════════════════════════════════════════════════════ */

.search-bar {
  display: none;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 10px 16px;
  flex: 1;
  max-width: 400px;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.2s;
}

.search-bar:hover,
.search-bar:focus-within {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.search-bar input {
  background: none;
  border: none;
  outline: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  width: 100%;
}

.search-bar input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 900px) {
  .search-bar {
    display: flex;
  }
}

/* ═══════════════════════════════════════════════════════════
   HERO COMPACT (com split text/image)
   ═══════════════════════════════════════════════════════════ */

.hero-compact {
  min-height: auto;
  padding: 138px 0 80px;
}

.hero-content-split {
  display: block;
}

.hero-text {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.hero-brands {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.hero-brands a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: all 0.2s;
}

.hero-brands a:hover {
  border-bottom-color: var(--teal);
}

.hero-brands img {
  width: 22px;
  height: 22px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-brands span {
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
}

.hero-text .badge-ia {
  margin-bottom: 20px;
}

.hero-text h1 {
  font-size: clamp(22px, 2.6vw, 32px);
  margin-bottom: 16px;
}

.hero-text .hero-tagline {
  font-size: clamp(18px, 2.5vw, 24px);
  margin-bottom: 16px;
}

.hero-text .hero-subtitle {
  font-size: 16px;
  margin-bottom: 28px;
}

.hero-text .hero-ctas {
  justify-content: flex-start;
  margin-bottom: 0;
}

.hero-image {
  position: relative;
  z-index: 2;
}

.hero-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 194, 168, 0.2);
  border: 1px solid rgba(0, 194, 168, 0.2);
}

@media (max-width: 767px) {
  .hero-image img {
    max-width: 100%;
  }
}

/* ═══════════════════════════════════════════════════════════
   NOSSAS MARCAS
   ═══════════════════════════════════════════════════════════ */

.brands {
  padding: var(--space-2xl) 0;
  background: var(--white);
}

.section-desc {
  font-size: 16px;
  color: var(--blue-text);
  max-width: 600px;
  margin: 12px auto 0;
}

/* ═══════════════════════════════════════════════════════════
   CATEGORIAS — chips pastel (inspirado no sumário do catálogo Lyor)
   ═══════════════════════════════════════════════════════════ */

.categories {
  padding: 56px 0 var(--space-2xl);
  background: var(--gray-bg);
}

.categories-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.categories-strip-inline {
  margin-bottom: 48px;
}

/* ═══════════════════════════════════════════════════════════
   BRAND STORY (texto institucional da marca)
   ═══════════════════════════════════════════════════════════ */

.brand-story {
  max-width: 720px;
  margin: 0 auto 40px;
  padding: 28px 32px;
  background: var(--gray-bg);
  border-left: 3px solid var(--teal);
  border-radius: 4px;
}

.brand-story p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--blue-text);
  margin-bottom: 12px;
}

.brand-story p:last-child {
  margin-bottom: 0;
}

.brand-story strong {
  color: var(--navy-dark);
  font-family: var(--font-display);
}

/* ═══════════════════════════════════════════════════════════
   CATÁLOGO PDF — botão de download
   ═══════════════════════════════════════════════════════════ */

.catalog-download {
  text-align: center;
  margin-bottom: 40px;
}

.btn-catalog {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 14px;
  color: var(--navy-dark);
  border-color: rgba(30, 50, 91, 0.2);
}

.btn-catalog:hover {
  background: rgba(30, 50, 91, 0.06);
  border-color: var(--navy-dark);
}

.btn-catalog-dark {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-catalog-dark:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.category-chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 99px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: var(--navy-dark);
  transition: all 0.2s;
  border: 2px solid transparent;
}

.category-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(30, 22, 8, 0.12);
}

.cat-mesa-posta       { background: #F6D3D9; }
.cat-bebidas-quentes  { background: #F0AFAE; }
.cat-bar-em-casa      { background: #F3E2A0; }
.cat-faqueiros        { background: #D8D6E0; }
.cat-cozinha          { background: #E7C9A8; }
.cat-decoracao        { background: #F0B285; }
.cat-organizacao      { background: #E3C9A0; }
.cat-limpeza          { background: #AFD3E0; }
.cat-uso-pessoal      { background: #D2BFD6; }
.cat-infantil         { background: #A8D8CE; }
.cat-panelas           { background: #C9A98A; }
.cat-utensilios-cozinha { background: #D9C2A0; }
.cat-talheres-servir   { background: #B8C4C9; }
.cat-servico-mesa      { background: #E0C896; }
.cat-bar-cia           { background: #A8C4C0; }
.cat-servico-buffet    { background: #2C4A52; color: var(--white); }

/* Tag pequena de categoria dentro do card de produto */
.category-tag {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 10px;
  border-radius: 99px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  color: var(--navy-dark);
  vertical-align: middle;
}

.brands-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.brand-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--white);
  border: 1px solid rgba(30, 50, 91, 0.08);
  border-radius: 16px;
  transition: all 0.3s;
}

.brand-card:hover {
  border-color: var(--teal);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 194, 168, 0.15);
}

.brand-logo {
  width: 96px;
  height: 96px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(30, 50, 91, 0.08);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 12px;
}

.brand-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--blue-text);
}

/* ═══════════════════════════════════════════════════════════
   PRODUTOS SECTION
   ═══════════════════════════════════════════════════════════ */

.products-section {
  padding: var(--space-2xl) 0;
  scroll-margin-top: 110px;
}

.products-section.bg-gray {
  background: var(--gray-bg);
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card {
  background: var(--white);
  border: 1px solid rgba(30, 50, 91, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
}

.product-card:hover {
  border-color: rgba(30, 50, 91, 0.16);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(30, 50, 91, 0.1);
}

.product-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--gray-bg);
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--white);
}

.brand-lyor {
  background: linear-gradient(135deg, #6366F1, #8B5CF6);
}

.brand-wolff {
  background: linear-gradient(135deg, #3B82F6, #1D4ED8);
}

.brand-rojemac {
  background: linear-gradient(135deg, #059669, #047857);
}

.product-info {
  padding: 20px;
}

.product-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 40px;
}

.product-code {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.product-price-locked {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  background: rgba(0, 194, 168, 0.08);
  border: 1px solid rgba(0, 194, 168, 0.2);
  border-radius: 6px;
  color: var(--blue-text);
  font-size: 13px;
}

.product-price-locked svg {
  color: var(--teal);
  flex-shrink: 0;
}

.product-price-locked a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}

.product-price-locked a:hover {
  opacity: 0.7;
  text-decoration: underline;
}

/* Card CTA (último card da grid) */
.product-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  border: none;
}

.product-cta-content {
  text-align: center;
  padding: 32px 24px;
  color: var(--white);
}

.product-cta-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}

.product-cta-content p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.product-cta-content .btn-primary {
  background: var(--teal);
}

.product-cta-content .btn-primary:hover {
  background: var(--teal-hover);
}
