/* ==========================================================================
   AZ LINE FIT - FOLHA DE ESTILOS COMPLETA E UNIFICADA
   ========================================================================== */

:root {
  --primary: #10b981;
  --primary-dark: #059669;
  --primary-light: #d1fae5;
  --accent: #f59e0b;
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --gray: #94a3b8;
  --light-bg: #f8fafc;
  --white: #ffffff;
  --border: #e2e8f0;
  --danger: #ef4444;
  --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --site-max-width: 1240px;
}

/* --------------------------------------------------------------------------
   RESET & REGRAS BÁSICAS
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: #ffffff;
  color: var(--text-dark);
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: var(--site-max-width);
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 20px;
  padding-right: 20px;
}

/* --------------------------------------------------------------------------
   1. FAIXA DE BENEFÍCIOS (NO TOPO)
   -------------------------------------------------------------------------- */
.benefits-bar {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  font-size: 12px;
  font-weight: 600;
  color: #334155;
  padding: 9px 0;
  width: 100%;
}

.benefits-track {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  width: 100%;
}

.benefits-track div {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   2. HEADER PRINCIPAL (LINHA 1: MENU, LOGO, BUSCA & AÇÕES)
   -------------------------------------------------------------------------- */
.navbar-pro {
  position: sticky;
  top: 0;
  z-index: 990;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.navbar-pro-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 20px;
}

/* 1. Esquerda */
.nav-brand-group {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-menu-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-menu-outline:hover {
  border-color: #10b981;
  background: #f8fafc;
}

.icon-burger {
  font-size: 16px;
  line-height: 1;
}

.menu-label {
  display: inline;
}

.brand-logo-clean {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.8px;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 2px;
  white-space: nowrap;
}

.brand-icon {
  color: #10b981;
  font-size: 18px;
}

.brand-logo-clean strong {
  font-weight: 900;
  color: #10b981;
}

/* 2. Centro (Busca) */
.nav-search-wrapper {
  flex: 1;
  max-width: 480px;
  margin: 0 auto;
}

.search-form-clean {
  display: flex;
  align-items: stretch;
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  overflow: hidden;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-form-clean:focus-within {
  border-color: #10b981;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.12);
}

.search-input-clean {
  flex: 1;
  border: none;
  padding: 9px 14px;
  font-size: 13px;
  outline: none;
  color: #0f172a;
  background: transparent;
}

.search-input-clean::placeholder {
  color: #94a3b8;
}

.search-btn-clean {
  background: #090d16;
  border: none;
  color: #ffffff;
  padding: 0 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.search-btn-clean:hover {
  background: #10b981;
}

/* 3. Direita (Ações) */
.nav-actions-group {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-action-item {
  cursor: pointer;
  user-select: none;
}

.auth-action-btn {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.action-subtext {
  font-size: 11px;
  color: #059669;
  font-weight: 600;
  display: block;
}

.action-maintext {
  font-size: 13px;
  font-weight: 800;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 3px;
}

.chevron-down {
  font-size: 11px;
  color: #64748b;
  transform: translateY(-1px);
}

.nav-divider {
  display: block;
  width: 1px;
  height: 28px;
  background: #e2e8f0;
}

.cart-action-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #0f172a;
  font-size: 13px;
  font-weight: 800;
}

.cart-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.cart-pill-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #090d16;
  color: #ffffff;
  font-size: 10px;
  font-weight: 900;
  padding: 1px 5px;
  border-radius: 10px;
  min-width: 16px;
  text-align: center;
}

.cart-title-text {
  display: inline;
}

.btn-vip-clean {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #090d16;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn-vip-clean:hover {
  background: #15803d;
  transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   3. BARRA DE CATEGORIAS ABAIXO DO MENU (COR INSTITUCIONAL VERDE)
   -------------------------------------------------------------------------- */
.category-subnav {
  background: linear-gradient(90deg, #064e3b 0%, #047857 50%, #064e3b 100%);
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.category-subnav-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  white-space: nowrap;
}

.category-subnav-container::-webkit-scrollbar {
  display: none;
}

.category-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ecfdf5;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 18px;
  text-decoration: none;
  transition: all 0.2s ease;
  border-bottom: 3px solid transparent;
}

.category-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.category-link.active {
  color: #ffffff;
  border-bottom-color: #34d399;
  background: rgba(0, 0, 0, 0.12);
}

.category-link.link-track {
  color: #a7f3d0;
}

/* --------------------------------------------------------------------------
   4. MENU LATERAL (DRAWER)
   -------------------------------------------------------------------------- */
.side-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
  z-index: 998;
  display: none;
}

.side-nav-drawer {
  position: fixed;
  top: 0;
  left: -300px;
  width: 290px;
  height: 100%;
  background: #fff;
  z-index: 999;
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
  transition: left 0.3s ease;
  display: flex;
  flex-direction: column;
}

.side-nav-drawer.open {
  left: 0;
}

.side-nav-header {
  padding: 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.side-nav-links {
  list-style: none;
  padding: 10px 0;
  display: flex;
  flex-direction: column;
}

.side-nav-links li a {
  display: block;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.side-nav-links li a.highlight-link {
  color: var(--primary);
}

/* --------------------------------------------------------------------------
   5. VITRINE & CATÁLOGO (MANIPULADOS & SUPLEMENTOS)
   -------------------------------------------------------------------------- */
.catalog-section {
  padding: 40px 0 80px;
  background: #ffffff;
  width: 100%;
}

.catalog-title {
  font-size: 28px;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  text-align: left;
}

.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #64748b;
  padding-bottom: 14px;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 30px;
}

.catalog-select {
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 13px;
  color: #0f172a;
  background: #fff;
  margin-left: 6px;
  outline: none;
  cursor: pointer;
}

.product-catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
}

.catalog-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.catalog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.catalog-thumb {
  position: relative;
  background: #f8fafc;
  border-radius: 10px;
  padding: 35px 10px;
  text-align: center;
  margin-bottom: 16px;
}

.catalog-icon {
  font-size: 54px;
  line-height: 1;
}

.catalog-badge {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: #0284c7;
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 12px;
  white-space: nowrap;
}

.catalog-prod-title {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.4;
  min-height: 40px;
  margin-bottom: 10px;
  text-align: left;
}

.catalog-pricing {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 2px;
}

.catalog-price-current {
  font-size: 20px;
  font-weight: 900;
  color: #059669;
}

.catalog-price-old {
  font-size: 12px;
  color: #94a3b8;
  text-decoration: line-through;
}

.catalog-installment {
  font-size: 12px;
  color: #64748b;
  margin-bottom: 16px;
  display: block;
  text-align: left;
}

.btn-catalog-buy {
  width: 100%;
  background: #10b981;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-catalog-buy:hover {
  background: #059669;
}

/* --------------------------------------------------------------------------
   6. SLIDER BANNER HERO (HOME)
   -------------------------------------------------------------------------- */
.promo-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: radial-gradient(circle at 70% 50%, #064e3b 0%, #022c22 100%);
  min-height: 520px;
}

.slider-container {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.slide {
  min-width: 100%;
  min-height: 520px;
  color: #fff;
  padding: 50px 0;
  display: flex;
  align-items: center;
}

.slide-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}

.slide-text {
  flex: 1.1;
  text-align: left;
}

.slide-badge {
  display: inline-block;
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  border: 1px solid rgba(52, 211, 153, 0.3);
}

.slide-text h1 {
  font-size: 44px;
  line-height: 1.12;
  font-weight: 900;
  margin-bottom: 14px;
}

.slide-text h1 span {
  color: var(--primary);
}

.slide-text p {
  font-size: 15px;
  color: #cbd5e1;
  margin-bottom: 22px;
  line-height: 1.6;
  max-width: 520px;
}

.slide-coupon-box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px dashed rgba(255, 255, 255, 0.35);
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 13px;
  margin-bottom: 26px;
  cursor: pointer;
}

.slide-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}

.btn-slide-primary {
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.btn-slide-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 15px 24px;
  border-radius: 12px;
}

.slide-visual {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.product-banner-mockup {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 40px 30px 25px;
  width: 100%;
  max-width: 420px;
  text-align: center;
}

.bottles-mockup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.bottle {
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
}

.bottle-main {
  width: 150px;
  height: 200px;
  background: linear-gradient(145deg, #047857, #064e3b);
  border: 2px solid #34d399;
  font-size: 14px;
}

.bottle-side {
  width: 85px;
  height: 140px;
  background: #022c22;
  opacity: 0.6;
  font-size: 12px;
}

.badge-discount-float {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--danger);
  color: #fff;
  font-weight: 900;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 8px;
}

.mockup-caption {
  font-size: 12px;
  color: #94a3b8;
}

.slider-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

.slider-btn.prev { left: 20px; }
.slider-btn.next { right: 20px; }

.slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 6px;
}

/* --------------------------------------------------------------------------
   7. SHOWCASE & KITS (HOME)
   -------------------------------------------------------------------------- */
.product-showcase {
  padding: 50px 0;
  background: var(--white);
}

.product-box {
  background: var(--light-bg);
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 35px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
}

.product-mockup {
  width: 35%;
  background: #fff;
  border-radius: 14px;
  padding: 40px 20px;
  text-align: center;
  border: 1px solid var(--border);
}

.product-info {
  width: 65%;
  text-align: left;
}

.product-info h2 {
  font-size: 26px;
  font-weight: 900;
  margin: 6px 0;
}

.rating {
  font-size: 13px;
  color: var(--accent);
  font-weight: 700;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}

.product-tags .tag {
  background: #fff;
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 8px;
}

.product-info p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.6;
}

.cta-btn {
  width: 100%;
  max-width: 380px;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  padding: 16px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
}

.pricing {
  padding: 55px 0;
  background: var(--light-bg);
}

.section-header {
  text-align: center;
  margin-bottom: 35px;
}

.section-header h2 {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 8px;
}

.pricing-grid {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 24px;
}

.pricing-card {
  flex: 1;
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 26px;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-card.featured {
  border: 2px solid var(--primary);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.15);
}

.card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: 11px;
  padding: 5px 14px;
  border-radius: 12px;
}

