/* ─────────────────────────────────────────
   SDF Evolution – styles.css
   ───────────────────────────────────────── */

/* ─── CUSTOM FONT ─── */
@font-face {
  font-family: 'Ethnocentric';
  src: url('fonts/Ethnocentric-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

/* ─── VARIABLES ─── */
:root {
  --red: #e31e24;
  --red-dark: #b01519;
  --red-glow: rgba(227,30,36,0.4);
  --black: #080808;
  --black2: #111111;
  --black3: #1a1a1a;
  --white: #ffffff;
  --gray: #888;
  --gray-light: #cccccc;
}

/* ─── RESET ─── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  cursor: default;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black2); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ─────────────────────────────────────────
   NAVBAR
   ───────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(227,30,36,0.2);
  transition: all 0.3s;
}
nav.scrolled {
  height: 60px;
  border-bottom-color: rgba(227,30,36,0.5);
  box-shadow: 0 4px 30px rgba(0,0,0,0.6);
}
.nav-logo img { height: 64px; object-fit: contain; }

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  color: var(--gray-light);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 8px 22px;
  border-radius: 2px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 14px;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--red-dark) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 26px; height: 2px; background: var(--white); transition: all 0.3s; display: block; }

/* ─────────────────────────────────────────
   HERO
   ───────────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('imagens/Fundo-1536x864.png') center/cover no-repeat;
  filter: brightness(0.85);
  transform: scale(1.05);
  animation: slowZoom 14s ease-out forwards;
}
@keyframes slowZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,8,8,0.85) 40%, transparent 100%);
}
.hero-overlay-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--black), transparent);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 8%;
  max-width: 760px;
  animation: fadeUp 1s ease 0.2s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(227,30,36,0.15);
  border: 1px solid rgba(227,30,36,0.4);
  border-radius: 2px;
  padding: 6px 16px;
  margin-bottom: 24px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
}
.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.3; }
}

.hero-title {
  font-family: 'Ethnocentric', sans-serif;
  font-size: clamp(52px, 8vw, 100px);
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.hero-title .line-red { color: var(--red); display: block; }

.hero-subtitle {
  font-size: 17px;
  font-weight: 300;
  color: var(--gray-light);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-primary {
  background: var(--red);
  color: var(--white);
  padding: 14px 36px;
  border-radius: 2px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 0 24px var(--red-glow);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px var(--red-glow);
}

.btn-outline {
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 14px 36px;
  border-radius: 2px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-outline:hover { border-color: var(--red); color: var(--red); }

.hero-stats {
  position: absolute;
  bottom: 60px; right: 8%;
  display: flex;
  gap: 40px;
  z-index: 2;
  animation: fadeUp 1s ease 0.6s both;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 40px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 4px;
}

/* ─────────────────────────────────────────
   SECTIONS COMMON
   ───────────────────────────────────────── */
section { padding: 100px 8%; }

.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
}
.section-line {
  width: 60px; height: 3px;
  background: var(--red);
  margin: 18px auto 0;
}

/* ─────────────────────────────────────────
   MARQUEE
   ───────────────────────────────────────── */
.marquee-wrap {
  background: var(--red);
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 20s linear infinite;
}
.marquee-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 0 32px;
  display: inline-flex;
  align-items: center;
  gap: 24px;
}
.marquee-item::after { content: '✦'; opacity: 0.5; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────
   NOVIDADE BANNER
   ───────────────────────────────────────── */
#novidade {
  padding: 0;
  background: var(--black2);
  position: relative;
  overflow: hidden;
}
.novidade-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.novidade-img { position: relative; overflow: hidden; }
.novidade-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.novidade-img:hover img { transform: scale(1.04); }
.novidade-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 60%, var(--black2) 100%);
}
.novidade-text {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.novidade-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 16px;
  margin-bottom: 28px;
  width: fit-content;
}
.novidade-title {
  font-family: 'Ethnocentric', sans-serif;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 20px;
}
.novidade-title span { color: var(--red); }
.novidade-desc {
  color: var(--gray-light);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 32px;
}
.spec-list { list-style: none; margin-bottom: 36px; }
.spec-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--gray-light);
}
.spec-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}
.spec-list strong { color: var(--white); }

