@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --red: #7f0000;
  --red-dark: #610000;
  --gray: #f1f1f3;
  --gray-2: #d8d8d8;
  --text: #242424;
  --muted: #666;
  --white: #fff;
  --shadow: 0 16px 42px rgba(0, 0, 0, .12);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Poppins', Helvetica, Arial, Lucida, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1160px, calc(100% - 32px)); margin: 0 auto; }

.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
}
.header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo img { width: 220px; height: auto; }
.nav { display: flex; align-items: center; gap: 26px; font-weight: 800; color: var(--red); }
.nav a { border-bottom: 3px solid transparent; padding: 10px 0; }
.nav a:hover, .nav a.active { border-bottom-color: var(--red); }
.nav-toggle { display: none; border: 0; background: var(--red); color: #fff; padding: 10px 14px; border-radius: 10px; font-weight: 700; }

.hero {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #720000 url('../img/home-banner-bg-vermelho.jpg') right center/contain no-repeat;
}
.hero .container { padding: 40px 16px; position: relative; z-index: 1; }
.hero-text { max-width: 560px; }
.hero-mascote { position: absolute; right: 16%; bottom: 0; height: 100%; width: auto; max-width: 40%; object-fit: contain; object-position: bottom; pointer-events: none; }
.hero h1 { color: #fff; font-size: clamp(34px, 5vw, 56px); line-height: 1.05; margin: 0 0 18px; font-weight: 900; }
.hero p { color: #fff; font-size: 20px; margin: 0 0 26px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 22px; border-radius: 12px; border: 2px solid transparent; font-weight: 800; cursor: pointer; transition: .2s ease; font-family: inherit; }
.btn-primary { background: #fff; color: var(--red); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: #fff; border-color: #fff; }
.btn-red { background: var(--red); color: #fff; }
.btn-light { background: #eceff1; color: var(--red); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

.section { padding: 72px 0; }
.section-gray { background: var(--gray); }
.section-title { text-align: center; color: var(--red); font-size: clamp(26px, 3vw, 38px); margin: 0 0 34px; font-weight: 900; text-transform: uppercase; }
.section-subtitle { max-width: 760px; margin: -18px auto 34px; text-align: center; color: var(--muted); font-size: 18px; }

.stats-row { padding: 40px 0; background: #fff; }
.stats-row-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }
.stats-row-inner img { height: 60px; width: auto; padding: 0 32px; border-right: 1px solid var(--gray-2); }
.stats-row-inner img:last-child { border-right: none; }

.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.product-card { position: relative; border-radius: 10px; overflow: hidden; cursor: pointer; box-shadow: 0 8px 20px rgba(0,0,0,.06); }
.product-card img { width: 100%; height: auto; display: block; }
.product-img-hover { position: absolute; inset: 0; opacity: 0; transition: opacity .25s ease; }
.product-card:hover .product-img-hover { opacity: 1; }
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.brands-grid { display: grid; grid-template-columns: repeat(3, minmax(180px, 1fr)); gap: 32px; align-items: center; }
.brand-card { background: #eef0f2; border-radius: var(--radius); padding: 28px; display: flex; align-items: center; justify-content: center; min-height: 140px; }

.promotions-band { background: var(--red); }
.promotions-band .section-title { color: #fff; }
.brand-card img { max-height: 84px; object-fit: contain; }

.promotions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.promo-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.promo-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; background: #eee; }
.promo-body { padding: 20px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.promo-body h3 { margin: 0; color: var(--red); font-size: 22px; font-weight: 700; }
.promo-body p { margin: 0; color: var(--muted); }

.banners-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.banner-card { display: block; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: .2s ease; }
.banner-card:hover { transform: translateY(-4px); box-shadow: 0 20px 44px rgba(0,0,0,.16); }
.banner-card img { width: 100%; height: auto; display: block; }
.empty-state { text-align: center; color: var(--muted); font-size: 18px; padding: 20px 0; }

.banners-slider { position: relative; padding: 0 44px; }
.banners-slider-track { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px 2px 12px; scrollbar-width: thin; }
.banner-slide { flex: 0 0 auto; width: 220px; aspect-ratio: 4/3; border: 0; padding: 0; border-radius: var(--radius); overflow: hidden; cursor: pointer; box-shadow: var(--shadow); scroll-snap-align: start; background: #fff; transition: transform .2s ease; }
.banner-slide:hover { transform: translateY(-4px); }
.banner-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; width: 40px; height: 40px; border-radius: 50%; background: #fff; color: var(--red); border: 0; font-size: 24px; line-height: 1; cursor: pointer; box-shadow: var(--shadow); display: flex; align-items: center; justify-content: center; }
.slider-arrow-prev { left: 0; }
.slider-arrow-next { right: 0; }
.slider-hint { text-align: center; color: rgba(255,255,255,.85); font-size: 14px; margin: 12px 0 0; }

.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.85); z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 24px; }
.lightbox[hidden] { display: none; }
.lightbox-link { display: block; max-width: min(900px, 92vw); max-height: 88vh; }
.lightbox-link img { max-width: 100%; max-height: 88vh; display: block; border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lightbox-close { position: absolute; top: 20px; right: 24px; background: transparent; border: 0; color: #fff; font-size: 40px; line-height: 1; cursor: pointer; }

.online-box-centered { max-width: 640px; margin: 0 auto; text-align: center; }
.online-links { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.online-links .store-link { flex: 1; min-width: 160px; }
.store-link { padding: 18px 20px; background: #fff; border: 2px solid var(--gray-2); border-radius: 14px; font-weight: 800; color: var(--red); text-align: center; }
.store-link:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.store-link-ml { background: #fee600; border-color: #fee600; color: #2d3277; }
.store-link-shopee { background: #ee4d2d; border-color: #ee4d2d; color: #fff; }
.store-link-direct { background: var(--gray-2); border-color: var(--gray-2); color: var(--red); }
.footer-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }

.page-hero { background: var(--red); color: #fff; padding: 72px 0; }
.page-hero h1 { font-size: clamp(32px, 4vw, 56px); line-height: 1.05; margin: 0 0 12px; font-weight: 900; }
.page-hero p { max-width: 780px; font-size: 20px; margin: 0; }
.content-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 34px; align-items: start; }
.card { background: #fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.card h2, .card h3 { color: var(--red); margin-top: 0; font-weight: 800; }

.empresa-hero {
  padding: 90px 0;
  background-color: var(--red);
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  text-align: center;
}
.empresa-hero .container { max-width: 820px; }
.empresa-hero h1 { color: #fff; font-size: clamp(30px, 4vw, 48px); font-weight: 900; margin: 0 0 16px; }
.empresa-hero p { color: #fff; font-size: 19px; margin: 0 0 28px; }
.empresa-hero .hero-actions { justify-content: center; }

.stats-bar { background: var(--gray); padding: 48px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center; }
.stat strong { display: block; color: var(--red); font-size: clamp(34px, 4vw, 48px); font-weight: 900; line-height: 1; }
.stat span { display: block; color: var(--text); font-weight: 800; letter-spacing: .04em; margin-top: 8px; font-size: 14px; }
.stat small { display: block; color: var(--muted); margin-top: 4px; }

.timeline { position: relative; display: grid; gap: 44px; padding: 20px 0; }
.timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 3px; background: var(--red); transform: translateX(-50%); }
.timeline-item { position: relative; width: calc(50% - 40px); }
.timeline-item strong { display: block; color: var(--red); font-size: 26px; font-weight: 900; margin-bottom: 6px; }
.timeline-item p { margin: 0; color: var(--muted); }
.timeline-dot { position: absolute; top: 6px; width: 16px; height: 16px; border-radius: 50%; background: var(--red); border: 3px solid #fff; box-shadow: 0 0 0 2px var(--red); }
.timeline-left { margin-right: auto; text-align: right; }
.timeline-left .timeline-dot { right: -48px; }
.timeline-right { margin-left: auto; text-align: left; }
.timeline-right .timeline-dot { left: -48px; }

.brands-band { background: var(--red); padding: 72px 0; color: #fff; }
.brands-band .section-title { color: #fff; }
.brands-band .section-subtitle { color: rgba(255,255,255,.85); }
.brands-band-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; max-width: 720px; margin: 0 auto; }
.brand-circle { aspect-ratio: 1; border-radius: 50%; border: 2px solid rgba(255,255,255,.6); display: flex; align-items: center; justify-content: center; padding: 22px; }
.brand-circle img { max-width: 100%; max-height: 100%; object-fit: contain; }

.differentials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; max-width: 900px; margin: 0 auto; }
.differential { display: flex; gap: 18px; align-items: flex-start; }
.differential img { width: 56px; height: 56px; object-fit: contain; flex-shrink: 0; }
.differential h3 { color: var(--red); margin: 0 0 6px; font-size: 19px; font-weight: 800; }
.differential p { margin: 0; color: var(--muted); }

.mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.mvv-grid .card p { color: var(--muted); }

.contato-hero {
  padding: 70px 0;
  background-color: var(--red);
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  position: relative;
  overflow: hidden;
}
.contato-hero-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; position: relative; z-index: 1; }
.contato-hero h1 { color: #fff; font-size: clamp(30px, 4vw, 46px); font-weight: 900; margin: 0 0 12px; }
.contato-hero p { color: #fff; font-size: 18px; max-width: 520px; margin: 0 0 24px; }
.contato-mascote { width: 220px; height: auto; flex-shrink: 0; }

.contato-info .info-list { list-style: none; margin: 24px 0; padding: 0; display: grid; gap: 18px; }
.contato-info .info-list li { display: flex; gap: 14px; align-items: flex-start; }
.contato-info .info-list strong { color: var(--red); display: block; }
.info-icon { width: 26px; height: 26px; flex-shrink: 0; color: var(--red); }
.info-icon svg { width: 100%; height: 100%; }
.contato-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); height: 420px; }
.contato-map iframe { display: block; width: 100%; height: 100%; }

.vendor-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 980px; margin: 0 auto; }
.vendor-card { background: #fff; border-radius: var(--radius); padding: 24px 16px; box-shadow: 0 10px 24px rgba(0,0,0,.08); text-align: center; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.vendor-photo { width: 109px; height: 109px; border-radius: 50%; object-fit: cover; margin-bottom: 4px; }
.vendor-card strong { color: var(--red); font-size: 18px; }

.form-card { max-width: 640px; margin: 0 auto; }
.form { display: grid; gap: 14px; }
.form input, .form textarea { width: 100%; border: 1px solid #ddd; border-radius: 12px; padding: 14px; font: inherit; }
.form textarea { min-height: 150px; resize: vertical; }
.notice { border-radius: 12px; padding: 14px 16px; margin-bottom: 18px; }
.notice.success { background: #eaf8ef; color: #14582c; }
.notice.error { background: #fdeaea; color: #7f0000; }

.site-footer { background: #fff; padding: 60px 0 20px; }
.footer-columns { display: grid; grid-template-columns: 1fr 1.2fr; gap: 32px; align-items: start; }
.footer-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.footer-info h3 { color: var(--red); margin: 0 0 10px; font-weight: 800; }
.footer-info p { margin: 0 0 16px; color: var(--text); }
.footer-info-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.footer-social-label { font-weight: 700; margin-bottom: 10px !important; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; }
.footer-social a:nth-child(1) { background: #1877f2; }
.footer-social a:nth-child(2) { background: #e1306c; }
.footer-social svg { width: 18px; height: 18px; }

.footer-vendors { background: var(--gray); padding: 32px 0; margin-top: 48px; }
.footer-vendors h3 { color: var(--red); text-align: center; margin: 0 0 24px; font-weight: 800; font-size: 18px; }
.footer-vendors-bar { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.footer-vendor { display: flex; flex-direction: column; align-items: center; gap: 6px; width: 110px; text-align: center; }
.footer-vendor img { width: 76px; height: 76px; border-radius: 50%; object-fit: cover; box-shadow: var(--shadow); transition: transform .15s ease; }
.footer-vendor:hover img { transform: translateY(-4px); }
.footer-vendor strong { color: var(--text); font-size: 13.5px; }
.footer-vendor span { color: var(--red); font-size: 12px; font-weight: 700; }

.footer-bottom { border-top: 1px solid var(--gray-2); margin-top: 34px; padding-top: 18px; color: var(--muted); font-size: 14px; }

/* ── Blog ───────────────────────────────────────────────── */
.breadcrumb { color: rgba(255,255,255,.75); font-size: 13px; margin-bottom: 14px; }
.breadcrumb a { color: #fff; font-weight: 700; }
.breadcrumb a:hover { text-decoration: underline; }

.blog-categories-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.blog-category-chip { padding: 9px 18px; border-radius: 99px; background: #fff; color: var(--red); font-weight: 700; font-size: 13px; border: 2px solid var(--gray-2); }
.blog-category-chip:hover { border-color: var(--red); }
.blog-category-chip.active { background: var(--red); border-color: var(--red); color: #fff; }

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card { display: flex; flex-direction: column; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: .2s ease; }
.post-card:hover { transform: translateY(-4px); box-shadow: 0 20px 44px rgba(0,0,0,.16); }
.post-card-image { aspect-ratio: 16/9; background: var(--gray); overflow: hidden; }
.post-card-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.post-card-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-card-body h3 { margin: 0; font-size: 19px; color: var(--text); line-height: 1.3; }
.post-card-body p { margin: 0; color: var(--muted); font-size: 14px; flex: 1; }

.post-tag { display: inline-block; background: var(--gray); color: var(--red); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; padding: 4px 10px; border-radius: 99px; align-self: flex-start; }
.post-meta { display: flex; gap: 14px; align-items: center; color: var(--muted); font-size: 13px; flex-wrap: wrap; }
.post-meta-hero { color: rgba(255,255,255,.85); margin-top: 6px; }
.post-meta-hero .post-tag { background: rgba(255,255,255,.15); color: #fff; }

.post-layout { max-width: 780px; }
.post-hero-image { width: 100%; border-radius: var(--radius); margin-bottom: 28px; aspect-ratio: 16/9; object-fit: cover; }
.post-content { font-size: 17px; line-height: 1.75; color: var(--text); }
.post-content h2 { color: var(--red); font-size: 26px; font-weight: 800; margin: 36px 0 14px; }
.post-content h3 { color: var(--red); font-size: 20px; font-weight: 800; margin: 28px 0 12px; }
.post-content p { margin: 0 0 18px; }
.post-content ul, .post-content ol { margin: 0 0 18px; padding-left: 22px; }
.post-content li { margin-bottom: 8px; }
.post-content blockquote { border-left: 4px solid var(--red); background: var(--gray); padding: 16px 20px; margin: 24px 0; border-radius: 0 12px 12px 0; font-style: italic; color: var(--text); }
.post-content img { border-radius: 12px; margin: 20px 0; }
.post-content a { color: var(--red); text-decoration: underline; }

.post-cta { background: var(--gray); border-radius: var(--radius); padding: 28px; margin-top: 40px; text-align: center; }
.post-cta h3 { color: var(--red); margin: 0 0 10px; font-size: 22px; }
.post-cta p { margin: 0 0 18px; color: var(--muted); }

@media (max-width: 920px) {
  .header-inner { min-height: 78px; }
  .logo img { width: 170px; }
  .nav-toggle { display: inline-flex; }
  .nav { display: none; position: absolute; left: 0; right: 0; top: 78px; background: #fff; padding: 18px 24px; flex-direction: column; align-items: flex-start; box-shadow: var(--shadow); }
  .nav.open { display: flex; }
  .online-box, .content-grid, .footer-columns { grid-template-columns: 1fr; }
  .hero-mascote { display: none; }
  .products-grid, .promotions-grid { grid-template-columns: repeat(2, 1fr); }
  .brands-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 32px; }
  .brands-band-grid, .differentials-grid, .mvv-grid { grid-template-columns: 1fr; }
  .stats-row-inner img { border-right: none; padding: 8px 16px; }
  .vendor-grid { grid-template-columns: repeat(2, 1fr); }
  .contato-mascote { width: 150px; }
  .post-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .section { padding: 52px 0; }
  .products-grid, .promotions-grid, .banners-grid { grid-template-columns: 1fr; }
  .post-grid { grid-template-columns: 1fr; }
  .post-content { font-size: 16px; }
  .contato-hero-inner { flex-direction: column; text-align: center; }
  .contato-hero p { max-width: none; }
  .contato-hero .hero-actions { justify-content: center; }
  .vendor-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .footer-vendor { width: 84px; }
  .footer-vendor img { width: 60px; height: 60px; }
  .online-links .store-link { flex: none; }
  .timeline::before { left: 18px; }
  .timeline-item, .timeline-left, .timeline-right { width: 100%; margin: 0; padding-left: 44px; text-align: left; }
  .timeline-left .timeline-dot, .timeline-right .timeline-dot { left: 10px; right: auto; }
  .brands-band-grid { grid-template-columns: repeat(2, 1fr); max-width: 320px; }
}
