/* ==========================================================================
   PLATAFORMA REUNIR V2 — DESIGN SYSTEM & CORE STYLES (MARKETPLACE EDITION)
   Tokens Oficiais: #F8F9FA (Fundo Limpo) | #ED7B58 (Terracota Solar) | #173C33 (Verde Pinho)
   Tipografia: Plus Jakarta Sans (Google Fonts)
   Contraste WCAG AAA: Slate 900 (#0F172A) e Slate 700 (#334155)
   ========================================================================== */

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

:root {
  /* 1. PALETA DE CORES DA MARCA & CONTRASTE */
  --re-bg: #F8F9FA;
  --re-surface: #FFFFFF;
  --re-surface-alt: #F1F5F9;
  --re-ink: #0F172A;          /* Slate 900 - Máximo Contraste */
  --re-ink-muted: #334155;    /* Slate 700 - Leitura Confortável */
  --re-ink-subtle: #64748B;   /* Slate 500 */

  --re-accent: #ED7B58;       /* Terracota Solar */
  --re-accent-hover: #D8633F;
  --re-accent-light: #FDF2EE;
  --re-accent-rgb: 237, 123, 88;

  --re-forest: #173C33;       /* Verde Pinho Institucional */
  --re-forest-hover: #0F2822;
  --re-forest-light: #EAF3EF;
  --re-forest-rgb: 23, 60, 51;

  --re-whatsapp: #25D366;     /* Verde WhatsApp Oficial */
  --re-whatsapp-hover: #1EBE5D;
  --re-whatsapp-bg: #E8F8EE;

  /* 2. BORDAS & LINHAS */
  --re-border-hairline: #E2E8F0;
  --re-border-interactive: #CBD5E1;
  --re-border-focus: #ED7B58;

  /* 3. TIPOGRAFIA */
  --re-font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --re-font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* 4. RAIOS DE BORDA */
  --re-radius-xs: 6px;
  --re-radius-sm: 8px;
  --re-radius-md: 12px;
  --re-radius-lg: 16px;
  --re-radius-xl: 24px;
  --re-radius-pill: 9999px;

  /* 5. ELEVAÇÕES / SOMBRAS */
  --re-shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
  --re-shadow-card: 0 4px 16px -2px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.04);
  --re-shadow-hover: 0 12px 28px -4px rgba(15, 23, 42, 0.1), 0 2px 6px rgba(15, 23, 42, 0.05);
  --re-shadow-drawer: 0 10px 40px rgba(15, 23, 42, 0.18);

  /* 6. TRANSIÇÕES */
  --re-transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --re-transition-normal: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* RESET ESTRUTURAL & ISOLAMENTO DO ESCOPO */
*, *::before, *::after {
  box-sizing: border-box;
}

body.reunir-v2-scope,
.reunir-v2-body {
  margin: 0;
  padding: 0;
  background-color: var(--re-bg);
  color: var(--re-ink);
  font-family: var(--re-font-sans);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* CONTAINER CENTRALIZADO */
.re-container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

@media (max-width: 640px) {
  .re-container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* ==========================================================================
   HEADER OFICIAL UNIFICADO
   ========================================================================== */
.re-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--re-border-hairline);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.re-header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 72px;
}

.re-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.re-brand img {
  display: block !important;
  height: 38px !important;
  max-height: 42px !important;
  width: auto !important;
  min-width: 140px !important;
  object-fit: contain !important;
  aspect-ratio: 742.58 / 189.98 !important;
}

/* BUSCA RÁPIDA FORMATO PÍLULA */
.re-nav-search {
  position: relative;
  max-width: 440px;
  width: 100%;
}

.re-nav-search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--re-ink-subtle);
  pointer-events: none;
}

.re-nav-search-input {
  width: 100%;
  height: 44px;
  padding: 8px 16px 8px 46px;
  background-color: #FFFFFF;
  border: 1px solid var(--re-border-interactive);
  border-radius: 9999px !important;
  font-family: var(--re-font-sans);
  font-size: 14px;
  color: var(--re-ink);
  transition: all var(--re-transition-fast);
}

.re-nav-search-input:focus {
  outline: none;
  border-color: var(--re-accent);
  box-shadow: 0 0 0 3px rgba(237, 123, 88, 0.15);
}

@media (max-width: 768px) {
  .re-nav-search {
    display: none;
  }
}

