:root {
  --blue: #1266f1;
  --blue-soft: #eef5ff;
  --green: #16a34a;
  --red: #ef4444;
  --text: #0f172a;
  --muted: #64748b;
  --border: #e5e7eb;
  --bg: #f7f9fc;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

.app {
  display: grid;
  grid-template-columns: 250px 1fr 340px;
  min-height: 100vh;
}

.sidebar {
  background: var(--white);
  border-right: 1px solid var(--border);
  padding: 22px 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 34px;
}

.logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, #1266f1, #0048c9);
  color: white;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 900;
}

.logo-title {
  font-size: 23px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
}

.logo-subtitle {
  font-size: 13px;
  color: var(--muted);
  margin-top: 5px;
}

.menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  margin-bottom: 7px;
  color: #334155;
  text-decoration: none;
  border-radius: 14px;
  font-weight: 600;
}

.menu a.active,
.menu a:hover {
  background: var(--blue-soft);
  color: var(--blue);
}

.sidebar-card {
  margin-top: 18px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
}

.sidebar-card h3 {
  margin: 0 0 12px;
  font-size: 15px;
}

.sidebar-card .money {
  color: var(--green);
  font-size: 24px;
  font-weight: 900;
}

.main {
  padding: 20px 26px;
  border-right: 1px solid var(--border);
}

.topbar {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.search {
  width: 520px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 15px;
  padding: 15px 18px;
  font-size: 15px;
}

.top-actions {
  display: flex;
  gap: 12px;
}

.top-pill {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 10px 16px;
  font-weight: 800;
  font-size: 13px;
}

.top-pill.red {
  color: var(--red);
}

.top-pill.green {
  color: var(--green);
}

.welcome {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

.welcome h1 {
  margin: 0;
  font-size: 24px;
}

.welcome p {
  margin: 6px 0 0;
  color: var(--muted);
}

.date-box {
  background: white;
  border: 1px solid var(--border);
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 700;
}

.cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 22px;
}

.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  min-height: 110px;
}

.card small {
  color: var(--muted);
}

.card h2 {
  margin: 10px 0 6px;
  font-size: 24px;
}

.up {
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.panel {
  background: white;
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
}

.panel-head {
  padding: 18px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.filters {
  display: flex;
  gap: 6px;
}

.filter {
  border: 1px solid var(--border);
  background: white;
  padding: 9px 13px;
  border-radius: 12px;
  font-weight: 700;
  color: #334155;
}

.filter.active {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}

.deal {
  display: grid;
  grid-template-columns: 105px 1.4fr 150px 170px 135px 42px;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
}

.product-img {
  width: 92px;
  height: 78px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  display: grid;
  place-items: center;
  font-size: 34px;
}

.product-title {
  font-weight: 900;
  margin-bottom: 6px;
}

.store {
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 5px;
}

.rating {
  color: #f59e0b;
  font-size: 13px;
}

.old-price {
  text-decoration: line-through;
  color: #94a3b8;
  font-size: 13px;
}

.new-price {
  color: var(--green);
  font-size: 23px;
  font-weight: 900;
}

.save {
  background: #dcfce7;
  color: #15803d;
  padding: 6px 8px;
  border-radius: 9px;
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
}

.chart {
  height: 45px;
  border-radius: 12px;
  background: linear-gradient(180deg, #eff6ff, #ffffff);
  position: relative;
  overflow: hidden;
}

.chart:after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 13px;
  height: 2px;
  background: var(--blue);
  transform: rotate(-8deg);
  box-shadow: 20px -3px 0 var(--blue), 45px 3px 0 var(--blue), 70px -4px 0 var(--blue), 95px 5px 0 var(--blue);
}

.btn {
  background: var(--blue);
  color: white;
  border: none;
  padding: 13px 18px;
  border-radius: 13px;
  font-weight: 900;
  cursor: pointer;
}

.bookmark {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: white;
}

.rightbar {
  background: var(--bg);
  padding: 22px;
}

.flash,
.side-panel {
  background: white;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 20px;
  margin-bottom: 20px;
}

.flash h2,
.side-panel h2 {
  margin: 0 0 18px;
  font-size: 19px;
}

.timer {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
}

.timer span {
  background: #fee2e2;
  color: var(--red);
  padding: 9px 12px;
  border-radius: 12px;
  font-size: 22px;
  font-weight: 900;
}

.flash-product {
  display: grid !important;
  grid-template-columns: 92px 1fr !important;
  gap: 14px !important;
  align-items: center !important;
  text-align: left !important;
}

.flash-img {
  width: 92px !important;
  height: 98px !important;
  border-radius: 16px !important;
  background: linear-gradient(135deg, #f1f5f9, #e5e7eb) !important;
  display: grid !important;
  place-items: center !important;
  font-size: 42px !important;
  overflow: hidden !important;
  margin: 0 !important;
}

.flash-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  padding: 8px !important;
}

.flash-info strong {
  display: block !important;
  font-size: 14px !important;
  line-height: 1.15 !important;
  margin-bottom: 6px !important;
  color: #0f172a !important;
}

.flash-info p {
  margin: 0 0 6px !important;
  color: #475569 !important;
  font-size: 12px !important;
  font-weight: 700 !important;
}

.flash-price {
  color: var(--red) !important;
  font-size: 25px !important;
  font-weight: 900 !important;
  margin-top: 2px !important;
}

.flash-btn {
  margin-top: 18px !important;
  width: 100% !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: white !important;
  border: none !important;
  border-radius: 14px !important;
  padding: 15px !important;
  font-weight: 900 !important;
  cursor: pointer !important;
  box-shadow: 0 10px 20px rgba(239,68,68,.22) !important;
}

.category-row {
  display: grid;
  grid-template-columns: 42px 1fr 55px;
  gap: 12px;
  align-items: center;
  margin-bottom: 15px;
}

.cat-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #f1f5f9;
  display: grid;
  place-items: center;
}

.percent {
  background: #dcfce7;
  color: #15803d;
  padding: 7px;
  border-radius: 10px;
  font-weight: 900;
  text-align: center;
  font-size: 12px;
}

.telegram {
  text-align: center;
}

.telegram-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  display: grid;
  place-items: center;
  font-size: 36px;
}

