/* ============================================
   MANAUS AUTO PEÇAS – style.css
   Versão simplificada e performática
   ============================================ */

/* === VARIÁVEIS GLOBAIS === */
:root {
  --navy: #3657c4;
  /* azul principal */
  --navy-dark: #0D1A3A;
  /* azul escuro */
  --navy-mid: #243f8a;
  /* azul intermediário */
  --red: #f5f5f5;
  /* vermelho principal */
  --red-dark: #B50510;
  /* vermelho escuro */
  --white: #ffffff;
  --off-white: #F5F7FA;
  /* fundo suave */
  --gray-100: #F0F2F7;
  --gray-200: #E2E6F0;
  --gray-400: #9AA5BE;
  --gray-600: #5C6A8A;
  --gray-800: #2D3A5A;
  --text: #1A2340;
  /* cor do texto principal */
  --text-light: #5C6A8A;
  /* cor do texto secundário */

  --font-main: 'Inter', sans-serif;
  --font-cond: 'Barlow Condensed', sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 8px rgba(27, 47, 110, 0.10);
  --shadow-md: 0 6px 24px rgba(27, 47, 110, 0.15);
  --shadow-lg: 0 16px 48px rgba(27, 47, 110, 0.20);
  --shadow-red: 0 8px 24px rgba(227, 6, 19, 0.30);

  /* Transição padrão usada nos hovers */
  --transition: all 0.25s ease;

  --header-h: 80px;
  --topbar-h: 40px;
}

/* === RESET BÁSICO === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: 1rem;
  outline: none;
}

/* === CONTAINER (centraliza o conteúdo) === */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================
   BOTÕES
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn--lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn--sm {
  padding: 8px 18px;
  font-size: 0.8rem;
}

.btn--full {
  width: 100%;
}

/* Botão azul */
.btn--primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn--primary:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
}

/* Botão WhatsApp (verde) */
.btn--whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}

.btn--whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
}

/* Botão vermelho (nav) */
.btn--nav {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  padding: 10px 22px;
  font-size: 0.8rem;
  border-radius: 8px;
}

.btn--nav:hover {
  background: var(--red-dark);
}

/* Botão contorno branco (usado no hero) */
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}

/* ==========================================
   CABEÇALHO DE SEÇÃO
   ========================================== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  background: rgba(27, 47, 110, 0.08);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-tag--light {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
}

.section-title {
  font-family: var(--font-cond);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.section-title--light {
  color: var(--white);
}

.section-sub {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
}

.section-sub--light {
  color: rgba(255, 255, 255, 0.75);
}

/* ==========================================
   TOP BAR (barra superior com contato)
   ========================================== */
.topbar {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 100;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar__left,
.topbar__right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar__link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s;
}

.topbar__link:hover {
  color: var(--white);
}

.topbar__link i {
  font-size: 0.75rem;
  color: var(--red);
}

.topbar__hours {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.75rem;
}

.topbar__hours i {
  color: #25D366;
}

.topbar__socials {
  display: flex;
  gap: 8px;
}

.topbar__social {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.7rem;
  transition: var(--transition);
}

.topbar__social:hover {
  background: var(--red);
  color: white;
}

.topbar__social--wa:hover {
  background: #25D366;
}

/* ==========================================
   HEADER / NAVBAR
   ========================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s;
}

.header.scrolled {
  box-shadow: 0 4px 24px rgba(27, 47, 110, 0.18);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}

/* Logo */
.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-svg {
  height: 56px;
  width: auto;
}

/* Links de navegação */
.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: var(--gray-600);
  padding: 8px 12px;
  border-radius: 8px;
  transition: color 0.2s;
  position: relative;
}

/* Linha embaixo do link ativo */
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: width 0.25s;
}

.nav__link:hover,
.nav__link.active {
  color: var(--navy);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: calc(100% - 24px);
}

/* Botão hamburguer (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Menu mobile */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.mobile-menu.open {
  max-height: 600px;
}

.mobile-menu__inner {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
}

.mobile-nav__link {
  display: block;
  padding: 14px 16px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  border-bottom: 1px solid var(--gray-100);
  transition: color 0.2s;
}

.mobile-nav__link:hover {
  color: var(--red);
}

.mobile-menu__contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--gray-100);
}

.mobile-menu__contacts a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-600);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.mobile-menu__contacts a:hover {
  color: var(--navy);
}

.mobile-menu__contacts a i {
  color: var(--navy);
  width: 16px;
}

