/* ================================================
   FROTA BRASIL – Equipamentos Rodoviários
   Estilo Principal
   ================================================ */

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

:root {
  --primary: #0d0d0d;
  --primary-light: #1a1a1a;
  --accent: #c9a84c;
  --accent-hover: #b8932f;
  --navy: #0a1a3a;
  --navy-light: #122a54;
  --white: #ffffff;
  --dark: #0d0d0d;
  --light: #f4f6f9;
  --gray: #6b7280;
  --gray-light: #e5e7eb;
  --text: #1f2937;
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --radius: 6px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

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

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ================================================
   BUTTONS
   ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
  font-weight: 700;
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

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

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

.btn-lg {
  padding: 16px 40px;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  border-color: #25d366;
}
.btn-whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
  transform: translateY(-2px);
}

.btn-nav {
  background: var(--accent);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  transition: var(--transition);
}
.btn-nav:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

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

/* ================================================
   HEADER
   ================================================ */
.header { position: sticky; top: 0; z-index: 1000; }

.header-top {
  background: var(--primary);
  padding: 8px 0;
  font-size: 0.82rem;
}
.header-top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.header-top-info {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.header-top-info a,
.header-top-info span {
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.header-top-info a:hover { color: var(--white); }
/* ── LANGUAGE SWITCHER ────────────────────────────────────────── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid rgba(255,255,255,0.2);
}
.lang-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 2px 5px;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  transition: background 0.2s, border-color 0.2s, opacity 0.2s;
  opacity: 0.55;
  gap: 3px;
  color: rgba(255,255,255,0.8);
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.lang-btn .lang-flag { font-size: 1rem; }
.lang-btn:hover { opacity: 1; background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); }
.lang-btn.active { opacity: 1; border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.15); }

.header-top-social { display: flex; gap: 14px; align-items: center; }
.header-top-social a {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: var(--transition);
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
}
.header-top-social a:hover {
  color: var(--white);
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

.navbar {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  transition: var(--transition);
  border-bottom: 3px solid var(--accent);
}
.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.14);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  gap: 24px;
  min-height: 0;
  line-height: 1;
}

.logo { display: flex; align-items: center; }
.logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
}
/* Fallback texto caso logo não carregue */
.logo-text {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 1px;
  line-height: 1;
}
.logo-text strong { color: var(--accent); }
.logo-sub {
  font-size: 0.65rem;
  color: var(--gray);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-search-item {
  margin-left: 4px;
}
.nav-search-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.08);
  background: #f3f4f6;
  cursor: pointer;
  color: var(--text);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.nav-search-btn i {
  font-size: 0.9rem;
}
.nav-search-btn:hover {
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}

/* Global search bar (todas as páginas) */
.global-search-bar {
  display: none;
  background: #0b1220;
  border-bottom: 2px solid var(--accent);
}
.header.search-open .global-search-bar {
  display: block;
}
.global-search-inner {
  padding: 10px 24px 12px;
}
.global-search-form {
  display: flex;
  align-items: center;
  gap: 10px;
}
.global-search-icon {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
}
.global-search-input {
  flex: 1;
  background: #020617;
  border-radius: var(--radius);
  border: 1px solid rgba(148,163,184,0.6);
  padding: 10px 12px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.global-search-input::placeholder {
  color: rgba(148,163,184,0.9);
}
.global-search-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(201,168,76,0.5);
}
.global-search-submit {
  padding-inline: 20px;
}
.global-search-close {
  background: transparent;
  border: none;
  color: rgba(148,163,184,0.9);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}
.global-search-close:hover {
  color: var(--white);
}
.nav-links li a {
  padding: 8px 14px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
  border-radius: var(--radius);
  transition: var(--transition);
  letter-spacing: 0.3px;
}
.nav-links li a:hover {
  color: var(--accent);
  background: rgba(201,168,76,0.08);
}
.nav-links li a.active {
  color: var(--primary);
  background: var(--accent);
  box-shadow: 0 3px 12px rgba(201,168,76,0.3);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative;
  height: calc(100vh - 110px);
  min-height: 560px;
  overflow: hidden;
}
.hero-slider { width: 100%; height: 100%; position: relative; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-color: #0d1c2e;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: flex;
  align-items: center;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.75) 55%, rgba(0,0,0,0.45) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  padding: 6px 18px;
  border-radius: 4px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero-content h1 strong { color: var(--accent); }
.hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  max-width: 500px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-controls {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-prev, .hero-next {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.85rem;
}
.hero-prev:hover, .hero-next:hover {
  background: var(--accent);
  border-color: var(--accent);
}
.hero-dots { display: flex; gap: 8px; }
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
}
.dot.active {
  background: var(--accent);
  transform: scale(1.2);
}

/* ================================================
   STATS
   ================================================ */
.stats {
  background: var(--primary);
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 16px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat-plus {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  margin-left: 2px;
  align-self: flex-start;
  margin-top: 4px;
}
.stat-item { flex-direction: row; align-items: flex-start; justify-content: center; flex-wrap: wrap; }
.stat-item .stat-number { display: inline; }
.stat-item .stat-plus { display: inline; font-size: 1.8rem; margin-top: 6px; }
.stat-label {
  width: 100%;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

/* ================================================
   SECTIONS COMMON
   ================================================ */
/* Reduz um pouco a altura padrão das seções para o site ficar mais leve verticalmente */
.section { padding: 80px 0; }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-header h2 strong { color: var(--accent); }
.section-header p {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}
.section-cta { text-align: center; margin-top: 48px; }

/* ================================================
   PRODUTOS
   ================================================ */
.produtos-section { background: var(--light); }
.produtos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.produto-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.produto-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.produto-img {
  height: 280px;
  background-size: cover;
  background-position: center;
  background-color: #d1d5db;
  position: relative;
  overflow: hidden;
}
.produto-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.produto-card:hover .produto-overlay { opacity: 1; }
.btn-ver {
  padding: 10px 24px;
  background: var(--accent);
  color: var(--primary);
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  transition: var(--transition);
}
.btn-ver:hover { background: var(--accent-hover); }
.produto-info { padding: 24px; }
.produto-info h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.produto-info p {
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.5;
}
.produto-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition);
}
.produto-link:hover { gap: 10px; }

/* ================================================
   SOBRE HOME
   ================================================ */
.sobre-home { background: var(--white); }
.sobre-home-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.sobre-home-img {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
}
.sobre-home-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  background: #d1d5db;
}

.sobre-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 150px;
  height: 150px;
  z-index: 2;
  background: transparent;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.25));
}
.sobre-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
}
.anfir-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  width: 150px;
  height: 150px;
  z-index: 2;
  background: transparent;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.25));
}
.anfir-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
}