.footer-strip {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.footer-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  font-weight: 800;
  text-align: center;
}

.quick-categories {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-bottom: 22px;
}

.quick {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 16px;
  text-align: center;
  font-weight: 900;
  color: #334155;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}

.quick.active,
.quick:hover {
  background: #1266f1;
  color: #ffffff;
  border-color: #1266f1;
}









.hero-buttons {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.hero-btn {
  padding: 15px 22px;
  border-radius: 16px;
  border: none;
  font-weight: 900;
  cursor: pointer;
}

.hero-btn.primary {
  background: white;
  color: #0f172a;
}

.hero-btn.secondary {
  background: rgba(255,255,255,0.12);
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
}

.hero-stats {
  display: flex;
  gap: 22px;
  margin-top: 18px;
}

.hero-stats strong {
  display: block;
  font-size: 28px;
}

.hero-stats span {
  color: #cbd5e1;
}



.hero-card {
  position: absolute;
  width: 180px;
  height: 110px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  color: white;
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}

.amazon {
  background: #f59e0b;
  top: 0;
  right: 40px;
}

.walmart {
  background: #2563eb;
  top: 90px;
  left: 10px;
}

.booking {
  background: #0ea5e9;
  bottom: 0;
  right: 0;
}

.target {
  background: #ef4444;
  bottom: 60px;
  left: 60px;
}

.brand-cloud {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  min-height: auto;
  align-content: center;
}







.brand-logo span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.1;
}

/* AJUSTE HERO AZUL - MARCAS COM LOGO EM CIMA E NOME EMBAIXO */
.brand-cloud {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 14px !important;
  align-content: center !important;
}





.brand-logo span {
  display: block !important;
  width: 100% !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  line-height: 1.1 !important;
}










.admin-page {
  padding: 40px;
  max-width: 900px;
  margin: auto;
}

.admin-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  padding: 24px;
  display: grid;
  gap: 14px;
}

.admin-card input {
  padding: 14px;
  border: 1px solid #d1d5db;
  border-radius: 14px;
}

.admin-card button {
  background: #1266f1;
  color: white;
  border: none;
  padding: 15px;
  border-radius: 14px;
  font-weight: 900;
}

.admin-offer-row {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 16px;
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-delete-btn {
  margin-top: 8px;
  background: #ef4444;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 800;
  cursor: pointer;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 24px 0;
}

.admin-stat-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 20px;
}

.admin-stat-card small {
  color: #64748b;
  font-weight: 700;
}

.admin-stat-card strong {
  display: block;
  margin-top: 10px;
  font-size: 28px;
  color: #1266f1;
}

