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

:root {
  --navy: #0D1F4E;
  --navy-dark: #081333;
  --navy-mid: #1B2F6E;
  --navy-light: #2A4494;
  --red: #CC1F1F;
  --red-dark: #A81818;
  --red-light: #E53535;
  --white: #FFFFFF;
  --gray-50: #F7F8FC;
  --gray-100: #EEF1F9;
  --gray-200: #DCE2F0;
  --gray-400: #94A3C0;
  --gray-600: #5A6A8A;
  --gray-800: #2D3A56;
  --success: #1A7A4A;
  --warning: #C47A00;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(13,31,78,0.10);
  --shadow-lg: 0 12px 48px rgba(13,31,78,0.18);
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', system-ui, sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.mt-16 { margin-top: 16px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.section-label {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(204,31,31,0.08);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

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

.section-title {
  font-size: clamp(32px, 5vw, 52px);
  color: var(--navy);
  margin-bottom: 16px;
}

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

.section-desc {
  font-size: 17px;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(204,31,31,0.35);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(204,31,31,0.45);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37,211,102,0.30);
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.40);
}

.btn-full { width: 100%; justify-content: center; }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 0;
  transition: all var(--transition);
}

.header.scrolled {
  background: var(--navy-dark);
  padding: 8px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo-link { flex-shrink: 0; }
.logo-img {
  height: 56px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
  transition: height var(--transition);
}
.header.scrolled .logo-img { height: 44px; }

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav a:hover { color: var(--white); background: rgba(255,255,255,0.1); }

.header-wa { margin-left: 8px; padding: 10px 20px; font-size: 14px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8,19,51,0.92) 0%,
    rgba(13,31,78,0.80) 50%,
    rgba(27,47,110,0.70) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(204,31,31,0.20);
  border: 1px solid rgba(204,31,31,0.40);
  color: #ff8080;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(40px, 7vw, 80px);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
  max-width: 720px;
}

.hero-sub {
  font-size: clamp(17px, 2vw, 20px);
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin-bottom: 40px;
  font-weight: 400;
}

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

/* Hero Stats */
.hero-stats {
  position: relative;
  z-index: 2;
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-stats-inner {
  display: flex;
  align-items: center;
  padding: 28px 24px;
  gap: 0;
  overflow-x: auto;
}

.stat {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 8px 16px;
}

.stat-num {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* ===== SOBRE ===== */
.sobre { background: var(--white); }

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

.sobre-img-wrap {
  position: relative;
}

.sobre-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
  box-shadow: var(--shadow-lg);
}

.sobre-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--red);
  color: var(--white);
  padding: 24px 28px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.sobre-badge-num {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
}

.sobre-badge-text {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.3;
}

.sobre-text {
  color: var(--gray-600);
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 1.7;
}

.missao-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.missao-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--gray-50);
  padding: 16px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--red);
}

.missao-icon {
  width: 40px;
  height: 40px;
  background: rgba(204,31,31,0.10);
  color: var(--red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.missao-item strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.missao-item p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.5;
}

/* ===== CONSULTA ===== */
.consulta-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.consulta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(204,31,31,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 100% 50%, rgba(255,255,255,0.04) 0%, transparent 60%);
}

.consulta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.consulta-desc {
  color: rgba(255,255,255,0.65);
  font-size: 16px;
  margin-top: 16px;
  line-height: 1.7;
}

.consulta-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.vehicle-form { display: flex; flex-direction: column; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
}

.form-group input,
.form-group select {
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 7L11 1' stroke='%235A6A8A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  padding-right: 40px;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--navy-mid);
}

/* ===== CATÁLOGO ===== */
.catalogo { background: var(--gray-50); }

.catalogo-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}

.tab-btn {
  padding: 10px 24px;
  border: 2px solid var(--gray-200);
  border-radius: 100px;
  background: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-600);
  cursor: pointer;
  transition: all var(--transition);
}

.tab-btn:hover {
  border-color: var(--navy-mid);
  color: var(--navy);
}