/* ==========================================
   HERO (seção inicial com slider)
   ========================================== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy-dark);
}

.hero-swiper {
  width: 100%;
}

.hero__slide {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Cada slide tem cor de fundo diferente */
.hero__slide--1 {
  background: linear-gradient(135deg, #0a1628 0%, var(--navy-dark) 40%, #1B2F6E 100%);
}

.hero__slide--2 {
  background: linear-gradient(135deg, #0a0c1a 0%, #1a0a0a 40%, #2a0810 100%);
}

.hero__slide--3 {
  background: linear-gradient(135deg, #0a1a0a 0%, #0d1a3a 40%, #1B2F6E 100%);
}

/* Conteúdo do hero */
.hero__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 80px 24px;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero__text-wrap {
  flex: 0 0 auto;
  max-width: 560px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.hero__badge i {
  color: #25D366;
}

.hero__title {
  font-family: var(--font-cond);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.hero__title em {
  font-style: normal;
  color: var(--red);
}

.hero__sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Visual do hero (lado direito) */
.hero__visual {
  flex: 0 0 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__car-svg {
  width: 100%;
}

/* Grid de ícones (slide 2) */
.hero__visual--icons {
  flex: 0 0 340px;
}

.hero__icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.hero__icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  color: white;
  transition: background 0.2s;
}

.hero__icon-item:hover {
  background: rgba(255, 255, 255, 0.14);
}

.hero__icon-item i {
  font-size: 1.8rem;
  color: var(--red);
}

.hero__icon-item span {
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  opacity: 0.9;
}

/* Cards de estatísticas (slide 3) */
.hero__visual--stats {
  flex: 0 0 340px;
}

.hero__stat-card {
  display: flex;
  flex-direction: column;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
}

.hero__stat-num {
  font-family: var(--font-cond);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  letter-spacing: -1px;
}

.hero__stat-lbl {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  margin-top: 4px;
}

/* Controles do Swiper (hero) */
.hero-pagination {
  bottom: 24px !important;
}

.hero-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  transition: background 0.2s;
}

.hero-pagination .swiper-pagination-bullet-active {
  background: var(--red);
  width: 32px;
  border-radius: 5px;
}

.hero-prev,
.hero-next {
  color: white !important;
  background: rgba(255, 255, 255, 0.12) !important;
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.2s !important;
}

.hero-prev:hover,
.hero-next:hover {
  background: var(--red) !important;
  border-color: var(--red) !important;
}

.hero-prev::after,
.hero-next::after {
  font-size: 0.9rem !important;
  font-weight: 700 !important;
}

/* ==========================================
   BANNER DE ESTATÍSTICAS
   ========================================== */
.stats-banner {
  background: var(--navy);
  padding: 0;
}

.stats-banner__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 36px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item__icon {
  font-size: 2.2rem;
  color: var(--red);
  flex-shrink: 0;
}

.stat-item__text {
  flex: 1;
}

.stat-item__num-wrap {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.stat-item__number {
  font-family: var(--font-cond);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -1px;
}

.stat-item__plus {
  font-family: var(--font-cond);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--red);
}

.stat-item__label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
  margin-top: 4px;
}

/* ==========================================
   CATEGORIAS DE PRODUTOS
   ========================================== */
.categories {
  padding: 100px 0;
  background: var(--off-white);
}

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

.cat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

/* Linha colorida embaixo do card ao hover */
.cat-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--red));
  transform: scaleX(0);
  transition: transform 0.25s;
}

.cat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--navy-mid);
}

.cat-card:hover::before {
  transform: scaleX(1);
}

.cat-card__icon-wrap {
  width: 72px;
  height: 72px;
  background: rgba(27, 47, 110, 0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: background 0.25s;
}

.cat-card__icon-wrap i {
  font-size: 1.8rem;
  color: var(--navy);
  transition: color 0.25s;
}

.cat-card:hover .cat-card__icon-wrap {
  background: var(--navy);
}

.cat-card:hover .cat-card__icon-wrap i {
  color: var(--white);
}

.cat-card__title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.cat-card__desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

.cat-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  padding: 8px 16px;
  border: 1.5px solid var(--navy);
  border-radius: 100px;
  transition: var(--transition);
}

.cat-card:hover .cat-card__link {
  background: var(--navy);
  color: white;
}

/* ==========================================
   SOBRE NÓS
   ========================================== */
.about {
  padding: 100px 0;
  background: var(--white);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* Carrossel da loja (Sobre Nós) */
.store-swiper {
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.store-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.store-pagination {
  bottom: 16px !important;
}

.store-pagination .swiper-pagination-bullet {
  background: var(--white);
  opacity: 0.5;
}

.store-pagination .swiper-pagination-bullet-active {
  background: var(--red);
  opacity: 1;
}

/* Badge "15 Anos" */
.about__years-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background: var(--red);
  color: white;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-red);
  z-index: 10;
  border: 4px solid white;
}

