/* ==========================================================================
   zpink / LUME — Premium Social Commerce Design System
   Conforme especificações técnicas de zpink.md (Seção 11 e 12)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&display=swap');

:root {
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-brand: 'Cinzel', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --color-primary: #1c1917;
  --color-secondary: #b45309;
  --color-bg: #ffffff;
  --color-bg-alt: #fbf9f6;
  --color-surface: #ffffff;
  --color-border: #e7e5e4;
  --color-border-light: #f5f5f4;
  --color-text: #1c1917;
  --color-text-muted: #78716c;
  --color-text-subtle: #a8a29e;
  --color-accent: #b45309;
  --color-success: #059669;
  --color-danger: #dc2626;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px -2px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 32px -4px rgba(0, 0, 0, 0.08);

  --transition-fast: 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: 72px; /* Espaço para barra mobile */
}

@media (min-width: 1024px) {
  body {
    padding-bottom: 0;
  }
}

/* Tipografia */
h1, h2, h3, .font-serif {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.01em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* Layout Containers */
.container {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Barra de Anúncio / Topo */
.top-announcement {
  background-color: var(--color-primary);
  color: #f5f5f4;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-align: center;
  padding: 8px 16px;
  text-transform: uppercase;
}

/* Header Principal */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

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

.header-logo img {
  height: 40px;
  width: auto;
}

.main-nav {
  display: none;
}

@media (min-width: 1024px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
  }
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #44403c;
  position: relative;
  padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-primary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--color-primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  color: #292524;
  transition: background var(--transition-fast), color var(--transition-fast);
  position: relative;
}

.icon-btn:hover {
  background: var(--color-border-light);
  color: var(--color-primary);
}

.badge-count {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--color-primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  height: 17px;
  min-width: 17px;
  padding: 0 4px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  text-align: center;
}

.btn-primary {
  background: var(--color-primary);
  color: #ffffff;
}

.btn-primary:hover {
  background: #000000;
  color: #ffffff;
}

.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: #ffffff;
}

.btn-gold {
  background: var(--color-secondary);
  color: #ffffff;
}

.btn-gold:hover {
  background: #92400e;
  color: #ffffff;
}

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

.btn-full {
  width: 100%;
}

/* Card de Produto */
.product-card {
  display: flex;
  flex-direction: column;
  position: relative;
  background: #ffffff;
  transition: transform var(--transition-fast);
}

.product-image-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--color-bg-alt);
  border-radius: var(--radius-sm);
}

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

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

.product-fav-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.9);
  width: 34px;
  height: 34px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  color: #78716c;
  transition: all var(--transition-fast);
  z-index: 2;
}

.product-fav-btn.active, .product-fav-btn:hover {
  color: #e11d48;
  background: #ffffff;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-primary);
  color: #ffffff;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 2px;
  z-index: 2;
}

.product-info {
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-category {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.product-title {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-primary);
}

.product-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 2px;
}

.price-current {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-primary);
}

.price-compare {
  font-size: 12.5px;
  color: var(--color-text-subtle);
  text-decoration: line-through;
}

/* Drawer da Sacola / Carrinho */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-fast), visibility var(--transition-fast);
}

.drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 440px;
  background: #ffffff;
  z-index: 101;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
}

.drawer-backdrop.active .cart-drawer {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--color-border);
}

.drawer-title {
  font-family: var(--font-serif);
  font-size: 20px;
}

.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-item {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border-light);
}

.cart-item-img {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--color-bg-alt);
}

.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cart-item-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-primary);
}

.cart-item-variant {
  font-size: 12px;
  color: var(--color-text-muted);
}

.cart-item-price {
  font-size: 13.5px;
  font-weight: 600;
}

.cart-qty-ctrl {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-top: 6px;
}

.cart-qty-ctrl button {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-alt);
  color: var(--color-primary);
  font-weight: 600;
}

.cart-qty-ctrl span {
  width: 32px;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
}

.drawer-footer {
  padding: 20px 24px;
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.drawer-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--color-text-muted);
}

.drawer-row.total {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  border-top: 1px solid var(--color-border);
  padding-top: 12px;
}