/* AÇÕES DO HEADER */
.re-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.re-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--re-border-interactive);
  border-radius: var(--re-radius-sm);
  color: var(--re-ink);
  cursor: pointer;
}

@media (max-width: 980px) {
  .re-menu-toggle {
    display: inline-flex;
  }
}

/* BOTÃO DE LUPA MOBILE */
.re-mobile-search-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #F8FAFC;
  border: 1px solid var(--re-border-interactive);
  border-radius: 50%;
  color: var(--re-ink);
  cursor: pointer;
  padding: 0;
  transition: all var(--re-transition-fast);
  flex-shrink: 0;
}

.re-mobile-search-toggle:hover,
.re-mobile-search-toggle:active {
  background: var(--re-accent-light);
  color: var(--re-accent);
  border-color: var(--re-accent);
}

@media (max-width: 768px) {
  .re-mobile-search-toggle {
    display: inline-flex;
  }
  .re-btn-painel-text-full {
    display: none !important;
  }
  .re-btn-painel-text-short {
    display: inline !important;
  }
}

@media (min-width: 769px) {
  .re-btn-painel-text-full {
    display: inline !important;
  }
  .re-btn-painel-text-short {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .re-header-main {
    gap: 8px;
    height: 64px;
  }
  .re-header-actions {
    gap: 6px;
  }
  .re-brand img {
    height: 32px !important;
    min-width: 105px !important;
    max-width: 125px !important;
  }
  .re-header-btn-painel {
    padding: 6px 12px !important;
    font-size: 12px !important;
    min-height: 36px !important;
  }
  .re-menu-toggle {
    width: 36px;
    height: 36px;
  }
  .re-mobile-search-toggle {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 360px) {
  .re-btn-painel-text-short {
    display: none !important;
  }
  .re-header-btn-painel {
    width: 36px !important;
    height: 36px !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
  }
}

/* DROPDOWN DE BUSCA MOBILE */
.re-mobile-search-dropdown {
  display: none;
  padding: 10px 0 14px;
  border-top: 1px solid var(--re-border-hairline);
  background: #FFFFFF;
}

.re-mobile-search-dropdown.is-open {
  display: block;
  animation: reSlideDown 0.2s ease-out forwards;
}

@keyframes reSlideDown {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.re-mobile-search-dropdown-form {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.re-mobile-search-dropdown-form .re-nav-search-input {
  flex: 1;
  padding-left: 42px !important;
  padding-right: 12px !important;
  height: 42px !important;
  font-size: 13.5px !important;
}

.re-mobile-search-dropdown-form .re-nav-search-icon {
  left: 14px;
}

/* BUSCA RÁPIDA MOBILE NA HOME */
.re-mobile-home-search {
  display: none;
  padding-top: 14px;
  padding-bottom: 2px;
}

@media (max-width: 768px) {
  .re-mobile-home-search {
    display: block;
  }
  .re-mobile-home-search-form {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
  }
  .re-mobile-home-search-form .re-nav-search-icon {
    left: 14px;
  }
}

/* RÉGUA DE NAVEGAÇÃO SECUNDÁRIA (DESKTOP) */
.re-nav-bar {
  border-top: 1px solid var(--re-border-hairline);
  background: #FFFFFF;
  overflow-x: auto;
  scrollbar-width: none;
}

.re-nav-bar::-webkit-scrollbar {
  display: none;
}

.re-nav-list {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.re-nav-list li a {
  display: inline-block;
  padding: 10px 2px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--re-ink-muted);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all var(--re-transition-fast);
}

.re-nav-list li a:hover,
.re-nav-list li a.active {
  color: var(--re-accent);
  border-bottom-color: var(--re-accent);
}

@media (max-width: 980px) {
  .re-nav-bar {
    display: none;
  }
}

/* GAVETA MOBILE EXPANSÍVEL */
.re-mobile-drawer {
  display: none;
  border-top: 1px solid var(--re-border-hairline);
  background: #FFFFFF;
  padding: 16px 20px 24px;
}

.re-mobile-drawer.is-open {
  display: block;
}

.re-mobile-search {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.re-mobile-search input {
  flex: 1;
  height: 42px;
  padding: 8px 14px;
  border: 1px solid var(--re-border-interactive);
  border-radius: var(--re-radius-pill);
  font-size: 14px;
}

.re-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.re-mobile-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--re-ink);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 1px solid var(--re-border-hairline);
}

.re-mobile-links a.active {
  color: var(--re-accent);
}

.re-mobile-auth-box {
  padding-top: 8px;
}

.re-mobile-logout {
  display: block;
  text-align: center;
  margin-top: 12px;
  color: #DC2626;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
}

/* ==========================================================================
   BOTÕES DO SISTEMA
   ========================================================================== */
.re-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 8px 18px;
  border-radius: var(--re-radius-pill);
  font-family: var(--re-font-sans);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--re-transition-fast);
}

.re-btn-accent {
  background-color: var(--re-accent);
  color: #FFFFFF !important;
  border-color: var(--re-accent);
}

.re-btn-accent:hover {
  background-color: var(--re-accent-hover);
  border-color: var(--re-accent-hover);
}

.re-btn-forest {
  background-color: var(--re-forest);
  color: #FFFFFF !important;
  border-color: var(--re-forest);
}

.re-btn-forest:hover {
  background-color: var(--re-forest-hover);
  border-color: var(--re-forest-hover);
}

.re-btn-ghost {
  background-color: transparent;
  color: var(--re-ink) !important;
  border-color: var(--re-border-interactive);
}

.re-btn-ghost:hover {
  background-color: var(--re-surface-alt);
  border-color: var(--re-border-interactive);
}

.re-btn-whatsapp {
  background-color: var(--re-whatsapp);
  color: #FFFFFF !important;
  border-color: var(--re-whatsapp);
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.25);
}