/* ─────────────────────────────────────────
   PRODUTOS
   ───────────────────────────────────────── */
#produtos { background: var(--black); }

.filter-bar {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 8px 22px;
  border-radius: 2px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  background: transparent;
  color: var(--gray);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.2s;
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2px;
}

.product-card {
  background: var(--black2);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
}
.product-card:hover { transform: translateY(-4px); z-index: 2; }

.product-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background: #0d0d0d;
}
.product-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  filter: brightness(0.9);
}
.product-card:hover .product-card-img img {
  transform: scale(1.06);
  filter: brightness(1);
}
.product-card-img::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(8,8,8,0.9) 0%, transparent 60%);
}

.product-badge-card {
  position: absolute;
  top: 16px; left: 16px; z-index: 2;
  background: var(--red);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 700;
  padding: 4px 12px;
  text-transform: uppercase;
}

.product-info {
  padding: 24px 28px 28px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.product-name {
  font-family: 'Ethnocentric', sans-serif;
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}
.product-power {
  color: var(--red);
  font-family: 'Ethnocentric', sans-serif;
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 12px;
}
.product-specs { display: flex; gap: 16px; flex-wrap: wrap; }
.spec-tag {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 3px 10px;
  border-radius: 2px;
}

.product-hover-btn {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--red);
  padding: 14px;
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transform: translateY(100%);
  transition: transform 0.3s;
  cursor: pointer;
}
.product-card:hover .product-hover-btn { transform: translateY(0); }

/* ─────────────────────────────────────────
   LINHA COMPLETA
   ───────────────────────────────────────── */
#linha {
  background: var(--black2);
  padding-bottom: 80px;
}
.frames-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.frame-item {
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/10;
  cursor: pointer;
}
.frame-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s, filter 0.4s;
  filter: brightness(0.7) saturate(0.8);
}
.frame-item:hover img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1);
}
.frame-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}
.frame-item:hover .frame-item-overlay { opacity: 1; }
.frame-item-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ─────────────────────────────────────────
   SOBRE
   ───────────────────────────────────────── */
#sobre {
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-wrap img {
  width: 100%;
  border-radius: 2px;
  filter: brightness(0.85);
}
.about-img-wrap::before {
  content: '';
  position: absolute;
  top: -12px; left: -12px; right: 12px; bottom: 12px;
  border: 2px solid var(--red);
  border-radius: 2px;
  z-index: -1;
}
.about-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.about-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 24px;
}
.about-text {
  color: var(--gray-light);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 20px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.feature-item {
  border-left: 3px solid var(--red);
  padding: 10px 16px;
  background: rgba(227,30,36,0.05);
}
.feature-item strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.feature-item span { font-size: 13px; color: var(--gray); }

/* ─────────────────────────────────────────
   CONTATO
   ───────────────────────────────────────── */
#contato { background: var(--black2); }
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contato-info h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.contato-info p { color: var(--gray-light); line-height: 1.8; margin-bottom: 32px; }

.contact-items { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 2px;
}
.contact-icon {
  width: 40px; height: 40px;
  background: var(--red);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray);
}
.contact-value { font-size: 15px; font-weight: 500; color: var(--white); }

.contato-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  padding: 14px 16px;
  border-radius: 2px;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--black2); }

.btn-submit {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 16px;
  border-radius: 2px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 0 20px var(--red-glow);
}
.btn-submit:hover { background: var(--red-dark); transform: translateY(-2px); }