.about__years-num {
  font-family: var(--font-cond);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.about__years-text {
  font-size: 0.55rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  opacity: 0.9;
}

/* Texto sobre nós */
.about__text {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.about__text strong {
  color: var(--navy);
}

/* Cards missão/visão/valores */
.mvv__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.mvv-card {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.mvv-card:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.mvv-card:hover h3,
.mvv-card:hover p {
  color: white;
}

.mvv-card__icon {
  width: 40px;
  height: 40px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: background 0.2s;
}

.mvv-card:hover .mvv-card__icon {
  background: var(--red);
}

.mvv-card__icon i {
  color: white;
  font-size: 1rem;
}

.mvv-card h3 {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  transition: color 0.2s;
}

.mvv-card p {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.55;
  transition: color 0.2s;
}

/* ==========================================
   MARCAS PARCEIRAS
   ========================================== */
.brands {
  padding: 80px 0;
  background: var(--off-white);
}

.brands-swiper {
  padding: 20px 60px !important;
  position: relative;
}

.brand-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo {
  width: 160px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: default;
}

.brand-logo:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-md);
}

.brand-name {
  font-family: var(--font-cond);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--gray-600);
  letter-spacing: 2px;
  transition: color 0.2s;
}

.brand-img {
  max-width: 80%;
  max-height: 50px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition);
}

.brand-logo:hover .brand-name {
  color: var(--navy);
}

.brand-logo:hover .brand-img {
  filter: grayscale(0%);
  opacity: 1;
}

.brands-swiper .swiper-button-prev,
.brands-swiper .swiper-button-next {
  color: var(--navy) !important;
  background: var(--white);
  width: 40px !important;
  height: 40px !important;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--gray-200);
  transition: var(--transition) !important;
}

.brands-swiper .swiper-button-prev:hover,
.brands-swiper .swiper-button-next:hover {
  background: var(--navy);
  color: white !important;
  border-color: var(--navy);
}

.brands-swiper .swiper-button-prev::after,
.brands-swiper .swiper-button-next::after {
  font-size: 0.85rem !important;
  font-weight: 800 !important;
}

/* ==========================================
   DIFERENCIAIS (fundo azul)
   ========================================== */
.benefits {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #1a3a7a 100%);
}

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

.benefit-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.benefit-card__icon {
  width: 72px;
  height: 72px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-red);
}

.benefit-card__icon i {
  font-size: 1.6rem;
  color: rgb(62, 43, 150);
}

.benefit-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
}

.benefit-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
}

/* ==========================================
   ORÇAMENTO VIA WHATSAPP
   ========================================== */
.quote {
  padding: 100px 0;
  background: var(--white);
}

.quote__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.quote__title {
  font-family: var(--font-cond);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.quote__desc {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 32px;
}

.quote__highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}

.quote__highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--gray-800);
  font-weight: 500;
}

.quote__highlight i {
  color: #25D366;
  font-size: 1rem;
  flex-shrink: 0;
}

.quote__direct p {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

/* Formulário */
.quote__form-wrap {
  background: var(--off-white);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1.5px solid var(--gray-200);
  box-shadow: var(--shadow-md);
}

.quote__form-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1.5px solid var(--gray-200);
}

.quote__form-header i {
  font-size: 1.8rem;
  color: #25D366;
}

.quote__form-header h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
}

.form-group {
  margin-bottom: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--text);
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27, 47, 110, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-group input.error {
  border-color: var(--red);
}

.form-disclaimer {
  margin-top: 14px;
  font-size: 0.75rem;
  color: var(--gray-400);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.form-disclaimer i {
  color: var(--navy);
}

/* ==========================================
   CONTATO / LOCALIZAÇÃO
   ========================================== */
.contact {
  padding: 100px 0;
  background: var(--off-white);
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 1.5px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--navy-mid);
}

.contact-card__icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.contact-card__icon i {
  font-size: 1.3rem;
  color: white;
}

.contact-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.contact-card p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.contact-card p a {
  color: var(--navy);
  font-weight: 600;
  transition: color 0.2s;
}

.contact-card p a:hover {
  color: var(--red);
}

.contact-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  transition: color 0.2s;
}

.contact-card__link:hover {
  color: var(--red);
}

/* Lista de horários */
.hours-list {
  text-align: left;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.85rem;
}

.hours-list li:last-child {
  border-bottom: none;
}

.hours-list li span {
  color: var(--text-light);
}

.hours-list li strong {
  color: var(--navy);
  font-weight: 700;
}

/* Mapa placeholder */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--gray-200);
  height: 280px;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.map-placeholder i {
  font-size: 3.5rem;
  color: rgba(255, 255, 255, 0.4);
}