.re-btn-whatsapp:hover {
  background-color: var(--re-whatsapp-hover);
  border-color: var(--re-whatsapp-hover);
  transform: translateY(-1px);
}

.re-btn-outline-whatsapp {
  background-color: var(--re-whatsapp-bg);
  color: #127A4B !important;
  border-color: var(--re-whatsapp);
}

/* ==========================================================================
   CARDS DE PRODUTOS
   ========================================================================== */
.re-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}

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

.re-product-card {
  background-color: #FFFFFF;
  border: 1px solid var(--re-border-hairline);
  border-radius: var(--re-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--re-shadow-card);
  transition: all var(--re-transition-normal);
}

.re-product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--re-shadow-hover);
  border-color: rgba(237, 123, 88, 0.3);
}

.re-product-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: #F1F5F9;
  overflow: hidden;
}

.re-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--re-transition-normal);
}

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

.re-product-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.re-badge-tag {
  background: rgba(15, 23, 42, 0.85);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--re-radius-pill);
  backdrop-filter: blur(4px);
}

.re-badge-city {
  background: rgba(255, 255, 255, 0.92);
  color: var(--re-ink);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--re-radius-pill);
  box-shadow: var(--re-shadow-sm);
}

.re-product-body {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.re-artisan-author {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.re-artisan-avatar-mini {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--re-border-hairline);
}

.re-artisan-author-name {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--re-ink-muted);
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.re-artisan-author-name:hover {
  color: var(--re-accent);
}

.re-product-title {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.re-product-title a {
  color: var(--re-ink);
  text-decoration: none;
}

.re-product-title a:hover {
  color: var(--re-accent);
}

.re-price-val {
  font-size: 17px;
  font-weight: 800;
  color: var(--re-ink);
  margin-top: auto;
  margin-bottom: 12px;
}

/* ==========================================================================
   CARDS DE LOJAS
   ========================================================================== */
.re-stores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.re-store-card {
  background: #FFFFFF;
  border: 1px solid var(--re-border-hairline);
  border-radius: var(--re-radius-lg);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--re-shadow-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: all var(--re-transition-normal);
}

.re-store-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--re-shadow-hover);
  border-color: rgba(237, 123, 88, 0.3);
}

.re-store-card-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #FFFFFF;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.12);
  margin-bottom: 12px;
}

.re-store-card-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--re-ink);
  margin-bottom: 4px;
}

.re-store-card-city {
  font-size: 13px;
  color: var(--re-ink-subtle);
  margin-bottom: 10px;
}

.re-store-card-bio {
  font-size: 13.5px;
  color: var(--re-ink-muted);
  line-height: 1.45;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ==========================================================================
   PÁGINA DEDICADA DA LOJA (template-loja-v2.php)
   ========================================================================== */
.re-store-banner-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, #ED7B58 0%, #173C33 100%);
  border-radius: var(--re-radius-xl);
  overflow: hidden;
  margin-bottom: 60px;
}