/* ─────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────── */
footer {
  background: #050505;
  border-top: 1px solid rgba(227,30,36,0.2);
  padding: 60px 8% 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img { height: 48px; margin-bottom: 20px; }
.footer-brand p { color: var(--gray); font-size: 14px; line-height: 1.8; max-width: 280px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 2px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  text-decoration: none;
  font-size: 16px;
  transition: all 0.2s;
}
.social-btn:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--white);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  color: var(--gray);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--red); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: var(--gray); font-size: 13px; }
.footer-bottom a { color: var(--red); text-decoration: none; }

/* ─────────────────────────────────────────
   MODAL
   ───────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }

.modal {
  background: var(--black2);
  max-width: 700px;
  width: 90%;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(227,30,36,0.3);
  transform: scale(0.95);
  transition: transform 0.3s;
}
.modal-overlay.active .modal { transform: scale(1); }

.modal-img { width: 100%; max-height: 380px; object-fit: cover; }
.modal-body { padding: 32px; }
.modal-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 34px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.modal-power {
  color: var(--red);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}
.modal-specs { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.modal-desc { color: var(--gray-light); font-size: 15px; line-height: 1.8; }

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  background: var(--red);
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─────────────────────────────────────────
   BACK TO TOP
   ───────────────────────────────────────── */
#backTop {
  position: fixed;
  bottom: 30px; right: 30px; z-index: 999;
  width: 44px; height: 44px;
  background: var(--red);
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  border-radius: 2px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: 0 4px 20px var(--red-glow);
}
#backTop.show { opacity: 1; pointer-events: all; }
#backTop:hover { transform: translateY(-3px); }

/* ─────────────────────────────────────────
   REVEAL ANIMATION
   ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: rgba(8,8,8,0.98);
    padding: 20px 5%;
    gap: 20px;
    border-bottom: 2px solid var(--red);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero-stats { display: none; }
  .novidade-inner { grid-template-columns: 1fr; }
  .novidade-img { aspect-ratio: 16/9; }
  .novidade-text { padding: 40px 30px; }
  #sobre { grid-template-columns: 1fr; padding: 60px 5%; gap: 40px; }
  .contato-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .frames-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 70px 5%; }
  .form-row { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
  .frames-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
}

/* ─── GRUPOS POR TAMANHO ─── */
.size-group { margin-bottom: 56px; }
.size-group:last-child { margin-bottom: 0; }
.size-group-hd {
  display: flex; align-items: center; gap: 18px;
  margin-bottom: 20px; padding-bottom: 16px;
  border-bottom: 2px solid rgba(227,30,36,0.25);
}
.sgh-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 64px; font-weight: 900; line-height: 1; color: var(--red);
}
.sgh-num::after { content: '"'; font-size: 22px; vertical-align: super; margin-left: 2px; }
.sgh-label { display: flex; flex-direction: column; }
.sgh-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px;
}
.sgh-count { font-size: 13px; color: var(--gray); letter-spacing: 1px; margin-top: 3px; }
.sgh-line { flex: 1; height: 1px; background: rgba(255,255,255,0.06); }
/* ─── GALERIA DO MODAL (3 FOTOS) ─── */
.modal-gallery { 
  width: 100%; 
  display: flex; 
  flex-direction: column; 
  background: #0a0a0a; 
}
.modal-thumbnails { 
  display: flex; 
  gap: 8px; 
  padding: 12px 20px; 
  justify-content: center; 
  background: #111; 
  border-bottom: 1px solid rgba(255,255,255,0.05); 
}
.modal-thumb { 
  width: 60px; 
  height: 60px; 
  object-fit: cover; 
  border: 2px solid transparent; 
  border-radius: 4px; 
  cursor: pointer; 
  transition: all 0.2s; 
  opacity: 0.5; 
  background: #1a1a1a; 
}
.modal-thumb:hover { 
  opacity: 0.8; 
}
.modal-thumb.active { 
  border-color: #e31e24; 
  opacity: 1; 
}