.map-placeholder p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  font-weight: 600;
}

/* ==========================================
   FOOTER (rodapé)
   ========================================== */
.footer {
  background: var(--navy-dark);
}

.footer__main {
  padding: 72px 0 48px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer__col-title {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

/* Linha vermelha embaixo do título do footer */
.footer__col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.footer__logo {
  margin-bottom: 20px;
}

.footer__logo .logo-svg {
  height: 56px;
}

.footer__brand-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer__socials {
  display: flex;
  gap: 10px;
}

.footer__social {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__social:hover {
  background: var(--red);
  color: white;
  border-color: var(--red);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__links a i {
  font-size: 0.65rem;
  color: var(--red);
}

.footer__links a:hover {
  color: white;
}

.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
}

.footer__contact-item i {
  color: var(--red);
  font-size: 0.9rem;
  width: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__contact-item span,
.footer__contact-item a {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
  transition: color 0.2s;
}

.footer__contact-item a:hover {
  color: white;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer__bottom-inner p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ==========================================
   BOTÃO FLUTUANTE DO WHATSAPP
   ========================================== */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: white;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

.float-wa:hover {
  background: #1da851;
  transform: scale(1.08);
}

/* Tooltip que aparece ao hover */
.float-wa__tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--navy-dark);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
}

.float-wa__tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--navy-dark);
}

.float-wa:hover .float-wa__tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ==========================================
   BOTÃO VOLTAR AO TOPO
   ========================================== */
.scroll-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 9998;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
}

.scroll-top:hover {
  background: var(--red);
}

/* ==========================================
   RESPONSIVO – TABLET (até 1024px)
   ========================================== */
@media (max-width: 1024px) {
  .categories__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .stat-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .stat-item:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about__visual-main {
    min-height: 300px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

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

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

  .quote__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ==========================================
   RESPONSIVO – MOBILE (até 768px)
   ========================================== */
@media (max-width: 768px) {
  :root {
    --header-h: 68px;
    --topbar-h: 36px;
  }

  /* Topbar: esconde email e horário */
  .topbar__left .topbar__link:last-child {
    display: none;
  }

  .topbar__hours {
    display: none;
  }

  /* Header: exibe hamburguer, esconde nav */
  .header__nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .logo-svg {
    height: 46px;
  }

  /* Hero */
  .hero__slide {
    min-height: 520px;
  }

  .hero__content {
    flex-direction: column;
    padding: 60px 24px 80px;
    text-align: center;
    gap: 32px;
  }

  .hero__text-wrap {
    max-width: 100%;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__visual {
    display: none;
  }

  .hero-prev,
  .hero-next {
    display: none !important;
  }

  /* Stats */
  .stats-banner__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    padding: 24px 20px;
  }

  .stat-item__number {
    font-size: 1.8rem;
  }

  /* Categorias */
  .categories {
    padding: 72px 0;
  }

  .categories__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .cat-card {
    padding: 24px 16px;
  }

  /* Sobre */
  .about {
    padding: 72px 0;
  }

  .about__visual-main {
    padding: 40px 24px;
    min-height: 260px;
  }

  .mvv__grid {
    grid-template-columns: 1fr;
  }

  .about__years-badge {
    top: -16px;
    right: -8px;
    width: 84px;
    height: 84px;
  }

  .about__years-num {
    font-size: 1.6rem;
  }

  /* Marcas */
  .brands-swiper {
    padding: 12px 48px !important;
  }

  /* Diferenciais */
  .benefits {
    padding: 72px 0;
  }

  .benefits__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .benefit-card {
    padding: 24px 16px;
  }

  /* Orçamento */
  .quote {
    padding: 72px 0;
  }

  .quote__form-wrap {
    padding: 28px 20px;
  }

  /* Contato */
  .contact {
    padding: 72px 0;
  }

  .contact__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .contact-card {
    padding: 24px 16px;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer__bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  /* WhatsApp e scroll-top */
  .float-wa {
    width: 52px;
    height: 52px;
    font-size: 1.4rem;
    bottom: 20px;
    right: 20px;
  }

  .scroll-top {
    right: 20px;
    bottom: 84px;
  }
}

/* ==========================================
   RESPONSIVO – MOBILE PEQUENO (até 480px)
   ========================================== */
@media (max-width: 480px) {
  .categories__grid {
    grid-template-columns: 1fr;
  }

  .benefits__grid {
    grid-template-columns: 1fr;
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }

  .stats-banner__grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .topbar__link span {
    display: none;
  }

  .mvv__grid {
    grid-template-columns: 1fr;
  }

  .hero__title {
    font-size: 2rem;
  }
}