#adminOffersList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.admin-offer-row {
  display: block !important;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.admin-offer-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.admin-offer-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #eff6ff;
  color: #1266f1;
  display: grid;
  place-items: center;
  font-size: 24px;
}

.admin-offer-price {
  font-size: 24px;
  font-weight: 900;
  color: #16a34a;
}

.admin-offer-meta {
  color: #64748b;
  font-size: 13px;
  margin: 8px 0 14px;
}

.admin-offer-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  border-top: 1px solid #e5e7eb;
  padding-top: 14px;
}

.admin-badge {
  background: #dcfce7;
  color: #15803d;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

/* ADMIN COMPACTO */
.admin-page {
  padding: 18px 26px !important;
  max-width: 100% !important;
}

.admin-page h1 {
  margin: 0 !important;
  font-size: 26px !important;
}

.admin-page h2 {
  margin: 18px 0 10px !important;
  font-size: 18px !important;
}

.admin-page p {
  margin: 4px 0 10px !important;
}

.admin-stats {
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 12px !important;
  margin: 14px 0 !important;
}

.admin-stat-card {
  padding: 14px !important;
  border-radius: 16px !important;
}

.admin-stat-card strong {
  font-size: 22px !important;
  margin-top: 6px !important;
}

.admin-card {
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 10px !important;
  padding: 16px !important;
}

.admin-card input {
  padding: 11px !important;
}

.admin-card button {
  padding: 11px !important;
}

#adminOffersList {
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 12px !important;
}

.admin-offer-row {
  padding: 14px !important;
  border-radius: 18px !important;
}

.admin-offer-row h3 {
  font-size: 15px !important;
  margin: 8px 0 !important;
}

.admin-offer-icon {
  width: 42px !important;
  height: 42px !important;
  font-size: 20px !important;
}

.admin-offer-price {
  font-size: 19px !important;
}

.admin-offer-meta {
  font-size: 12px !important;
  margin: 6px 0 10px !important;
}

.admin-offer-footer {
  gap: 6px !important;
  margin-top: 10px !important;
  padding-top: 10px !important;
  flex-wrap: wrap !important;
}

.admin-badge,
.admin-delete-btn {
  font-size: 11px !important;
  padding: 6px 8px !important;
}

#storeStatsList {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.store-stat-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

.store-stat-card strong {
  display: block;
  font-size: 16px;
  color: #1266f1;
  margin-bottom: 8px;
}

.store-stat-card span {
  display: block;
  color: #334155;
  font-size: 12px;
  margin-top: 4px;
}

.product-img {
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.category-page {
  padding: 28px;
  background: #f7f9fc;
  min-height: 100vh;
}

.category-header {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 24px;
  margin-bottom: 22px;
}

.back-link {
  color: #1266f1;
  font-weight: 900;
  text-decoration: none;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.category-offer-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  padding: 18px;
}

.category-offer-img {
  height: 150px;
  border-radius: 18px;
  background: #f1f5f9;
  display: grid;
  place-items: center;
  font-size: 42px;
  overflow: hidden;
  margin-bottom: 14px;
}

.category-offer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-offer-card h3 {
  font-size: 16px;
  margin: 8px 0;
}

.quick {
  text-decoration: none;
  display: block;
}

.search-box {
  position: relative;
  width: 100%;
  max-width: 720px;
}

.search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #64748b;
}

.search {
  width: 100%;
  height: 58px;
  border-radius: 18px;
  border: 1px solid #dbe2ea;
  padding: 0 20px 0 52px;
  font-size: 16px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(15,23,42,0.05);
}

.search:focus {
  outline: none;
  border-color: #1266f1;
  box-shadow: 0 0 0 4px rgba(18,102,241,0.12);
}

.admin-card textarea {
  grid-column: span 4;
  min-height: 110px;
  padding: 14px;
  border: 1px solid #d1d5db;
  border-radius: 14px;
  resize: vertical;
  font-family: Arial, sans-serif;
}

.hero-btn.local {
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: white;
  border: 1px solid rgba(255,255,255,.25);
  box-shadow: 0 12px 28px rgba(34,197,94,.28);
}

.social-text{
  color:#475569;
  line-height:1.5;
  margin-bottom:18px;
}

.social-buttons{
  display:grid;
  gap:12px;
}

.social-btn{
  display:block;
  text-decoration:none;
  color:white;
  padding:14px;
  border-radius:14px;
  font-weight:800;
  text-align:center;
  transition:.3s;
}

.social-btn:hover{
  transform:translateY(-2px);
}