/* Modal de Chat de Atendimento ao Vivo */
.chat-widget-btn {
  position: fixed;
  bottom: 74px;
  right: 16px;
  background: #18181b;
  color: #ffffff;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.15);
  z-index: 50;
  transition: transform var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
  border: none;
  cursor: pointer;
}

.chat-widget-btn .chat-widget-label {
  display: none;
}

@media (min-width: 1024px) {
  .chat-widget-btn {
    bottom: 24px;
    right: 24px;
    width: auto;
    height: 42px;
    padding: 0 18px;
    border-radius: 24px;
    gap: 10px;
  }
  .chat-widget-btn .chat-widget-label {
    display: inline;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: none;
    white-space: nowrap;
  }
}

.chat-widget-btn:hover {
  transform: translateY(-2px);
  background: #000000;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

/* Ocultar botão flutuante quando o chat ou identificação estiver aberto */
body.chat-open .chat-widget-btn,
body.chat-open .mobile-bottom-nav,
.chat-modal-window.active ~ .chat-widget-btn,
#chatIdentifyModal.active ~ .chat-widget-btn {
  display: none !important;
}

body.chat-open {
  overflow: hidden !important;
}

.chat-modal-window {
  position: fixed;
  display: none;
  flex-direction: column;
  overflow: hidden;
  background: #ffffff;
  box-sizing: border-box;
}

.chat-modal-window.active {
  display: flex;
}

@media (max-width: 768px) {
  .chat-modal-window {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    width: 100vw !important;
    max-width: 100vw !important;
    height: 100% !important;
    height: 100dvh !important;
    height: -webkit-fill-available !important;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
    z-index: 99999 !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    overscroll-behavior: contain !important;
  }
}

@media (min-width: 769px) {
  .chat-modal-window {
    bottom: 24px;
    right: 24px;
    width: 400px;
    height: 580px;
    max-height: calc(100vh - 48px);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
    border: 1px solid var(--color-border);
    z-index: 9999;
  }
}

.chat-header {
  padding: 14px 18px;
  background: #0f172a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-sizing: border-box;
  width: 100%;
}

@media (max-width: 768px) {
  .chat-header {
    padding: 10px 14px;
    padding-top: max(12px, env(safe-area-inset-top, 12px));
    padding-left: max(12px, env(safe-area-inset-left, 12px));
    padding-right: max(12px, env(safe-area-inset-right, 12px));
    box-sizing: border-box;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    flex-shrink: 0;
  }
}

@media (max-width: 380px) {
  #chatAttendantName {
    max-width: 110px !important;
  }
  #btnHeaderStartVideo span,
  #btnHeaderChatCatalog span {
    display: none !important;
  }
  #btnHeaderStartVideo,
  #btnHeaderChatCatalog {
    padding: 6px !important;
    border-radius: 50% !important;
    width: 28px !important;
    height: 28px !important;
    justify-content: center !important;
  }
}

.chat-messages {
  flex: 1 1 0%;
  padding: 16px;
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--color-bg-alt);
  box-sizing: border-box;
  min-height: 0;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
}

@media (max-width: 768px) {
  .chat-messages {
    padding: 12px 14px;
    padding-left: max(12px, env(safe-area-inset-left, 12px));
    padding-right: max(12px, env(safe-area-inset-right, 12px));
    width: 100%;
    max-width: 100vw;
  }
}

.chat-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13.5px;
  line-height: 1.4;
  word-break: break-word;
  overflow-wrap: break-word;
  box-sizing: border-box;
}

.chat-msg.customer {
  align-self: flex-end;
  background: var(--color-primary);
  color: #ffffff;
  border-bottom-right-radius: 2px;
}

.chat-msg.attendant {
  align-self: flex-start;
  background: #ffffff;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  border-bottom-left-radius: 2px;
  box-shadow: var(--shadow-sm);
}

.chat-msg.system {
  align-self: center;
  background: rgba(0,0,0,0.05);
  color: var(--color-text-muted);
  font-size: 12px;
  text-align: center;
  border-radius: var(--radius-full);
}

.chat-footer {
  padding: 12px;
  background: #ffffff;
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: 8px;
  box-sizing: border-box;
  width: 100%;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .chat-footer {
    padding: 10px 12px;
    padding-bottom: max(12px, env(safe-area-inset-bottom, 16px));
    padding-left: max(12px, env(safe-area-inset-left, 12px));
    padding-right: max(12px, env(safe-area-inset-right, 12px));
    max-width: 100vw;
  }
}