.sobre-home-content .section-tag { display: block; margin-bottom: 12px; }
.sobre-home-content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 20px;
}
.sobre-home-content h2 strong { color: var(--accent); }
.sobre-home-content p {
  color: var(--gray);
  margin-bottom: 14px;
  line-height: 1.7;
}
.diferenciais-list {
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.diferenciais-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}
.diferenciais-list li i {
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ================================================
   CTA BANNER
   ================================================ */
.cta-banner {
  position: relative;
  background: url('../images/1773353021525-1773259025319-Frota-Fachada.png') center/cover no-repeat;
  background-color: var(--primary);
  padding: 96px 0;
  text-align: center;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
}
.cta-content {
  position: relative;
  z-index: 2;
}
.cta-content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ================================================
   NOTICIAS
   ================================================ */
.noticias-section { background: var(--light); }
.noticias-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.noticia-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.noticia-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.noticia-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  background-color: #d1d5db;
  position: relative;
}
.noticia-cat {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--navy);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-head);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.noticia-body { padding: 24px; }
.noticia-data {
  font-size: 0.82rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}
.noticia-body h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1.4;
}
.noticia-body p {
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.5;
}
.noticia-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition);
}
.noticia-link:hover { gap: 10px; }

/* ================================================
   CONTATO
   ================================================ */
.contato-section { background: var(--white); }
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}
.contato-info { display: flex; flex-direction: column; gap: 28px; }
.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.info-icon {
  width: 48px; height: 48px;
  background: var(--navy);
  color: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
}
.info-item strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
  font-size: 0.9rem;
}
.info-item p, .info-item a {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.5;
}
.info-item a:hover { color: var(--accent); }
.info-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.info-social a {
  width: 40px; height: 40px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}