.telegram-btn{
  background:#229ED9;
}

.whatsapp-btn{
  background:#22c55e;
}

.instagram-btn{
  background:linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045);
}

.facebook-btn{
  background:#1877f2;
}

.floating-social{
  position:fixed;
  right:18px;
  bottom:18px;
  display:flex;
  flex-direction:column;
  gap:12px;
  z-index:9999;
}

.floating-social a{
  width:58px;
  height:58px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color:white;
  font-size:26px;
  box-shadow:0 12px 24px rgba(0,0,0,.22);
  transition:.3s;
}

.floating-social a:hover{
  transform:scale(1.08);
}

.float-whatsapp{
  background:#22c55e;
}

.float-instagram{
  background:linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045);
}

.float-telegram{
  background:#229ED9;
}

.float-facebook{
  background:#1877f2;
}

.sidebar-social{
  margin-top:22px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.12);
}

.sidebar-social-title{
  color:#94a3b8;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin:0 0 12px 12px;
  font-weight:800;
}

.sidebar-social a{
  display:flex !important;
  align-items:center;
  gap:12px;
  padding:11px 12px !important;
  border-radius:14px;
  color:#e5e7eb !important;
  text-decoration:none;
}

.sidebar-social a:hover{
  background:rgba(255,255,255,.08);
}

.sidebar-social img{
  width:24px;
  height:24px;
  border-radius:6px;
}

.sidebar-social span{
  font-size:14px;
  font-weight:800;
}

.sidebar-social{
  margin-top:22px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.12);
}

.sidebar-social-title{
  color:#94a3b8;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin:0 0 12px 12px;
  font-weight:800;
}

.sidebar-social a{
  display:flex !important;
  align-items:center;
  gap:12px;
  padding:11px 12px !important;
  border-radius:14px;
  color:#e5e7eb !important;
  text-decoration:none;
}

.sidebar-social a:hover{
  background:rgba(255,255,255,.08);
}

.sidebar-social img{
  width:24px;
  height:24px;
  border-radius:6px;
}

.sidebar-social span{
  font-size:14px;
  font-weight:800;
}

.logo-icon{
  width:42px !important;
  height:42px !important;
  min-width:42px !important;
  border-radius:14px !important;
  font-size:16px !important;
  font-weight:900 !important;
  letter-spacing:-1px;
}

.logo-title{
  font-size:18px !important;
  letter-spacing:.3px;
}

.logo-subtitle{
  font-size:11px !important;
}