.chat-footer input {
  flex: 1;
  min-width: 0;
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  outline: none;
  font-size: 13.5px;
  box-sizing: border-box;
}

.chat-footer input:focus {
  border-color: var(--color-primary);
}

/* Prevenir zoom involuntário do Safari no iPhone (exige min 16px) */
@media screen and (max-width: 768px) {
  input,
  select,
  textarea,
  .chat-footer input,
  .chat-message-input,
  #chatInputMessage,
  #chatIdentifyName,
  #chatIdentifyPhone,
  #chatMessageInput,
  #consultantCatalogSearch,
  #convSearchInput {
    font-size: 16px !important;
  }
}

/* Catálogo Rápido com Miniaturas dentro do Chat do Cliente */
.chat-catalog-drawer {
  position: absolute;
  bottom: 62px;
  left: 0;
  right: 0;
  height: 290px;
  max-height: 55vh;
  background: #ffffff;
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.08);
  display: none;
  flex-direction: column;
  z-index: 10;
  box-sizing: border-box;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
}

@media (max-width: 768px) {
  .chat-catalog-drawer {
    bottom: calc(56px + max(12px, env(safe-area-inset-bottom, 16px))) !important;
  }
}

.chat-catalog-drawer.active {
  display: flex;
}

.chat-catalog-header {
  padding: 10px 14px;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8fafc;
}

.chat-catalog-search {
  padding: 8px 12px;
  border-bottom: 1px solid var(--color-border);
  background: #ffffff;
}

.chat-catalog-search input {
  width: 100%;
  padding: 7px 12px;
  font-size: 12.5px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  outline: none;
}

.chat-catalog-search input:focus {
  border-color: var(--color-primary);
}

.chat-catalog-list {
  flex: 1;
  overflow-y: auto;
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chat-catalog-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #ffffff;
  transition: all 0.15s ease;
}

.chat-catalog-item:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
}

.chat-product-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 10px;
  margin-top: 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  border: 1px solid #e2e8f0;
  text-align: left;
  max-width: 100%;
  width: 250px;
  box-sizing: border-box;
}

/* Barra de Navegação Inferior Mobile (Seção 13) */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: #ffffff;
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 45;
}

@media (min-width: 1024px) {
  .mobile-bottom-nav {
    display: none;
  }
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: #78716c;
  font-size: 10px;
  font-weight: 500;
  flex: 1;
  height: 100%;
}

.bottom-nav-item.active, .bottom-nav-item:hover {
  color: var(--color-primary);
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  background: var(--color-primary);
  color: #ffffff;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  font-size: 13.5px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateY(-10px);
  opacity: 0;
  transition: all var(--transition-fast);
  pointer-events: auto;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast.success {
  background: #065f46;
}

.toast.error {
  background: #991b1b;
}

/* Modais Genéricos */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}

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

/* Prioridade Máxima para Chamada de Vídeo ao Vivo sobre Chat em Tela Cheia */
.video-incoming-modal,
#incomingVideoModal {
  z-index: 9999999 !important;
}

.video-incoming-modal.active,
#incomingVideoModal.active {
  z-index: 9999999 !important;
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

#videoCallContainer {
  z-index: 9999998 !important;
}

.chat-video-invite-wrap {
  width: 100% !important;
  max-width: 100% !important;
  background: transparent !important;
  padding: 4px 0 !important;
  box-shadow: none !important;
}

