/* ============================================================
   IMPACTO DISTRIBUIDORA — style.css
   Paleta: Azul principal (#1a4fa0), Amarelo (#f0c228), Branco, Cinzas
   Fontes: Barlow Condensed (display) + Barlow (body)
   ============================================================ */

/* ─── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue-dark:   #0d2a5e;
  --blue:        #1a4fa0;
  --blue-mid:    #2563c0;
  --blue-light:  #e8eff8;
  --yellow:      #f0c228;
  --yellow-dark: #c9a010;
  --white:       #ffffff;
  --gray-50:     #f7f8fa;
  --gray-100:    #eef0f4;
  --gray-300:    #bcc4d2;
  --gray-600:    #5a6474;
  --gray-900:    #1a1f2b;
  --green:       #25d366;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  --shadow-sm:  0 2px 8px rgba(26,79,160,.10);
  --shadow-md:  0 6px 24px rgba(26,79,160,.14);
  --shadow-lg:  0 16px 48px rgba(26,79,160,.18);

  --radius:     8px;
  --radius-lg:  16px;
  --transition: 0.28s cubic-bezier(.4,0,.2,1);
  --header-h:   80px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
svg { display: inline-block; vertical-align: middle; }

.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 24px;
}

/* ─── TIPOGRAFIA ────────────────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  background: var(--blue-dark);
  padding: 4px 14px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.section-tag--light {
  background: rgba(255,255,255,.15);
  color: var(--yellow);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--blue-dark);
}
.section-title--white { color: var(--white); }
.section-subtitle {
  font-size: 17px;
  color: var(--gray-600);
  margin-top: 12px;
  max-width: 560px;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .section-subtitle { margin-inline: auto; }

/* ─── BOTÕES ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--lg  { padding: 16px 36px; font-size: 17px; }
.btn--sm  { padding: 9px 20px; font-size: 14px; }

.btn--yellow {
  background: var(--yellow);
  color: var(--blue-dark);
}
.btn--yellow:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(240,194,40,.35);
}

.btn--blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn--blue:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn--outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--outline-blue {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn--outline-blue:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--blue-dark);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}

.btn--green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn--green:hover {
  background: #1db954;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.35);
}

/* ─── HEADER ────────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--blue-dark);
  height: var(--header-h);
  box-shadow: 0 2px 16px rgba(0,0,0,.25);
  transition: background var(--transition), box-shadow var(--transition);
}
.header.scrolled {
  background: rgba(13,42,94,.97);
  box-shadow: 0 4px 24px rgba(0,0,0,.35);
}
.header__inner {
  display: flex;
  align-items: center;
  height: var(--header-h);
  gap: 32px;
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo__img { height: 140px; width: auto; object-fit: contain; }

/* Nav desktop */
.nav { flex: 1; }
.nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transition: transform var(--transition);
  border-radius: 2px;
}
.nav__link:hover,
.nav__link.active { color: var(--white); }
.nav__link:hover::after,
.nav__link.active::after { transform: scaleX(1); }

.header__cta { flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: absolute;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--blue-dark);
  border-top: 2px solid var(--yellow);
  padding: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  z-index: 999;
}
.mobile-nav.open { display: block; }
.mobile-nav__list { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav__link {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  padding: 12px 16px;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}
.mobile-nav__link:hover { background: rgba(255,255,255,.08); color: var(--white); }
.mobile-nav__list li:last-child { margin-top: 12px; }

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--blue-dark) 0%, #0e3575 55%, var(--blue) 100%);
  display: flex;
  flex-direction: column;
  padding-top: var(--header-h);
  position: relative;
  overflow: hidden;
}
.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(240,194,40,.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.04) 0%, transparent 40%);
  pointer-events: none;
}
/* Diagonal stripe accent */
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  border: 2px solid rgba(240,194,40,.12);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 100px; right: 50px;
  width: 300px; height: 300px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 50%;
  pointer-events: none;
}
.hero__inner {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-block: 80px 40px;
}
.hero__content { position: relative; z-index: 1; }
.hero__tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  background: rgba(240,194,40,.12);
  border: 1px solid rgba(240,194,40,.3);
  padding: 5px 16px;
  border-radius: 40px;
  margin-bottom: 24px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
}
.hero__title em {
  font-style: normal;
  color: var(--yellow);
}
.hero__subtitle {
  font-size: 18px;
  color: rgba(255,255,255,.78);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  padding: 6px 14px;
  border-radius: 40px;
}
.badge__icon { color: var(--yellow); font-size: 14px; }