@media (max-width: 640px) {
  .re-store-banner-wrapper {
    height: 160px;
    margin-bottom: 50px;
  }
}

.re-store-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.re-store-profile-header {
  position: absolute;
  bottom: -40px;
  left: 28px;
  display: flex;
  align-items: flex-end;
  gap: 16px;
}

.re-store-profile-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px solid #FFFFFF;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.15);
  object-fit: cover;
  background: #FFFFFF;
}

.re-store-info-bar {
  background: #FFFFFF;
  border: 1px solid var(--re-border-hairline);
  border-radius: var(--re-radius-lg);
  padding: 24px;
  margin-bottom: 32px;
  box-shadow: var(--re-shadow-card);
}

.re-store-socials {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.re-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--re-surface-alt);
  color: var(--re-ink);
  text-decoration: none;
  transition: all 0.2s;
}

.re-social-btn:hover {
  background: var(--re-accent);
  color: #FFFFFF;
}

/* ==========================================================================
   SLIDERS DE CATEGORIAS HORIZONTAIS COM SETAS
   ========================================================================== */
.catalogo-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin: 16px 0 24px;
}

.catalogo-pills-bar {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 8px 40px;
  scrollbar-width: none;
  scroll-behavior: smooth;
  width: 100%;
}

.catalogo-pills-bar::-webkit-scrollbar {
  display: none;
}

.catalogo-pill {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 8px 18px;
  background: #FFFFFF;
  border: 1px solid var(--re-border-hairline);
  border-radius: var(--re-radius-pill);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--re-ink-muted);
  text-decoration: none;
  box-shadow: var(--re-shadow-sm);
  transition: all var(--re-transition-fast);
  flex-shrink: 0;
}

.catalogo-pill:hover,
.catalogo-pill.active {
  background: var(--re-accent);
  color: #FFFFFF;
  border-color: var(--re-accent);
}

.slider-arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid var(--re-border-interactive);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--re-ink);
  z-index: 5;
  transition: all 0.2s;
}

.slider-arrow-btn:hover {
  background: var(--re-accent);
  color: #FFFFFF;
  border-color: var(--re-accent);
}

.slider-arrow-prev { left: 0; }
.slider-arrow-next { right: 0; }

/* BUSCA INTERNA MODERNA INTEGRADA */
.re-catalog-search-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 420px;
}

.re-catalog-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--re-ink-subtle);
  pointer-events: none;
  display: flex;
}

.re-catalog-search-input {
  width: 100%;
  height: 42px;
  padding: 8px 90px 8px 42px;
  background: #FFFFFF;
  border: 1px solid var(--re-border-interactive);
  border-radius: 9999px;
  font-family: var(--re-font-sans);
  font-size: 13.5px;
  color: var(--re-ink);
}

.re-catalog-search-input:focus {
  outline: none;
  border-color: var(--re-accent);
  box-shadow: 0 0 0 3px rgba(237, 123, 88, 0.15);
}

.re-catalog-search-btn {
  position: absolute;
  right: 4px;
  top: 4px;
  bottom: 4px;
  padding: 0 16px;
  border-radius: 9999px;
  background: var(--re-accent);
  color: #FFFFFF;
  border: none;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.re-catalog-search-btn:hover {
  background: var(--re-accent-hover);
}

/* ==========================================================================
   SEÇÕES & HEADINGS
   ========================================================================== */
.re-section-spaced {
  padding: 48px 0;
}

@media (max-width: 640px) {
  .re-section-spaced {
    padding: 32px 0;
  }
}

.re-section-header {
  margin-bottom: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.re-section-title {
  margin: 0 0 6px;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--re-ink);
  letter-spacing: -0.02em;
}

.re-section-sub {
  margin: 0;
  font-size: 14.5px;
  color: var(--re-ink-muted);
  max-width: 60ch;
}

.re-section-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--re-accent);
  text-decoration: none;
}

.re-section-link:hover {
  text-decoration: underline;
}

/* ==========================================================================
   FOOTER INSTITUCIONAL REUNIR V2 (SLATE 900 DE ALTO CONTRASTE)
   ========================================================================== */
.re-footer {
  background-color: #0F172A;
  color: #F8FAFC;
  margin-top: 60px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.re-footer-partners {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 40px;
}

.re-footer-partners-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 32px;
}