.modal-content {
  background: #ffffff;
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 480px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

/* ==========================================================================
   Hero Editorial (Tema Editorial — Seção 11)
   Mobile-first & Desktop High-End Luxury
   ========================================================================== */
.hero-editorial-section {
  position: relative;
  background: #f5f2eb;
  padding: 16px 0 32px;
}

@media (min-width: 768px) {
  .hero-editorial-section {
    padding: 48px 0 64px;
  }
}

.hero-editorial-wrapper {
  position: relative;
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .hero-editorial-wrapper {
    display: block;
    box-shadow: var(--shadow-md);
    border: none;
    background: transparent;
  }
}

.hero-editorial-media {
  width: 100%;
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e7e5e4;
}

@media (min-width: 768px) {
  .hero-editorial-media {
    aspect-ratio: 16 / 9;
    max-height: 560px;
  }
}

.hero-editorial-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-editorial-wrapper:hover .hero-editorial-media img {
  transform: scale(1.02);
}

.hero-editorial-card {
  position: static;
  background: #ffffff;
  padding: 24px 20px 26px;
  width: 100%;
}

@media (min-width: 768px) {
  .hero-editorial-card {
    position: absolute;
    bottom: 32px;
    left: 32px;
    right: auto;
    width: auto;
    max-width: 560px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 28px 32px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
  }
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-secondary);
  display: block;
  margin-bottom: 6px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.22;
  color: var(--color-primary);
  margin-bottom: 10px;
  font-weight: 400;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: clamp(26px, 3.2vw, 36px);
    line-height: 1.2;
    margin-bottom: 12px;
  }
}

.hero-subtitle {
  font-size: 13.5px;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 14.5px;
    line-height: 1.55;
  }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

@media (min-width: 768px) {
  .hero-actions {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    width: auto;
  }
}

.hero-actions .btn {
  width: 100%;
}

@media (min-width: 768px) {
  .hero-actions .btn {
    width: auto;
  }
}

/* ==========================================================================
   Banner Editorial de Joalheria (Tema Editorial — Seção 11)
   ========================================================================== */
.jewelry-banner-section {
  padding: 32px 0 48px;
}

@media (min-width: 768px) {
  .jewelry-banner-section {
    padding: 48px 0 72px;
  }
}

.jewelry-banner-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  background: #1c1917;
}

@media (min-width: 768px) {
  .jewelry-banner-wrapper {
    min-height: 420px;
    align-items: center;
  }
}

.jewelry-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.jewelry-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 25, 23, 0.25) 0%, rgba(28, 25, 23, 0.9) 75%);
  pointer-events: none;
}

@media (min-width: 768px) {
  .jewelry-banner-overlay {
    background: linear-gradient(90deg, rgba(28, 25, 23, 0.9) 0%, rgba(28, 25, 23, 0.55) 60%, rgba(28, 25, 23, 0.15) 100%);
  }
}

.jewelry-banner-content {
  position: relative;
  z-index: 2;
  padding: 32px 20px;
  max-width: 560px;
  color: #ffffff;
}

@media (min-width: 768px) {
  .jewelry-banner-content {
    padding: 48px 56px;
  }
}

.jewelry-banner-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #f59e0b;
  display: block;
  margin-bottom: 8px;
}

.jewelry-banner-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 12px;
  color: #f5f5f4;
}

@media (min-width: 768px) {
  .jewelry-banner-title {
    font-size: clamp(28px, 3.5vw, 40px);
    line-height: 1.2;
    margin-bottom: 14px;
  }
}

.jewelry-banner-text {
  font-size: 13.5px;
  color: #d6d3d1;
  line-height: 1.6;
  margin-bottom: 22px;
}

@media (min-width: 768px) {
  .jewelry-banner-text {
    font-size: 15px;
    margin-bottom: 26px;
  }
}

/* ==========================================================================
   Vídeo Chamada Responsiva & Safe Area Insets (iPhone / Android)
   ========================================================================== */
@media (max-width: 768px) {
  #videoCallContainer:not(.video-pip-mode) {
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    height: 100% !important;
    height: 100dvh !important;
    height: -webkit-fill-available !important;
    transform: none !important;
    border-radius: 0 !important;
  }

  #videoCallContainer:not(.video-pip-mode) #videoCallCard {
    border-radius: 0 !important;
    border: none !important;
  }

  .video-call-topbar {
    padding-top: max(14px, env(safe-area-inset-top, 14px)) !important;
    padding-left: max(14px, env(safe-area-inset-left, 14px)) !important;
    padding-right: max(14px, env(safe-area-inset-right, 14px)) !important;
  }

  .video-call-controls {
    padding-bottom: max(14px, env(safe-area-inset-bottom, 20px)) !important;
    padding-left: max(14px, env(safe-area-inset-left, 14px)) !important;
    padding-right: max(14px, env(safe-area-inset-right, 14px)) !important;
    gap: 14px !important;
  }
}