/* Hero visual */
.hero__visual{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

    min-height:520px;

}
.hero__img-wrap {
  width: 100%;
  max-width: 480px;
  position: relative;
}
.hero__img-placeholder {
  width: 100%;
  aspect-ratio: 1/1;
  background: rgba(255,255,255,.05);
  border: 2px dashed rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(255,255,255,.3);
  font-size: 13px;
  text-align: center;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.hero__img-caption {
  position: absolute;
  bottom: 12px;
  font-size: 11px;
  color: rgba(255,255,255,.35);
}

/* Stats bar */
.stats-bar {
  background: var(--yellow);
  padding: 0;
}
.stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 90px;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  border-right: 1px solid rgba(13,42,94,.15);
  text-align: center;
  gap: 2px;
}
.stat:last-child { border-right: none; }
.stat__number {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--blue-dark);
  line-height: 1;
}
.stat__label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--blue-dark);
  opacity: .75;
}

/* ─── DIFERENCIAIS ──────────────────────────────────────────── */
.diferenciais {
  padding: 96px 0;
  background: var(--gray-50);
}
.diferenciais__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.diferencial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.diferencial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--yellow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.diferencial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-light);
}
.diferencial-card:hover::before { transform: scaleX(1); }
.diferencial-card__icon {
  width: 56px; height: 56px;
  background: var(--blue-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--blue);
  transition: background var(--transition), color var(--transition);
}
.diferencial-card__icon svg { width: 28px; height: 28px; }
.diferencial-card:hover .diferencial-card__icon {
  background: var(--yellow);
  color: var(--blue-dark);
}
.diferencial-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 10px;
}
.diferencial-card p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ─── SOBRE ─────────────────────────────────────────────────── */
.sobre {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.sobre__bg {
  position: absolute;
  right: -200px; top: -200px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--blue-light) 0%, transparent 70%);
  pointer-events: none;
}
.sobre__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.sobre__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.sobre__img-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--blue-light);
  padding: 40px;
  gap: 16px;
  min-height: 360px;
  color: var(--gray-600);
  font-size: 13px;
  text-align: center;
}
.grafico {
  border-radius: var(--radius);
}
.sobre__badge-float {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--yellow);
  color: var(--blue-dark);
  border-radius: var(--radius);
  padding: 16px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.sobre__badge-float strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}
.sobre__badge-float span {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.sobre__content .section-title { margin-bottom: 20px; }
.sobre__content p {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 16px;
}
.mvv {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0 36px;
}
.mvv__item {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 20px 16px;
  border-left: 3px solid var(--yellow);
}
.mvv__item h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--blue-dark);
  margin-bottom: 8px;
}
.mvv__item p { font-size: 13px; color: var(--gray-600); line-height: 1.55; }

/* ─── CATÁLOGO ──────────────────────────────────────────────── */
.catalogo {
  padding: 96px 0;
  background: var(--gray-50);
}
.catalogo__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.product-card__img {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  padding: 40px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-card__img::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 80px; height: 80px;
  background: rgba(240,194,40,.12);
  border-radius: 50%;
}
.product-card__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.product-card__placeholder svg {
  width: 80px; height: 80px;
}
.product-card__placeholder::before {
  content: attr(data-label);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}
.product-card__body {
  padding: 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-card__body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--blue-dark);
}
.product-card__body p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  flex: 1;
}
.product-card__body .btn { margin-top: 8px; align-self: flex-start; }