.re-footer-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #E2E8F0;
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--re-radius-pill);
  margin-bottom: 8px;
}

.re-footer-partners-title {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 800;
  color: #FFFFFF;
}

.re-footer-partners-sub {
  margin: 0;
  font-size: 13.5px;
  color: #94A3B8;
}

.re-partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  align-items: center;
}

.re-partner-card {
  background: #FFFFFF;
  border-radius: var(--re-radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 68px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transition: transform var(--re-transition-fast);
}

.re-partner-card:hover {
  transform: translateY(-2px);
}

.re-partner-card img {
  max-height: 40px;
  max-width: 100%;
  object-fit: contain;
}

/* NAVEGAÇÃO DO FOOTER */
.re-footer-nav {
  padding: 48px 0;
}

.re-footer-columns {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
}

@media (max-width: 900px) {
  .re-footer-columns {
    grid-template-columns: 1fr 1fr;
  }
  .re-footer-col-brand {
    grid-column: span 2;
  }
}

@media (max-width: 580px) {
  .re-footer-columns {
    grid-template-columns: 1fr;
  }
  .re-footer-col-brand {
    grid-column: span 1;
  }
}

.re-footer-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: #94A3B8;
  margin: 0 0 16px;
}

.re-footer-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: #CBD5E1;
}

.re-footer-heading {
  margin: 0 0 16px;
  font-size: 14.5px;
  font-weight: 700;
  color: #FFFFFF;
}

.re-footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.re-footer-list li a {
  color: #94A3B8;
  text-decoration: none;
  font-size: 13.5px;
  transition: color var(--re-transition-fast);
}

.re-footer-list li a:hover {
  color: var(--re-accent);
  text-decoration: underline;
}

.re-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0 32px;
  font-size: 12.5px;
  color: #64748B;
}

.re-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.re-footer-copy {
  margin: 0;
}

.re-footer-madeby {
  display: flex;
  align-items: center;
  gap: 6px;
}

.re-footer-px-link {
  color: #E2E8F0;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.05em;
}

.re-footer-px-link:hover {
  color: var(--re-accent);
}

/* ==========================================================================
   BARRA FIXA INFERIOR MOBILE (STICKY BOTTOM NAV)
   ========================================================================== */
.re-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--re-border-hairline);
  box-shadow: 0 -2px 10px rgba(15, 23, 42, 0.06);
  height: 60px;
  padding: 0 8px;
}

@media (max-width: 768px) {
  .re-bottom-nav {
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
  body.reunir-v2-scope,
  .reunir-v2-body {
    padding-bottom: 70px !important;
  }
}

.re-bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--re-ink-subtle);
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  flex: 1;
  height: 100%;
  transition: color var(--re-transition-fast);
}

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

/* ==========================================================================
   AVALIAÇÕES & DETALHES DE PRODUTOS
   ========================================================================== */
.re-reviews-container {
  background: #FFFFFF;
  border: 1px solid var(--re-border-hairline);
  border-radius: var(--re-radius-lg);
  padding: 28px;
  margin-top: 32px;
  box-shadow: var(--re-shadow-card);
}

.re-review-item {
  border-bottom: 1px solid var(--re-border-hairline);
  padding: 16px 0;
}

.re-review-item:last-child {
  border-bottom: none;
}

.re-review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.re-review-author {
  font-weight: 700;
  color: var(--re-ink);
  font-size: 14px;
}

.re-review-date {
  font-size: 12px;
  color: var(--re-ink-subtle);
}

.re-star-rating {
  color: #F59E0B;
  display: inline-flex;
  gap: 2px;
}

/* ==========================================================================
   HERO SLIDER V2 (ANEXO 1)
   ========================================================================== */
.re-hero-slider-wrap {
  position: relative;
  width: 100%;
  min-height: 420px;
  border-radius: 24px;
  overflow: hidden;
  background: #0f2432;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
}

.re-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
  display: flex;
  align-items: center;
  z-index: 1;
}

.re-hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
  position: relative;
  min-height: 420px;
}

.re-hero-slide-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.re-hero-slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
}

.re-hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 42, 56, 0.96) 0%, rgba(16, 42, 56, 0.88) 42%, rgba(20, 58, 80, 0.52) 72%, rgba(20, 58, 80, 0.15) 100%);
}

@media (max-width: 768px) {
  .re-hero-slide-overlay {
    background: linear-gradient(180deg, rgba(16, 42, 56, 0.85) 0%, rgba(16, 42, 56, 0.95) 100%);
  }
}