.globe-logo{
  position:relative;
  width:52px !important;
  height:52px !important;
  min-width:52px !important;
  border-radius:18px !important;
  background:linear-gradient(135deg,#1d4ed8,#2563eb);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 24px rgba(37,99,235,.35);
  overflow:hidden;
}

.globe-core{
  font-size:26px;
  z-index:2;
}

.globe-ring{
  position:absolute;
  width:80px;
  height:80px;
  border:2px solid rgba(255,255,255,.18);
  border-radius:50%;
}

.logo-title{
  font-size:20px !important;
  font-weight:900;
  color:white;
}

.logo-subtitle{
  font-size:11px !important;
  color:#94a3b8;
}

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

.logo-mark{
  width:46px;
  height:46px;
  min-width:46px;
  border-radius:16px;
  background:linear-gradient(135deg,#2563eb,#0f172a);
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  box-shadow:0 12px 28px rgba(37,99,235,.35);
}

.logo-tag{
  width:28px;
  height:28px;
  border-radius:9px;
  background:#ffffff;
  color:#2563eb;
  font-weight:900;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  transform:rotate(-12deg);
}

.logo-orbit{
  position:absolute;
  width:58px;
  height:22px;
  border:2px solid rgba(255,255,255,.45);
  border-radius:50%;
  transform:rotate(-25deg);
}

.logo-title{
  font-size:21px !important;
  font-weight:900;
  color:#2563eb !important;
  letter-spacing:.2px;
}

.logo-subtitle{
  font-size:11px !important;
  color:#64748b !important;
  font-weight:700;
}

.main-logo{
  width:100%;
  max-width:220px;
  display:block;
  margin:0 auto 12px;
  object-fit:contain;
}

.main-logo{
  display:none !important;
}

/* AJUSTE FINAL HERO BF DEALS */








.hero-buttons{
  gap:14px !important;
  margin-bottom:26px !important;
}

.hero-btn{
  padding:15px 24px !important;
  border-radius:16px !important;
  font-size:15px !important;
}

.hero-stats{
  display:flex !important;
  gap:34px !important;
  align-items:center !important;
}

.hero-stats div{
  display:flex !important;
  align-items:center !important;
  gap:8px !important;
}

.hero-stats strong{
  font-size:26px !important;
}

.hero-stats span{
  font-size:15px !important;
  color:white !important;
}









@media(max-width:1100px){
  

  
}

@media(max-width:700px){
  

  
}

.smart-header{
  margin:22px 0 18px;
}

.search-box{
  width:100%;
  max-width:520px;
  background:white;
  border:1px solid var(--border);
  border-radius:14px;
  padding:12px 16px;
  display:flex;
  align-items:center;
  gap:10px;
  box-shadow:0 8px 20px rgba(15,23,42,.04);
  margin-bottom:18px;
}

.search-box input{
  border:none;
  outline:none;
  width:100%;
  font-size:14px;
}

.smart-title-row{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:20px;
  margin-bottom:16px;
}

.smart-title-row h2{
  margin:0 0 6px;
  font-size:22px;
}

.smart-title-row p{
  margin:0;
  color:#64748b;
  font-size:14px;
}

.smart-badges{
  display:flex;
  gap:12px;
  align-items:center;
}

.smart-badges div{
  background:white;
  border:1px solid var(--border);
  border-radius:14px;
  padding:10px 14px;
  font-size:12px;
  font-weight:800;
  color:#ef4444;
  box-shadow:0 8px 20px rgba(15,23,42,.04);
  white-space:nowrap;
}

.smart-badges strong{
  color:#16a34a;
}

.category-tabs{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:12px;
  margin-bottom:18px;
}

.category-tabs button{
  border:1px solid var(--border);
  background:white;
  padding:13px;
  border-radius:13px;
  font-weight:900;
  cursor:pointer;
}

.category-tabs button.active{
  background:#2563eb;
  color:white;
}

@media(max-width:900px){
  .smart-title-row{
    flex-direction:column;
  }

  .smart-badges{
    flex-wrap:wrap;
  }

  .category-tabs{
    grid-template-columns:repeat(2,1fr);
  }
}

.cards-row{
  display:grid !important;
  grid-template-columns:repeat(5,1fr) !important;
  gap:16px !important;
  margin:18px 0 28px !important;
}

.card{
  background:white !important;
  border:1px solid #e2e8f0 !important;
  border-radius:18px !important;
  padding:20px !important;
  box-shadow:0 10px 24px rgba(15,23,42,.05) !important;
  transition:.3s;
}

.card:hover{
  transform:translateY(-3px);
  box-shadow:0 16px 34px rgba(15,23,42,.08) !important;
}

.card small{
  display:block;
  color:#64748b !important;
  font-size:13px !important;
  margin-bottom:10px !important;
  font-weight:700;
}

.card h2{
  margin:0 0 10px !important;
  font-size:34px !important;
  color:#0f172a !important;
  font-weight:900 !important;
}

.card .up{
  color:#16a34a !important;
  font-size:13px !important;
  font-weight:800 !important;
}

@media(max-width:1200px){
  .cards-row{
    grid-template-columns:repeat(2,1fr) !important;
  }
}

@media(max-width:700px){
  .cards-row{
    grid-template-columns:1fr !important;
  }
}

.cards-row{
  grid-template-columns:repeat(6,1fr) !important;
  gap:12px !important;
}

.card{
  padding:14px 18px !important;
  border-radius:14px !important;
  min-height:92px !important;
  display:flex !important;
  flex-direction:column !important;
  justify-content:center !important;
}

.card small{
  font-size:11px !important;
  margin-bottom:6px !important;
}

.card h2{
  font-size:30px !important;
  margin:0 0 4px !important;
  line-height:1 !important;
}

.card .up{
  font-size:11px !important;
}

@media(max-width:1300px){
  .cards-row{
    grid-template-columns:repeat(3,1fr) !important;
  }
}

@media(max-width:700px){
  .cards-row{
    grid-template-columns:1fr !important;
  }
}

.category-tabs{
  margin-bottom:18px !important;
}

.cards-row{
  margin-top:8px !important;
  grid-template-columns:repeat(5,1fr) !important;
  gap:16px !important;
}

.card{
  min-height:86px !important;
  padding:16px 20px !important;
  justify-content:center !important;
}

.card h2{
  font-size:28px !important;
}

.smart-title-row{
  margin-bottom:18px !important;
}

.smart-badges{
  margin-top:6px !important;
}

.cards-row{
  grid-template-columns:repeat(5,1fr) !important;
  gap:10px !important;
  margin:10px 0 24px !important;
}

.card{
  min-height:70px !important;
  padding:12px 16px !important;
  border-radius:12px !important;
}

.card small{
  font-size:10px !important;
  margin-bottom:5px !important;
}

.card h2{
  font-size:22px !important;
  margin:0 0 3px !important;
}

.card .up{
  font-size:10px !important;
  line-height:1.1 !important;
}

.content-grid{
  display:grid !important;
  grid-template-columns:minmax(0,1fr) 320px !important;
  gap:22px !important;
  align-items:start !important;
}

.rightbar{
  position:sticky !important;
  top:18px !important;
  display:flex !important;
  flex-direction:column !important;
  gap:18px !important;
}

.offers-section{
  min-width:0 !important;
}

@media(max-width:1200px){
  .content-grid{
    grid-template-columns:1fr !important;
  }

  .rightbar{
    position:relative !important;
    top:auto !important;
  }
}

/* RIGHTBAR FIXA NO CANTO DIREITO */
.main{
  padding-right:300px !important;
}

.rightbar{
  position:fixed !important;
  right:28px !important;
  top:92px !important;
  width:260px !important;
  z-index:50 !important;
}

.content-grid{
  display:block !important;
}

.offers-section{
  width:100% !important;
}

@media(max-width:1300px){
  .main{
    padding-right:0 !important;
  }

  .rightbar{
    position:relative !important;
    right:auto !important;
    top:auto !important;
    width:100% !important;
    margin-top:20px !important;
  }
}

/* AJUSTE FINO - HOME BF DEALS */
.main{
  max-width:1500px !important;
  margin:0 auto !important;
  padding:22px 330px 40px 24px !important;
}



.rightbar{
  right:34px !important;
  top:100px !important;
  width:285px !important;
}

.flash,
.side-panel{
  border-radius:20px !important;
  padding:22px !important;
}

.flash{
  min-height:210px !important;
}

.flash h2{
  font-size:20px !important;
  line-height:1.2 !important;
}

.timer span{
  font-size:20px !important;
  padding:10px 13px !important;
}

.content-grid{
  margin-top:22px !important;
}

.offers-section{
  max-width:1180px !important;
  margin:0 auto !important;
}

.flash{
  min-height:auto !important;
}

.flash-product{
  display:grid !important;
  grid-template-columns:90px 1fr !important;
  gap:14px !important;
  align-items:center !important;
  text-align:left !important;
  margin-top:16px !important;
}

.flash-img{
  width:90px !important;
  height:95px !important;
  border-radius:16px !important;
  margin:0 !important;
}

.flash-img img{
  width:100% !important;
  height:100% !important;
  object-fit:contain !important;
}

.flash-info strong{
  font-size:14px !important;
  line-height:1.15 !important;
}

.flash-info p{
  font-size:12px !important;
  margin:5px 0 !important;
}

.flash-price{
  font-size:24px !important;
}

.flash-btn{
  margin-top:18px !important;
  padding:14px !important;
}

/* AJUSTE HERO MAIS LARGO */


/* CANAIS OFICIAIS NA ESQUERDA */
.sidebar-social{
  margin-top:24px;
  padding:18px 10px 0;
  border-top:1px solid #e5e7eb;
}

.sidebar-social-title{
  font-size:12px;
  font-weight:900;
  color:#94a3b8;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:12px;
}

.sidebar-social a{
  display:flex !important;
  align-items:center;
  gap:10px;
  padding:10px 8px !important;
  border-radius:12px;
  color:#0f172a !important;
  text-decoration:none;
  font-weight:800;
  font-size:14px;
}

.sidebar-social a:hover{
  background:#eef2ff;
}

.sidebar-social img{
  width:22px;
  height:22px;
  border-radius:6px;
}

/* OFERTA RELÂMPAGO ORIGINAL */
.flash{
  min-height:260px !important;
}

.flash-product{
  display:grid !important;
  grid-template-columns:90px 1fr !important;
  gap:14px !important;
  align-items:center !important;
  text-align:left !important;
  margin-top:16px !important;
}

.flash-img{
  width:90px !important;
  height:96px !important;
  border-radius:16px !important;
  background:#f1f5f9 !important;
  display:grid !important;
  place-items:center !important;
  overflow:hidden !important;
  margin:0 !important;
}

.flash-img img{
  width:100% !important;
  height:100% !important;
  object-fit:contain !important;
  padding:8px !important;
}

.flash-info strong{
  display:block !important;
  font-size:13px !important;
  line-height:1.15 !important;
  color:#0f172a !important;
  margin-bottom:6px !important;
}

.flash-info p{
  font-size:12px !important;
  margin:0 0 6px !important;
  color:#475569 !important;
}

.flash-price{
  color:#ef4444 !important;
  font-size:24px !important;
  font-weight:900 !important;
}

.flash-btn{
  margin-top:16px !important;
  width:100% !important;
  background:#ef4444 !important;
  color:white !important;
  border:none !important;
  border-radius:14px !important;
  padding:14px !important;
  font-weight:900 !important;
}

/* FLASH DEAL - CARD PROFISSIONAL */
.flash{
  padding:20px !important;
  border-radius:20px !important;
}

.flash h2{
  font-size:19px !important;
  margin-bottom:14px !important;
}

.timer{
  margin-bottom:16px !important;
}

.flash-product{
  grid-template-columns:82px 1fr !important;
  gap:12px !important;
  align-items:center !important;
}

.flash-img{
  width:82px !important;
  height:82px !important;
  border-radius:14px !important;
}

.flash-info strong{
  font-size:12px !important;
  line-height:1.15 !important;
  max-height:56px !important;
  overflow:hidden !important;
}

.flash-info p{
  font-size:11px !important;
  margin:4px 0 !important;
}

.old-price{
  font-size:11px !important;
}

.flash-price{
  font-size:22px !important;
  line-height:1 !important;
  margin-top:2px !important;
}

.save{
  display:inline-block !important;
  font-size:11px !important;
  padding:5px 9px !important;
  border-radius:12px !important;
}

.flash-btn{
  margin-top:14px !important;
  padding:13px !important;
  font-size:13px !important;
  border-radius:14px !important;
}

/* ALINHAMENTO TOPO RIGHTBAR */
.rightbar{
  display:flex !important;
  flex-direction:column !important;
  justify-content:flex-start !important;
  align-items:stretch !important;
  gap:16px !important;
  padding-top:0 !important;
  margin-top:0 !important;
  top:78px !important;
}

.flash,
.side-panel{
  margin-top:0 !important;
  margin-bottom:0 !important;
}

.flash{
  transform:translateY(-6px) !important;
}

/* RIGHTBAR ROLANDO JUNTO COM A PÁGINA */
.main{
  padding-right:330px !important;
}

.rightbar{
  position:absolute !important;
  right:34px !important;
  top:92px !important;
  width:285px !important;
}

/* COLUNA DIREITA NO TOPO */
.rightbar{
  position:absolute !important;
  right:34px !important;
  top:10px !important;
  width:285px !important;
}

.main{
  position:relative !important;
  padding-right:340px !important;
}

/* PADRÃO FINAL - TOPO, SIDEBAR E HERO */
.app{
  display:grid !important;
  grid-template-columns:230px 1fr !important;
}

.sidebar{
  width:230px !important;
  padding:22px 16px !important;
}

.main{
  position:relative !important;
  max-width:none !important;
  margin:0 !important;
  padding:22px 300px 40px 24px !important;
}









/* RIGHTBAR COLADA NO CANTO DIREITO */
.rightbar{
  position:absolute !important;
  top:22px !important;
  right:18px !important;
  width:260px !important;
  padding:0 !important;
  background:transparent !important;
}

/* REMOVE ESPAÇO SOBRANDO DA OFERTA */
.flash{
  padding:18px !important;
  min-height:auto !important;
}

.flash h2{
  margin-bottom:12px !important;
}

.timer{
  margin-bottom:14px !important;
}

.flash-product{
  margin-top:8px !important;
}

.flash-btn{
  margin-top:12px !important;
}

/* HERO MAIS LARGO PARA MAIS LOGOS */


/* LOGOS MAIS COMPACTAS */










/* MAIS RESPIRO ENTRE LADOS */


/* GRID FINAL LOGOS */








/* TEXTO HERO MENOR */






.hero-buttons{
  gap:10px !important;
}

.hero-btn{
  padding:13px 18px !important;
  font-size:14px !important;
}

.hero-stats{
  gap:18px !important;
}

.hero-stats span{
  font-size:13px !important;
}

/* GRID HORIZONTAL */






/* GRID LOGOS 4 COLUNAS x 7 LINHAS */












/* FORMATO FINAL DO GRID DE LOGOS - SEM ALTERAR HERO */








/* LOGOS MAIORES + GRID MAIS BAIXA */






/* FORCE GRID LOGOS */
.hero-banner .hero-right 

.hero-banner .hero-right .brand-grid 

.hero-banner .hero-right .brand-grid 

/* RESET FINAL HERO LOGOS - 4 COLUNAS x 7 LINHAS */




.hero-banner .hero-right 

.hero-banner .hero-right .brand-grid 

.hero-banner .hero-right .brand-grid 

/* AJUSTE REAL HERO */


/* TEXTO ESQUERDO MENOR */




.hero-btn{
  padding:12px 16px !important;
  font-size:14px !important;
}

.hero-stats{
  gap:14px !important;
}

.hero-stats span{
  font-size:12px !important;
}

/* GRID CERTA */
.hero-banner .hero-right 

/* QUADRADOS NORMAIS */
.hero-banner .hero-right .brand-grid 

.hero-banner .hero-right .brand-grid 

/* HERO FINAL - RETANGULAR + GRID 32 LOGOS */














/* PADRÃO PROFISSIONAL GRID */






/* PADRÃO PROFISSIONAL GRID */






/* FORCE PROFISSIONAL LOGOS */
.hero-banner .hero-right 

.hero-banner .hero-right .brand-grid 

.hero-banner .hero-right .brand-grid 

/* AJUSTE CORRETO GRID PROFISSIONAL */
.hero-banner .hero-right 

.hero-banner .hero-right .brand-grid 

.hero-banner .hero-right .brand-grid 

/* AJUSTE FINO MARKETPLACE */
.hero-banner .hero-right .brand-grid 

.hero-banner .hero-right .brand-grid 

/* LARGURA FIXA BRAND LOGO */
.hero-banner .hero-right .brand-grid 

/* GAP MENOR ENTRE LOGOS */
.hero-banner .hero-right 

/* GAP HORIZONTAL MENOR */
.hero-banner .hero-right 

/* GAP HORIZONTAL MENOR */
.hero-banner .hero-right 

/* FORCE GAP 2PX ENTRE LOGOS */
.hero-banner .hero-right 

/* ESPAÇO EXTERNO ENTRE QUADRADOS */


/* GAP IGUAL VERTICAL E HORIZONTAL */


/* GAP IGUAL VERTICAL E HORIZONTAL */



/* BRAND GRID LIMPA */


/* HERO MENOS ESPAÇO VERTICAL */


/* HERO MAIS COMPACTA */


/* HERO SUPER COMPACTA */


/* TESTE +2PX */




/* TESTE +2PX */





/* HERO / LOGOS - PADRÃO LIMPO FINAL */










/* FIX HERO BFSALES */








@media(max-width:900px){
  

  
}

/* VOLTAR HERO / LOGOS PARA PADRÃO ANTERIOR */














/* VOLTAR HERO / LOGOS PARA PADRÃO ANTERIOR */















/* ===== HERO REBUILD CLEAN ===== */

.hero-banner{
  background:linear-gradient(135deg,#111f46,#233f95);
  border-radius:24px;
  padding:22px 30px;
  min-height:310px;
  display:grid;
  grid-template-columns:32% 68%;
  gap:24px;
  align-items:center;
}

.hero-banner small{
  color:#7db7ff;
  font-size:13px;
  font-weight:900;
  letter-spacing:.12em;
}

.hero-banner h1{
  color:#fff;
  font-size:30px;
  line-height:1.12;
  margin:14px 0 16px;
  max-width:430px;
}

.hero-banner p{
  color:#e5e7eb;
  font-size:15px;
  line-height:1.45;
  margin:0 0 20px;
  max-width:420px;
}

.hero-right{
  width:100%;
}

.brand-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:10px;
}

.brand-logo{
  height:64px;
  border-radius:13px;
  background:rgba(255,255,255,.11);
  border:1px solid rgba(255,255,255,.16);
  color:white;
  text-decoration:none;
  font-size:10px;
  font-weight:900;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:3px;
  text-align:center;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08);
}

.brand-logo img{
  width:30px;
  height:30px;
  object-fit:contain;
  border-radius:8px;
  background:white;
}

@media(max-width:1000px){
  .hero-banner{
    grid-template-columns:1fr;
  }

  .brand-grid{
    grid-template-columns:repeat(3,1fr);
  }
}