.price-now {
  font-size: 32px;
  font-weight: 900;
  color: var(--text-dark);
  margin-top: 4px;
}

.pricing-list {
  list-style: none;
  text-align: left;
  font-size: 13px;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-buy-trigger {
  width: 100%;
  background: #0f172a;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  padding: 15px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

.pricing-card.featured .btn-buy-trigger {
  background: var(--primary);
}

/* --------------------------------------------------------------------------
   8. GAVETA DO CARRINHO (DRAWER)
   -------------------------------------------------------------------------- */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: #fff;
  z-index: 1000;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.cart-drawer.open {
  right: 0;
}

.cart-header {
  padding: 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.free-shipping-tracker {
  background: var(--light-bg);
  padding: 10px 16px;
  font-size: 12px;
  border-bottom: 1px solid var(--border);
}

.tracker-bar-bg {
  width: 100%;
  height: 6px;
  background: #e2e8f0;
  border-radius: 4px;
  margin-top: 6px;
  overflow: hidden;
}

.tracker-bar-fill {
  height: 100%;
  background: var(--primary);
  width: 0%;
  transition: width 0.3s ease;
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}

.cart-item-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.cart-item-thumb {
  font-size: 24px;
  background: var(--light-bg);
  padding: 8px;
  border-radius: 8px;
}

.cart-item-details {
  flex: 1;
  text-align: left;
}

.cart-item-details h4 {
  font-size: 13px;
  font-weight: 700;
}

.unit-price {
  font-size: 13px;
  color: var(--primary-dark);
  font-weight: 700;
}

.qty-controls {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 6px;
  margin-top: 4px;
}

.qty-btn {
  background: none;
  border: none;
  padding: 2px 8px;
  cursor: pointer;
  font-weight: 700;
}

.qty-number {
  font-size: 12px;
  padding: 0 6px;
  font-weight: 700;
}

.btn-remove-item {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.coupon-section {
  display: flex;
  gap: 8px;
  margin-top: 15px;
}

.coupon-input {
  flex: 1;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 12px;
  text-transform: uppercase;
}

.btn-apply-coupon {
  background: #0f172a;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.order-bump-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #fef3c7;
  border: 1px dashed #f59e0b;
  padding: 10px;
  border-radius: 8px;
  margin-top: 15px;
  cursor: pointer;
}

.cart-footer {
  border-top: 1px solid var(--border);
  padding: 16px;
  background: #fff;
}

.cart-line-item {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 4px;
}

.cart-line-item.total {
  font-size: 17px;
  font-weight: 900;
  margin-top: 8px;
  padding-top: 6px;
  border-top: 1px solid var(--border);
}

/* --------------------------------------------------------------------------
   9. MODAL DE AUTENTICAÇÃO E PERFIL
   -------------------------------------------------------------------------- */
.auth-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  z-index: 1050;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.auth-box {
  background: #fff;
  width: 100%;
  max-width: 400px;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  max-height: 90vh;
  overflow-y: auto;
}

.auth-tabs {
  display: flex;
  gap: 10px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}

.auth-tab {
  background: none;
  border: none;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--gray);
  cursor: pointer;
  border-bottom: 2px solid transparent;
}

.auth-tab.active {
  color: var(--primary-dark);
  border-bottom-color: var(--primary);
}

.form-group {
  margin-bottom: 12px;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 4px;
}

.form-group input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-size: 13px;
  outline: none;
}

.btn-auth-submit {
  width: 100%;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 10px;
  min-height: 46px;
}

/* --------------------------------------------------------------------------
   10. RODAPÉ
   -------------------------------------------------------------------------- */
footer {
  background: #090d16;
  color: #e2e8f0;
  padding: 45px 0 25px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 30px;
  margin-bottom: 30px;
  text-align: left;
}

.footer-col h4 {
  font-size: 14px;
  color: #fff;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 800;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: #94a3b8;
}

/* ==========================================================================
   11. MEDIA QUERY EXCLUSIVA PARA CELULARES (ATÉ 768px)
   ========================================================================== */
@media (max-width: 768px) {
  .benefits-bar {
    padding: 8px 0;
    font-size: 11px;
  }

  .benefits-track {
    gap: 16px;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 0 12px;
  }

  /* Header Mobile */
  .navbar-pro-container {
    flex-wrap: wrap;
    padding: 8px 12px;
    gap: 8px;
  }

  .menu-label,
  .action-subtext,
  .cart-title-text,
  .btn-vip-clean,
  .nav-divider {
    display: none !important;
  }

  .nav-search-wrapper {
    order: 3;
    max-width: 100%;
    margin: 4px 0 0 0;
  }

  .brand-logo-clean {
    font-size: 18px;
  }

  /* Barra de Categorias Mobile */
  .category-subnav-container {
    justify-content: flex-start;
    padding: 0 12px;
  }

  .category-link {
    font-size: 12px;
    padding: 8px 12px;
  }

  /* Slider Mobile */
  .promo-slider {
    min-height: auto;
  }

  .slide {
    min-height: auto;
    padding: 25px 0 35px 0;
  }

  .slide-content {
    flex-direction: column-reverse;
    text-align: center;
    gap: 16px;
  }

  .slide-text h1 {
    font-size: 24px;
  }

  .slide-actions {
    flex-direction: column;
  }

  .slider-btn {
    display: none;
  }

  .product-banner-mockup {
    max-width: 280px;
    padding: 20px 10px;
  }

  .bottle-main {
    width: 110px;
    height: 140px;
    font-size: 12px;
  }

  .bottle-side {
    width: 60px;
    height: 95px;
    font-size: 10px;
  }

  /* Showcase & Kits Mobile */
  .product-box {
    flex-direction: column;
    padding: 16px;
  }

  .product-mockup, .product-info {
    width: 100%;
  }

  .pricing-grid {
    flex-direction: column;
  }

  /* Catálogo Mobile */
  .product-catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .catalog-card {
    padding: 12px 8px;
  }

  .catalog-thumb {
    padding: 20px 6px;
  }

  .catalog-icon {
    font-size: 38px;
  }

  .catalog-prod-title {
    font-size: 12px;
    min-height: 32px;
  }

  .catalog-price-current {
    font-size: 16px;
  }

  .cart-drawer {
    max-width: 100%;
  }

  .footer-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}