.re-hero-slide-content {
  position: relative;
  z-index: 2;
  padding: 48px 56px;
  max-width: 650px;
  color: #FFFFFF;
}

@media (max-width: 640px) {
  .re-hero-slide-content {
    padding: 32px 24px 60px;
  }
}

.re-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #E05836;
  color: #FFFFFF;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
}

.re-hero-title {
  font-size: clamp(26px, 3.8vw, 42px);
  font-weight: 800;
  color: #FFFFFF !important;
  line-height: 1.18;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.re-hero-seller {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
}

.re-hero-seller strong {
  color: #FFFFFF;
  font-weight: 700;
}

.re-hero-price {
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

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

.re-hero-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #E05836;
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 30px;
  text-decoration: none !important;
  box-shadow: 0 4px 16px rgba(224, 88, 54, 0.38);
  transition: transform 0.2s, background 0.2s;
}

.re-hero-wa-btn:hover {
  transform: translateY(-2px);
  background: #C84626;
  color: #FFFFFF !important;
}

.re-hero-wa-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FFFFFF;
  display: inline-block;
}

.re-hero-slider-dots {
  position: absolute;
  right: 44px;
  bottom: 32px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 640px) {
  .re-hero-slider-dots {
    right: 24px;
    bottom: 20px;
  }
}

.re-hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.re-hero-dot.is-active {
  width: 24px;
  border-radius: 4px;
  background: #E05836;
}

/* HERO SLIDER NAVIGATION ARROWS */
.re-hero-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 12;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(16, 24, 40, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.re-hero-slider-arrow:hover {
  background: #E05836;
  border-color: #E05836;
  color: #FFFFFF;
  transform: translateY(-50%) scale(1.08);
}

.re-hero-slider-arrow:active {
  transform: translateY(-50%) scale(0.96);
}

.re-hero-slider-prev {
  left: 20px;
}

.re-hero-slider-next {
  right: 20px;
}

@media (max-width: 640px) {
  .re-hero-slider-arrow {
    width: 36px;
    height: 36px;
  }
  .re-hero-slider-prev {
    left: 10px;
  }
  .re-hero-slider-next {
    right: 10px;
  }
}

/* ==========================================================================
   CATEGORIAS FOTOGRÁFICAS V2 (ANEXO 1)
   ========================================================================== */
.re-cat-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 991px) {
  .re-cat-photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .re-cat-photo-grid {
    grid-template-columns: 1fr;
  }
}

.re-cat-photo-card {
  position: relative;
  height: 180px;
  border-radius: 18px;
  overflow: hidden;
  display: block;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background: #1e293b;
}

.re-cat-photo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.16);
}

.re-cat-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.re-cat-photo-card:hover img {
  transform: scale(1.05);
}

.re-cat-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(15, 23, 42, 0.88) 100%);
  pointer-events: none;
}

.re-cat-photo-info {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  color: #FFFFFF !important;
  z-index: 2;
  pointer-events: none;
}

.re-cat-photo-name {
  font-size: 16.5px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 3px;
  color: #FFFFFF !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.re-cat-photo-count {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 500;
}

/* ==========================================================================
   BOTÕES DE COMPARTILHAMENTO SOCIAL & AVALIAÇÃO
   ========================================================================== */
.re-share-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none !important;
  border: 1px solid var(--re-border-hairline);
  background: #F8F9FA;
  color: var(--re-ink);
  transition: all 0.2s ease;
  cursor: pointer;
}

.re-share-pill:hover {
  transform: translateY(-1px);
}

.re-share-pill-wa:hover {
  background: #E8F8EE;
  color: #1FAF5C;
  border-color: #1FAF5C;
}

.re-share-pill-fb:hover {
  background: #EBF2FA;
  color: #1877F2;
  border-color: #1877F2;
}

.re-share-pill-tw:hover {
  background: #F1F5F9;
  color: #0F172A;
  border-color: #0F172A;
}

.re-share-pill-em:hover {
  background: #FDF2EE;
  color: var(--re-accent);
  border-color: var(--re-accent);
}

.re-share-pill-copy:hover {
  background: #F1F5F9;
  color: var(--re-ink);
}

.re-star-btn {
  outline: none;
}

.re-star-btn:focus {
  transform: scale(1.15);
}