/* ─── POR QUE ESCOLHER ──────────────────────────────────────── */
.porqueescolher {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  position: relative;
  overflow: hidden;
}
.porqueescolher::before {
  content: '';
  position: absolute;
  top: -120px; left: -120px;
  width: 500px; height: 500px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 50%;
  pointer-events: none;
}
.porqueescolher::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 350px; height: 350px;
  background: rgba(240,194,40,.07);
  border-radius: 50%;
  pointer-events: none;
}
.porqueescolher__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.porqueescolher__content .section-title { margin-bottom: 20px; }
.porqueescolher__content p {
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin-bottom: 32px;
}
.check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,.9);
}
.check-list li svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--yellow);
  stroke: var(--yellow);
}
.segmentos {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}
.segmentos h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--yellow);
  margin-bottom: 20px;
}
.segmento-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  padding: 7px 16px;
  border-radius: 40px;
  margin: 5px 4px 5px 0;
  transition: background var(--transition), color var(--transition);
  cursor: default;
}
.segmento-tag:hover {
  background: var(--yellow);
  color: var(--blue-dark);
  border-color: var(--yellow);
}

/* ─── CTA STRIP ─────────────────────────────────────────────── */
.cta-strip {
  background: var(--yellow);
  padding: 56px 0;
}
.cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-strip__text h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  color: var(--blue-dark);
  line-height: 1.2;
}
.cta-strip__text p {
  font-size: 17px;
  color: rgba(13,42,94,.7);
  margin-top: 6px;
}
.cta-strip__btn { flex-shrink: 0; }

/* ─── CONTATO ───────────────────────────────────────────────── */
.contato {
  padding: 96px 0;
  background: var(--white);
}
.contato__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}
.contato-card {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--gray-100);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contato-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.contato-card__icon {
  width: 52px; height: 52px;
  background: var(--blue-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}
.contato-card__icon--green {
  background: rgba(37,211,102,.12);
  color: var(--green);
}
.contato-card__icon svg { width: 26px; height: 26px; }
.contato-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--blue-dark);
}
.contato-card p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
  flex: 1;
}
.horario {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.55;
}
.redes-sociais { text-align: center; }
.redes-sociais > p {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-600);
  margin-bottom: 20px;
}
.redes-sociais__links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.rede-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--blue);
  background: var(--blue-light);
  border: 1px solid transparent;
  padding: 10px 22px;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.rede-link svg { width: 20px; height: 20px; }
.rede-link:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ─── RODAPÉ ────────────────────────────────────────────────── */
.footer {
  background: var(--blue-dark);
  color: rgba(255,255,255,.7);
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-block: 64px 40px;
}
.footer__logo {
  height: 250px;
  width: auto;
  object-fit: contain;
  margin-bottom: -40px;
  filter: brightness(1.1);
}
.footer__brand p {
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 24px;
}
.footer__social {
  display: flex;
  gap: 12px;
}
.footer__social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: background var(--transition), color var(--transition);
}
.footer__social a svg { width: 18px; height: 18px; }
.footer__social a:hover { background: var(--yellow); color: var(--blue-dark); }

.footer__nav h4,
.footer__products h4,
.footer__contact h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--yellow);
  margin-bottom: 20px;
}
.footer__nav ul,
.footer__products ul { display: flex; flex-direction: column; gap: 8px; }
.footer__nav a {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  transition: color var(--transition), padding-left var(--transition);
}
.footer__nav a:hover { color: var(--white); padding-left: 4px; }
.footer__products li {
  font-size: 14px;
  color: rgba(255,255,255,.55);
}
.footer__products li::before { content: '— '; color: var(--yellow); }

.footer__contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 10px;
}
.footer__contact svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; color: var(--yellow); }
.footer__whatsapp { margin-top: 16px; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 20px;
  font-size: 13px;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: 8px;
}