.tab-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.produto-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  animation: fadeInUp 0.4s ease forwards;
}

.produto-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

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

.produto-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.produto-marca {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}

.produto-nome {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.2;
}

.produto-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.spec-tag {
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
}

.garantia-tag {
  background: rgba(26,122,74,0.10);
  color: var(--success);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.produto-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}

.produto-footer .btn {
  width: 100%;
  justify-content: center;
  font-size: 14px;
  padding: 11px 16px;
}

/* ===== LOJA ===== */
.loja { background: var(--white); }

.loja-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.loja-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.loja-card:hover {
  border-color: rgba(13,31,78,0.28);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.loja-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  background: var(--gray-100);
}

.loja-card-wide {
  grid-column: span 2;
  grid-row: span 2;
}

.loja-card-wide img {
  height: 430px;
}

.loja-card-body {
  padding: 18px;
}

.loja-card-body span {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}

.loja-card-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 800;
  color: var(--navy);
}

.loja-card-body p {
  margin-top: 10px;
  color: var(--gray-600);
  font-size: 15px;
  line-height: 1.6;
}

/* ===== MARCAS ===== */
.marcas { background: var(--white); }

.marcas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.marca-card {
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}

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

.marca-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  padding: 16px;
  border-radius: 8px;
}

.marca-logo.moura { color: #003087; background: rgba(0,48,135,0.08); }
.marca-logo.heliar { color: #E8000D; background: rgba(232,0,13,0.08); }
.marca-logo.tudor { color: #1D4F9A; background: rgba(29,79,154,0.08); }
.marca-logo.freedom { color: #006633; background: rgba(0,102,51,0.08); }
.marca-logo.zetta { color: #FF6600; background: rgba(255,102,0,0.08); }

.marca-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ===== SERVIÇOS ===== */
.servicos { background: var(--gray-50); }

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.servico-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.servico-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.servico-card:hover::before { transform: scaleX(1); }
.servico-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.servico-icon {
  width: 56px;
  height: 56px;
  background: rgba(13,31,78,0.08);
  color: var(--navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all var(--transition);
}

.servico-card:hover .servico-icon {
  background: var(--red);
  color: var(--white);
}

.servico-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.servico-card p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ===== DIFERENCIAIS ===== */
.diferenciais {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.diferenciais::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(204,31,31,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.diferenciais-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.diferenciais-text .section-label { color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.1); }
.diferenciais-text .section-title { color: var(--white); }
.diferenciais-text p { color: rgba(255,255,255,0.65); font-size: 16px; line-height: 1.7; }

.diferenciais-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.diferencial-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 20px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.diferencial-item:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.15);
  transform: translateX(4px);
}

.dif-check {
  width: 32px;
  height: 32px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.diferencial-item strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.diferencial-item p {
  font-size: 14px;
  color: rgba(255,255,255,0.60);
  line-height: 1.5;
}

/* ===== AVALIAÇÕES ===== */
.avaliacoes { background: var(--gray-50); }

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

.avaliacao-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.avaliacao-card.destaque {
  background: var(--navy);
  border: none;
}

.avaliacao-card.destaque .stars { color: #FFD700; }
.avaliacao-card.destaque p { color: rgba(255,255,255,0.85); }
.avaliacao-card.destaque strong { color: var(--white) !important; }
.avaliacao-card.destaque span { color: rgba(255,255,255,0.55) !important; }

.avaliacao-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.stars {
  color: #FFB800;
  font-size: 20px;
  letter-spacing: 2px;
}

.avaliacao-card p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  flex: 1;
}

.avaliacao-autor {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}

.avaliacao-card.destaque .avaliacao-autor { border-top-color: rgba(255,255,255,0.12); }

.autor-avatar {
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.avaliacao-card.destaque .autor-avatar {
  background: rgba(255,255,255,0.15);
}

.avaliacao-autor strong {
  display: block;
  font-size: 15px;
  color: var(--navy);
}
.avaliacao-autor span {
  font-size: 13px;
  color: var(--gray-400);
}

/* ===== FAQ ===== */
.faq { background: var(--white); }

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open { border-color: var(--navy-mid); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  text-align: left;
  transition: background var(--transition);
}

.faq-question:hover { background: var(--gray-50); }
.faq-item.open .faq-question { background: var(--gray-50); color: var(--navy-mid); }

.faq-icon {
  font-size: 24px;
  font-weight: 400;
  color: var(--red);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ===== CONTATO ===== */
.contato { background: var(--gray-50); }

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

.contato-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contato-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 2px solid var(--gray-200);
  text-decoration: none;
  transition: all var(--transition);
  color: inherit;
}

.contato-card.static { cursor: default; }

.contato-card:not(.static):hover {
  border-color: var(--navy-mid);
  transform: translateX(4px);
  box-shadow: var(--shadow);
}

.contato-card.whatsapp:hover { border-color: #25D366; }
.contato-card.instagram:hover { border-color: #E1306C; }
.contato-card.email:hover { border-color: var(--navy-mid); }

.contato-card-icon {
  width: 52px;
  height: 52px;
  background: var(--gray-100);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
  transition: all var(--transition);
}

.contato-card.whatsapp .contato-card-icon { color: #25D366; }
.contato-card.instagram .contato-card-icon { color: #E1306C; }

.contato-card strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}

.contato-card span {
  font-size: 14px;
  color: var(--gray-600);
}

.mapa-wrap {
  height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 48px;
  padding: 64px 24px 48px;
}

.footer-logo {
  height: 64px;
  width: auto;
  margin-bottom: 16px;
  display: block;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--red);
  color: var(--white);
}

.footer-links h4,
.footer-contato h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links ul,
.footer-contato ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--white); }

.footer-contato ul li {
  font-size: 14px;
  line-height: 1.5;
}

.footer-contato .btn {
  margin-top: 24px;
  font-size: 14px;
  padding: 10px 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.40);
}

/* ===== FLOATING WA ===== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  text-decoration: none;
  transition: all var(--transition);
  animation: pulse 2.5s infinite;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37,211,102,0.60);
  animation: none;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.70), 0 0 0 8px rgba(37,211,102,0.12); }
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .sobre-grid,
  .consulta-inner,
  .diferenciais-inner { grid-template-columns: 1fr; gap: 48px; }

  .sobre-badge { right: 16px; bottom: -16px; }
  .sobre-img { height: 360px; }
  .missao-grid { grid-template-columns: 1fr; }

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

  .loja-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .loja-card-wide { grid-column: span 2; grid-row: auto; }
  .loja-card-wide img { height: 360px; }

  .contato-grid { grid-template-columns: 1fr; }
  .mapa-wrap { height: 300px; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .nav { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--navy-dark); flex-direction: column; justify-content: center; align-items: center; gap: 8px; z-index: 2000; }
  .nav.open { display: flex; }
  .nav a { font-size: 24px; padding: 12px 24px; }

  .header-wa { display: none; }
  .hamburger { display: flex; }

  .hero-title { font-size: 40px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .hero-stats-inner { gap: 0; }
  .stat { padding: 8px; min-width: 80px; }
  .stat-num { font-size: 26px; }
  .stat-label { font-size: 11px; }

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

  .loja-grid { gap: 16px; }
  .loja-card img { height: 170px; }
  .loja-card-wide img { height: 300px; }

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

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }

  .tab-btn { font-size: 13px; padding: 8px 16px; }

  .catalogo-tabs { gap: 6px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .marcas-grid { grid-template-columns: 1fr; }
  .servicos-grid { grid-template-columns: 1fr; }
  .loja-grid { grid-template-columns: 1fr; }
  .loja-card-wide { grid-column: auto; }
  .loja-card img,
  .loja-card-wide img { height: 220px; }
  .section { padding: 56px 0; }
  .hero-content { padding-top: 100px; }
}