.info-social a:hover { background: var(--accent); transform: translateY(-2px); }

.contato-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; }
.form-group.full { grid-column: 1/-1; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
  transition: var(--transition);
  outline: none;
  background: var(--white);
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(196,30,42,0.08);
}

/* ================================================
   MAPA
   ================================================ */
.mapa-section { line-height: 0; }
.mapa-section iframe { width: 100%; height: 300px; border: 0; display: block; }

/* ================================================
   FOOTER
   ================================================ */
.footer { background: var(--primary); color: rgba(255,255,255,0.7); border-top: 3px solid var(--accent); }
.footer-top { padding: 36px 0 28px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 28px;
}
.footer-logo { margin-bottom: 10px; }
.footer-logo .logo-img { height: 44px; }
.footer-logo .logo-text { color: var(--white); font-size: 1.3rem; }
.footer-logo .logo-sub { color: rgba(255,255,255,0.4); }
.footer-col > p { font-size: 0.82rem; line-height: 1.6; margin-bottom: 14px; }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 6px; }
.footer-col ul li a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }

.footer-contact li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
}
.footer-contact li i { color: var(--accent); margin-top: 3px; flex-shrink: 0; }
.footer-contact li a { color: rgba(255,255,255,0.6); }
.footer-contact li a:hover { color: var(--white); }

.footer-social { display: flex; gap: 8px; margin-bottom: 8px; }
.footer-social a {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-bottom {
  padding: 14px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* ================================================
   WHATSAPP FLOAT & BACK TO TOP
   ================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px; height: 58px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 999;
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}

.back-to-top {
  position: fixed;
  bottom: 96px;
  right: 28px;
  width: 44px; height: 44px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}
.back-to-top:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1100px) {
  .produtos-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 24px; }
}

@media (max-width: 900px) {
  .sobre-home-grid { grid-template-columns: 1fr; gap: 48px; }
  .sobre-home-img img { height: 360px; }
  .sobre-badge, .anfir-badge { width: 110px; height: 110px; bottom: -16px; }
  .sobre-badge { right: -8px; }
  .anfir-badge { left: -8px; }
  .contato-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 16px; }
  .stat-item:nth-child(even) { border-right: none; }
  .noticias-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .header-top-info { display: none; }
  .header-top-social > a { display: none; }
  .header-top .container { justify-content: center; }
  .header-top { padding: 6px 0; }

  .menu-toggle { display: flex; }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 8px 0;
    gap: 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    border-top: 2px solid var(--accent);
    display: none;
    z-index: 200;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links li a {
    padding: 14px 20px;
    display: block;
    border-radius: 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    font-size: 0.95rem;
  }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-search-item {
    padding: 4px 16px;
  }
  .nav-search-btn {
    width: 40px;
    height: 40px;
    border-radius: 999px;
  }
  .btn-nav { text-align: center; margin: 8px 16px 8px; border-radius: var(--radius) !important; }

  .hero { height: 80vh; min-height: 480px; }
  .hero-content h1 { font-size: 1.8rem; }
  .hero-content p { font-size: 0.9rem; }

  .produtos-grid { grid-template-columns: 1fr; }
  .produto-img { height: 310px; }
  .noticias-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .section { padding: 52px 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .section-header { margin-bottom: 36px; }
  .section-header h2 { font-size: 1.6rem; }
  .clientes-logos { gap: 12px; }
  .cliente-logo { width: 100px; height: 60px; padding: 8px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { text-align: center; justify-content: center; width: 100%; }
  .cta-buttons { flex-direction: column; align-items: center; width: 100%; }
  .cta-buttons .btn { width: 100%; justify-content: center; }
  .sobre-badge, .anfir-badge { width: 90px; height: 90px; bottom: -12px; }
  .sobre-badge { right: 4px; }
  .anfir-badge { left: 4px; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 40px 0; }
  .section-header h2 { font-size: 1.45rem; }
  .section-header p { font-size: 0.88rem; }
  .hero { height: 70vh; min-height: 420px; }
  .hero-content h1 { font-size: 1.55rem; }
  .stat-number { font-size: 2rem; }
}