/* ─── WHATSAPP FLUTUANTE ────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 900;
  width: 60px; height: 60px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 32px rgba(37,211,102,.55);
}
.whatsapp-float svg { width: 30px; height: 30px; }
.whatsapp-float__tooltip {
  position: absolute;
  right: 68px;
  background: var(--gray-900);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  white-space: nowrap;
  padding: 7px 14px;
  border-radius: var(--radius);
  opacity: 0;
  transform: translateX(8px);
  transition: opacity var(--transition), transform var(--transition);
  pointer-events: none;
}
.whatsapp-float__tooltip::after {
  content: '';
  position: absolute;
  right: -6px; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--gray-900);
  border-right: none;
}
.whatsapp-float:hover .whatsapp-float__tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ─── ANIMAÇÕES REVEAL ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s cubic-bezier(.4,0,.2,1), transform .65s cubic-bezier(.4,0,.2,1);
}
.reveal--right {
  transform: translateX(40px);
}
.reveal--left {
  transform: translateX(-40px);
}
.reveal.visible {
  opacity: 1;
  transform: translate(0);
}
/* Stagger para grids */
.diferenciais__grid .reveal:nth-child(2),
.catalogo__grid .reveal:nth-child(2),
.contato__grid .reveal:nth-child(2)  { transition-delay: .08s; }
.diferenciais__grid .reveal:nth-child(3),
.catalogo__grid .reveal:nth-child(3),
.contato__grid .reveal:nth-child(3)  { transition-delay: .16s; }
.diferenciais__grid .reveal:nth-child(4),
.catalogo__grid .reveal:nth-child(4),
.contato__grid .reveal:nth-child(4)  { transition-delay: .24s; }
.diferenciais__grid .reveal:nth-child(5),
.catalogo__grid .reveal:nth-child(5) { transition-delay: .32s; }
.diferenciais__grid .reveal:nth-child(6),
.catalogo__grid .reveal:nth-child(6) { transition-delay: .40s; }
.catalogo__grid .reveal:nth-child(7) { transition-delay: .48s; }
.catalogo__grid .reveal:nth-child(8) { transition-delay: .56s; }
.catalogo__grid .reveal:nth-child(9) { transition-delay: .64s; }

/* ─── RESPONSIVO ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__inner    { grid-template-columns: 1fr; text-align: center; }
  .hero__subtitle { margin-inline: auto; }
  .hero__actions  { justify-content: center; }
  .hero__badges   { justify-content: center; }
  .hero__visual   { display: none; }
  .diferenciais__grid { grid-template-columns: repeat(2, 1fr); }
  .catalogo__grid     { grid-template-columns: repeat(2, 1fr); }
  .sobre__inner       { grid-template-columns: 1fr; }
  .sobre__visual      { display: none; }
  .porqueescolher__inner { grid-template-columns: 1fr; }
  .footer__inner  { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer__brand  { grid-column: 1/-1; }
}

@media (max-width: 768px) {
  :root { --header-h: 68px; }

  .nav       { display: none; }
  .header__cta { display: none; }
  .hamburger { display: flex; }

  .stats-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .stat { border-bottom: 1px solid rgba(13,42,94,.1); }
  .stat:nth-child(even) { border-right: none; }

  .diferenciais__grid { grid-template-columns: 1fr; }
  .catalogo__grid     { grid-template-columns: 1fr; }
  .contato__grid      { grid-template-columns: 1fr; }
  .mvv                { grid-template-columns: 1fr; }

  .cta-strip__inner   { flex-direction: column; text-align: center; }
  .cta-strip__btn     { width: 100%; justify-content: center; }

  .footer__inner  { grid-template-columns: 1fr; gap: 32px; }
  .footer__brand  { grid-column: unset; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 34px; }
  .btn--lg     { padding: 13px 24px; font-size: 15px; }
  .stats-bar__inner { grid-template-columns: 1fr 1fr; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 54px; height: 54px; }
}

/* ─── SEÇÃO PRODUTOS COM ABAS ──────────────────────────────── */
.produtos-abas {
  padding: 96px 0;
  background: var(--gray-50);
}

/* Barra de abas */
.abas-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.aba-btn {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 9px 20px;
  border-radius: var(--radius);
  border: 2px solid var(--blue);
  background: transparent;
  color: var(--blue);
  cursor: pointer;
  transition: all var(--transition);
}
.aba-btn:hover {
  background: var(--blue-light);
}
.aba-btn.active {
  background: var(--blue);
  color: var(--white);
}

/* Painéis de conteúdo */
.aba-content {
  display: none;
}
.aba-content.active {
  display: block;
  animation: fadeInTab .3s ease;
}
@keyframes fadeInTab {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Grid de mini cards */
.mini-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Mini card individual */
.mini-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.mini-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* Área da imagem */
.mini-card__img {
  background: var(--gray-100);
  aspect-ratio: 4/3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mini-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.mini-card:hover .mini-card__img img {
  transform: scale(1.05);
}
/* Fallback quando imagem não existe */
.mini-card__img.no-img {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
}
.mini-card__img.no-img::after {
  content: '📷 Imagem em breve';
  font-size: 12px;
  color: rgba(255,255,255,.5);
  font-family: var(--font-body);
}

/* Corpo do card */
.mini-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.mini-card__body h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1.25;
}
.mini-card__body p {
  font-size: 13.5px;
  color: var(--gray-600);
  line-height: 1.6;
  flex: 1;
}

/* Botões do card */
.mini-card__actions {
  display: flex;
  gap: 8px;
  margin-top: 4px;
  align-items: center;
}
.mini-card__actions .btn--blue {
  flex: 1;
  justify-content: center;
}
.btn--icon {
  width: 40px;
  height: 40px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: var(--radius);
}

/* Responsivo */
@media (max-width: 1024px) {
  .mini-cards-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .mini-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .abas-nav { gap: 8px; }
  .aba-btn  { font-size: 13px; padding: 8px 14px; }
}
@media (max-width: 480px) {
  .mini-cards-grid { grid-template-columns: 1fr; }
}

/* ─── MARCAS E FABRICANTES ────────────────────────────────── */
.marcas {
  padding: 96px 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(240,194,40,.10), transparent 26%),
    linear-gradient(180deg, var(--white), var(--blue-light));
  position: relative;
  overflow: hidden;
}
.marcas::after {
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  right: -190px;
  bottom: -210px;
  border: 52px solid rgba(26,79,160,.06);
  border-radius: 50%;
  pointer-events: none;
}
.marcas__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  position: relative;
  z-index: 1;
}
.marca-card {
  min-height: 194px;
  padding: 24px 22px 22px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(26,79,160,.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.marca-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(26,79,160,.35);
}
.marca-card__logo {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  overflow: hidden;
}
.marca-card__logo img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 220px;
  max-height: 72px;
  object-fit: contain;
  transition: transform var(--transition);
}
.marca-card:hover .marca-card__logo img { transform: scale(1.04); }
.marca-card__logo.sem-logo::after {
  content: attr(data-brand);
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 1.5px;
  color: var(--blue-dark);
}
.marca-card__categoria {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: .45px;
  text-transform: uppercase;
  color: var(--gray-600);
}
.marcas__note {
  max-width: 820px;
  margin: 34px auto 0;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  background: var(--white);
  border: 1px solid rgba(26,79,160,.14);
  border-radius: var(--radius);
  color: var(--gray-600);
  box-shadow: var(--shadow-sm);
}
.marcas__note-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--blue-dark);
  font-weight: 900;
}

/* ─── MODAL DE DETALHES DO PRODUTO ───────────────────────── */
body.modal-open { overflow: hidden; }
.produto-detalhes-btn { appearance: none; }
.produto-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease, visibility .24s ease;
}
.produto-modal.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.produto-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5,19,45,.78);
  backdrop-filter: blur(6px);
}
.produto-modal__dialog {
  width: min(980px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 28px 90px rgba(0,0,0,.38);
  overflow: hidden;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  transform: translateY(18px) scale(.975);
  transition: transform .28s cubic-bezier(.2,.75,.2,1);
}
.produto-modal.open .produto-modal__dialog { transform: translateY(0) scale(1); }
.produto-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(13,42,94,.92);
  color: var(--white);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: background var(--transition), transform var(--transition);
}
.produto-modal__close:hover { background: var(--blue); transform: rotate(6deg); }
.produto-modal__close:focus-visible,
.produto-detalhes-btn:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}
.produto-modal__visual{
    min-height:520px;
    padding:30px;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}
.produto-modal__visual img{
    display:block;

    width:auto;
    height:auto;

    max-width:100%;
    max-height:460px;

    object-fit:contain;
    object-position:center center;
    border-radius: 18px;
    padding: 10px;
    background: #fff;
    transition:transform .3s ease;
}

.produto-modal__visual img:hover{
    transform:scale(1.03);
}
.produto-modal__content {
  padding: 64px 44px 44px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow-y: auto;
}
.produto-modal__category {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--blue-light);
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.produto-modal__content h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.05;
  color: var(--blue-dark);
  margin-bottom: 22px;
}
.produto-modal__content p {
  color: var(--gray-600);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 30px;
}
.produto-modal__content .btn { margin-top: auto; }

@media (max-width: 1024px) {
  .marcas__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .produto-modal__dialog {
    grid-template-columns: 1fr;
    max-width: 680px;
    overflow-y: auto;
  }
  .produto-modal__visual { min-height: 300px; max-height: 390px; }
  .produto-modal__visual img { max-height: 390px; }
  .produto-modal__content { overflow: visible; padding: 34px 30px 36px; }
}
@media (max-width: 560px) {
  .marcas { padding: 76px 0; }
  .marcas__grid { grid-template-columns: 1fr; }
  .marca-card { min-height: 168px; }
  .marca-card__logo { height: 88px; }
  .marcas__note { align-items: flex-start; text-align: left; }
  .produto-modal { padding: 12px; }
  .produto-modal__dialog { max-height: calc(100vh - 24px); border-radius: 14px; }
  .produto-modal__visual { min-height: 230px; max-height: 300px; }
  .produto-modal__visual img { max-height: 300px; }
  .produto-modal__content { padding: 30px 22px 26px; }
  .produto-modal__content h2 { font-size: 30px; }
  .produto-modal__content p { font-size: 15.5px; }
  .produto-modal__content .btn { width: 100%; justify-content: center; }
  .produto-modal__close { top: 10px; right: 10px; }
}
.produto-modal__visual.no-image {
  position: relative;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
}
.produto-modal__visual.no-image::after {
  content: 'Imagem do produto em breve';
  color: rgba(255,255,255,.72);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .5px;
}
.hero-slider{
    position:relative;
    width:100%;
    height:560px;
    overflow:hidden;
    border-radius:18px;
    box-shadow:0 20px 50px rgba(0,0,0,.18);
}

.hero-slide{
    position:absolute;
    inset:0;
    opacity:0;
    transition:opacity .8s ease;
}

.hero-slide.active{
    opacity:1;
}

.hero-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-slider__dots{
    position:absolute;
    bottom:20px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:10px;
}

.hero-slider__dots span{
    width:12px;
    height:12px;
    border-radius:50%;
    background:rgba(255,255,255,.45);
    transition:.3s;
}

.hero-slider__dots span.active{
    background:#FFC107;
    transform:scale(1.25);
}

@media(max-width:900px){

    .hero-slider{
        height:340px;
    }

}

.hero-product{

    position:absolute;

    width:90%;

    max-width:600px;

    opacity:0;

    transform:translateY(30px) scale(.95);

    transition:.8s;

    filter:drop-shadow(0 35px 45px rgba(0,0,0,.18));

}

.hero-product.active{

    opacity:1;

    transform:translateY(0) scale(1);

}
.hero__visual::before{

content:"";

position:absolute;

width:420px;

height:420px;

border-radius:50%;

background:#0D2A5E10;

filter:blur(5px);

}