/* ═══════════════════════════════════════════════
   RM LOCAÇÕES — INDUSTRIAL AUTHORITY THEME
   Style: 13-industrial-authority
   Font: Montserrat (200–800)
   Icons: Phosphor Thin + FA Brands
   ═══════════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --color-bg: #0a0a0a;
  --color-surface: #111111;
  --color-surface-alt: #161616;
  --color-surface-card: #1a1a1a;
  --color-accent: #CC0000;
  --color-accent-hover: #E60000;
  --color-accent-glow: rgba(204, 0, 0, .12);
  --color-yellow: #FFCB05;
  --color-yellow-hover: #FFD633;
  --color-yellow-glow: rgba(255, 203, 5, .12);
  --color-yellow-dim: rgba(255, 203, 5, .7);
  --color-text: #f0f0f0;
  --color-text-muted: #888888;
  --color-text-dim: #555555;
  --color-border: #222222;
  --color-border-light: #2a2a2a;
  --color-white: #ffffff;
  --color-success: #2ecc71;
  --color-danger: #e74c3c;

  --font-main: 'Montserrat', sans-serif;
  --container: 1200px;
  --radius: 8px;
  --radius-lg: 16px;
  --transition: .3s cubic-bezier(.4, 0, .2, 1);

  --shadow-card: 0 4px 24px rgba(0,0,0,.4);
  --shadow-glow: 0 0 40px var(--color-accent-glow);
  --shadow-glow-yellow: 0 0 40px var(--color-yellow-glow);
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font-main);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; transition: color var(--transition); }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* ── CONTAINER ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── SECTION HEADER ── */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-yellow);
  margin-bottom: 16px;
}
.section-header__tag i { font-size: 16px; }
.section-header__tag--light { color: var(--color-accent); }
.section-header__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 200;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: 16px;
}
.section-header__title strong { font-weight: 700; }
.section-header__text {
  font-size: 15px;
  font-weight: 300;
  color: var(--color-text-muted);
  max-width: 65ch;
  margin: 0 auto;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn i { font-size: 18px; }
.btn--primary {
  background: var(--color-accent);
  color: #ffffff;
}
.btn--primary:hover {
  background: var(--color-accent-hover);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}
.btn--outline {
  border: 1px solid rgba(255,255,255,.3);
  color: #ffffff;
  background: transparent;
}
.btn--outline:hover {
  border-color: #ffffff;
  color: #ffffff;
  background: rgba(255,255,255,.08);
}
.btn--full { width: 100%; justify-content: center; }

/* ══════════════════════════════════
   NAV
   ══════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 10, .85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}
.nav--scrolled { border-bottom-color: var(--color-border); }
.nav__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav__logo {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.nav__logo-rm {
  font-size: 24px;
  font-weight: 800;
  color: var(--color-accent);
  letter-spacing: 2px;
}
.nav__logo-sub {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__link {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width var(--transition);
}
.nav__link:hover,
.nav__link.active {
  color: var(--color-text);
}
.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}
.nav__cta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.nav__cta:hover {
  background: var(--color-accent);
  color: #ffffff;
}
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-text);
  transition: all var(--transition);
}

/* ══════════════════════════════════
   HERO F — DARK PREMIUM BANNER
   ══════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a0505 30%, #0d0d0d 70%, #111 100%);
  background-image: url('https://rmlocacoes.com.br/wp-content/uploads/2021/06/wallpaper002_1024x768-e1407247675260.jpeg');
  background-size: cover;
  background-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.8) 0%, rgba(0,0,0,.55) 40%, rgba(0,0,0,.97) 100%);
}
.hero__dot-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,.9) .5px, transparent .5px);
  background-size: 3px 3px;
  opacity: .15;
  pointer-events: none;
}
.hero__container {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 203, 5, .08);
  border: 1px solid rgba(255, 203, 5, .25);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-yellow);
  margin-bottom: 32px;
}
.hero__badge i { font-size: 18px; }
.hero__title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 200;
  line-height: 1.15;
  max-width: 800px;
  margin-bottom: 24px;
}
.hero__title strong { font-weight: 700; color: var(--color-yellow); }
.hero__text {
  font-size: 16px;
  font-weight: 300;
  color: var(--color-text-muted);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero__stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 40px;
  border-top: 1px solid var(--color-border);
  width: 100%;
}
.hero__stat { display: flex; align-items: center; gap: 12px; }
.hero__stat-number {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--color-yellow);
  line-height: 1;
}
.hero__stat-plus { font-weight: 300; font-size: .7em; }
.hero__stat-label {
  font-size: 12px;
  font-weight: 300;
  color: var(--color-text-muted);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: var(--color-border);
}

/* ══════════════════════════════════
   MARQUEE
   ══════════════════════════════════ */
.marquee {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 20px 0;
  overflow: hidden;
}
.marquee__track { overflow: hidden; position: relative; }
.marquee__content {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: marqueeScroll 25s linear infinite;
  width: max-content;
}
.marquee__item {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  white-space: nowrap;
}
.marquee__dot {
  width: 4px;
  height: 4px;
  background: var(--color-yellow);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════
   SERVIÇOS
   ══════════════════════════════════ */
.servicos {
  padding: 96px 0;
  background: var(--color-bg);
}
.servicos__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.servicos__card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.servicos__card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}
.servicos__card-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-yellow-glow);
  border: 1px solid rgba(255, 203, 5, .2);
  border-radius: var(--radius);
}
.servicos__card-icon i {
  font-size: 28px;
  color: var(--color-yellow);
}
.servicos__card-content h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}
.servicos__card-content p {
  font-size: 14px;
  font-weight: 300;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ══════════════════════════════════
   EQUIPAMENTOS
   ══════════════════════════════════ */
.equipamentos {
  padding: 96px 0;
  background: var(--color-surface);
}
.equipamentos__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.equipamentos__card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  aspect-ratio: 1;
  transition: all var(--transition);
  cursor: pointer;
}
.equipamentos__card--featured {
  grid-column: span 2;
  grid-row: span 2;
}
.equipamentos__card:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.equipamentos__card-bg {
  position: absolute;
  inset: 0;
  background: var(--grad);
}
.equipamentos__card-dot {
  display: none;
}
.equipamentos__card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  height: 100%;
}
.equipamentos__card-content i {
  font-size: 32px;
  color: var(--color-yellow);
  margin-bottom: auto;
}
.equipamentos__card--featured .equipamentos__card-content i { font-size: 48px; }
.equipamentos__card-content h3 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .5px;
  margin-bottom: 6px;
  color: #ffffff;
}
.equipamentos__card--featured .equipamentos__card-content h3 { font-size: 18px; }
.equipamentos__card-content p {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.equipamentos__card--featured .equipamentos__card-content p {
  font-size: 14px;
  -webkit-line-clamp: 3;
}
.equipamentos__card-arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border-light);
  border-radius: 50%;
  opacity: 0;
  transform: translateX(-8px);
  transition: all var(--transition);
}
.equipamentos__card-arrow i { font-size: 16px; color: var(--color-yellow); }
.equipamentos__card:hover .equipamentos__card-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ══════════════════════════════════
   PROCESSO
   ══════════════════════════════════ */
.processo {
  padding: 96px 0;
  background: var(--color-bg);
}
.processo__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.processo__card {
  padding: 32px 24px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition);
  position: relative;
}
.processo__card:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
}
.processo__number {
  display: block;
  font-size: 4rem;
  font-weight: 800;
  color: var(--color-yellow);
  opacity: .15;
  line-height: 1;
  margin-bottom: 16px;
}
.processo__card:hover .processo__number { opacity: .25; }
.processo__card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}
.processo__card p {
  font-size: 13px;
  font-weight: 300;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ══════════════════════════════════
   SOBRE
   ══════════════════════════════════ */
.sobre {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}
.sobre__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a0505 0%, #0d0d0d 50%, #111 100%);
  background-image: url('https://rmlocacoes.com.br/wp-content/uploads/2021/06/27-06-2016-1111-0606-0202Banner-Compactacao.jpg');
  background-size: cover;
  background-position: center;
}
.sobre__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .85);
}
.sobre__dot-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,.9) .5px, transparent .5px);
  background-size: 3px 3px;
  opacity: .15;
  pointer-events: none;
}
.sobre .container { position: relative; z-index: 2; }
.sobre__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: center;
}
.sobre__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 200;
  line-height: 1.2;
  margin-bottom: 24px;
  margin-top: 16px;
}
.sobre__title strong { font-weight: 700; color: var(--color-yellow); }
.sobre__text {
  font-size: 15px;
  font-weight: 300;
  color: var(--color-text-muted);
  max-width: 65ch;
  margin-bottom: 16px;
  line-height: 1.8;
}
.sobre__badges {
  display: flex;
  gap: 20px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.sobre__badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(255, 203, 5, .06);
  border: 1px solid rgba(255, 203, 5, .2);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-yellow);
}
.sobre__badge i { font-size: 20px; }
.sobre__numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.sobre__number-card {
  padding: 32px 24px;
  background: rgba(26, 26, 26, .6);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-align: center;
  backdrop-filter: blur(10px);
}
.sobre__number-value {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-yellow);
  line-height: 1;
  margin-bottom: 8px;
}
.sobre__number-label {
  font-size: 12px;
  font-weight: 400;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ══════════════════════════════════
   DEPOIMENTOS
   ══════════════════════════════════ */
.depoimentos {
  padding: 96px 0;
  background: var(--color-bg);
}
.depoimentos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.depoimentos__card {
  padding: 32px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.depoimentos__card:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
}
.depoimentos__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}
.depoimentos__stars i { font-size: 18px; color: var(--color-yellow); }
.depoimentos__text {
  font-size: 14px;
  font-weight: 300;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.depoimentos__author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.depoimentos__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-yellow-glow);
  border: 1px solid rgba(255, 203, 5, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-yellow);
}
.depoimentos__author strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
}
.depoimentos__author span {
  font-size: 12px;
  font-weight: 300;
  color: var(--color-text-muted);
}
.depoimentos__brands {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}
.depoimentos__brands-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-dim);
  margin-bottom: 16px;
}
.depoimentos__brands-list {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.depoimentos__brands-list span {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  opacity: .6;
}

/* ══════════════════════════════════
   FILIAIS
   ══════════════════════════════════ */
.filiais {
  padding: 96px 0;
  background: var(--color-surface);
}
.filiais__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.filiais__card {
  padding: 24px;
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.filiais__card:hover {
  border-color: var(--color-accent);
  transform: translateY(-2px);
}
.filiais__card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.filiais__card-header i { font-size: 20px; color: var(--color-yellow); }
.filiais__card-header h3 { font-size: 14px; font-weight: 600; }
.filiais__badge {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  background: var(--color-yellow-glow);
  border: 1px solid rgba(255, 203, 5, .25);
  border-radius: 100px;
  color: var(--color-yellow);
  margin-left: auto;
}
.filiais__card-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.filiais__card-info a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 300;
  color: var(--color-text-muted);
}
.filiais__card-info a i { font-size: 16px; color: var(--color-yellow); flex-shrink: 0; }
.filiais__card-info a:hover { color: var(--color-accent); }

/* ══════════════════════════════════
   FAQ
   ══════════════════════════════════ */
.faq {
  padding: 96px 0;
  background: var(--color-bg);
}
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}
.faq__sidebar-title {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 200;
  line-height: 1.2;
  margin: 16px 0;
}
.faq__sidebar-title strong { font-weight: 700; }
.faq__sidebar-text {
  font-size: 14px;
  font-weight: 300;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}
.faq__item {
  border-bottom: 1px solid var(--color-border);
}
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 15px;
  font-weight: 400;
  color: var(--color-text);
  text-align: left;
  transition: color var(--transition);
}
.faq__question:hover { color: var(--color-accent); }
.faq__question i {
  font-size: 20px;
  color: var(--color-yellow);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq__item.active .faq__question i { transform: rotate(45deg); }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
}
.faq__item.active .faq__answer {
  max-height: 200px;
  padding-bottom: 20px;
}
.faq__answer p {
  font-size: 14px;
  font-weight: 300;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ══════════════════════════════════
   CONTATO
   ══════════════════════════════════ */
.contato {
  padding: 96px 0;
  background: var(--color-surface);
}
.contato__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: start;
}
.contato__form {
  padding: 40px;
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}
.contato__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contato__field {
  margin-bottom: 16px;
}
.contato__field label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}
.contato__field input,
.contato__field select,
.contato__field textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--color-surface-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-text);
  font-weight: 300;
  transition: border-color var(--transition);
  outline: none;
}
.contato__field select { appearance: none; cursor: pointer; }
.contato__field input:focus,
.contato__field select:focus,
.contato__field textarea:focus {
  border-color: var(--color-accent);
}
.contato__field input.error,
.contato__field select.error,
.contato__field textarea.error {
  border-color: var(--color-danger);
}
.contato__error {
  font-size: 11px;
  font-weight: 400;
  color: var(--color-danger);
  margin-top: 4px;
  display: block;
  min-height: 0;
}
.contato__field textarea { resize: vertical; min-height: 100px; }
.contato__success {
  display: none;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 16px;
  background: rgba(46, 204, 113, .1);
  border: 1px solid rgba(46, 204, 113, .3);
  border-radius: var(--radius);
}
.contato__success.show { display: flex; }
.contato__success i { font-size: 28px; color: var(--color-success); }
.contato__success p { font-size: 14px; font-weight: 400; color: var(--color-success); }
.contato__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contato__info-card {
  padding: 24px;
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}
.contato__info-card i {
  font-size: 24px;
  color: var(--color-yellow);
  margin-bottom: 12px;
  display: block;
}
.contato__info-card h4 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}
.contato__info-card p,
.contato__info-card a {
  font-size: 13px;
  font-weight: 300;
  color: var(--color-text-muted);
  line-height: 1.6;
}
.contato__info-card a:hover { color: var(--color-accent); }
.contato__socials {
  display: flex;
  gap: 12px;
  padding-top: 8px;
}
.contato__socials a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  font-size: 18px;
  color: var(--color-text-muted);
  transition: all var(--transition);
}
.contato__socials a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
}

/* ══════════════════════════════════
   FOOTER
   ══════════════════════════════════ */
.footer {
  padding: 64px 0 0;
  background: #080808;
  border-top: 1px solid var(--color-border);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer__logo {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 16px;
}
.footer__logo-rm { font-size: 22px; font-weight: 800; color: var(--color-accent); letter-spacing: 2px; }
.footer__logo-sub { font-size: 9px; font-weight: 400; letter-spacing: 3px; text-transform: uppercase; color: var(--color-text-muted); }
.footer__brand p {
  font-size: 13px;
  font-weight: 300;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 320px;
}
.footer__col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--color-text);
}
.footer__col a {
  display: block;
  font-size: 13px;
  font-weight: 300;
  color: var(--color-text-muted);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--color-accent); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-top: 1px solid var(--color-border);
}
.footer__bottom p {
  font-size: 12px;
  font-weight: 300;
  color: var(--color-text-dim);
}
.footer__socials { display: flex; gap: 16px; }
.footer__socials a {
  font-size: 16px;
  color: var(--color-text-dim);
  transition: color var(--transition);
}
.footer__socials a:hover { color: var(--color-accent); }

/* ══════════════════════════════════
   WHATSAPP FLOAT
   ══════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  border-radius: 50%;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
  transition: all var(--transition);
  animation: whatsappPulse 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, .5);
}
@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, .4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, .6); }
}

/* ══════════════════════════════════
   LOGO IMG
   ══════════════════════════════════ */
.nav__logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}
.footer__logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
}

/* ══════════════════════════════════
   MARQUEE LOGOS
   ══════════════════════════════════ */
.marquee__logo {
  height: 28px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(.5);
  opacity: .6;
  transition: all var(--transition);
  flex-shrink: 0;
}
.marquee__logo:hover {
  filter: brightness(0) invert(.85);
  opacity: 1;
}

/* ══════════════════════════════════
   EQUIPMENT CARD IMAGES
   ══════════════════════════════════ */
.equipamentos__card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center 30%;
  opacity: .18;
  transition: opacity var(--transition);
  mix-blend-mode: luminosity;
  padding: 16px;
}
.equipamentos__card:hover .equipamentos__card-img {
  opacity: .3;
  mix-blend-mode: normal;
}
.equipamentos__card--featured .equipamentos__card-img {
  object-fit: cover;
  object-position: center;
  padding: 0;
  opacity: .25;
}
.equipamentos__card--featured:hover .equipamentos__card-img {
  opacity: .4;
}

/* ══════════════════════════════════
   PARTNER BRANDS LOGOS (depoimentos)
   ══════════════════════════════════ */
.depoimentos__brands-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.depoimentos__brands-logos img {
  height: 24px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(.45);
  opacity: .6;
  transition: all var(--transition);
}
.depoimentos__brands-logos img:hover {
  filter: brightness(0) invert(.8);
  opacity: 1;
}

/* ══════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════ */
.anim-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s ease, transform .6s ease;
}
.anim-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════ */
@media (max-width: 1024px) {
  .equipamentos__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .filiais__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav__menu,
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, .98);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 0;
    border-bottom: 1px solid var(--color-border);
  }
  .nav__menu.open .nav__link {
    padding: 14px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 14px;
  }
  .nav__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
  .nav__toggle.active span:nth-child(2) { opacity: 0; }
  .nav__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

  .hero__container { padding: 100px 24px 60px; }
  .hero__stats { flex-wrap: wrap; gap: 20px; }
  .hero__stat-divider { display: none; }

  .servicos__grid { grid-template-columns: 1fr; }
  .equipamentos__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .equipamentos__card--featured {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 2/1;
  }
  .processo__grid { grid-template-columns: repeat(2, 1fr); }
  .sobre__grid { grid-template-columns: 1fr; gap: 40px; }
  .depoimentos__grid { grid-template-columns: 1fr; }
  .filiais__grid { grid-template-columns: repeat(2, 1fr); }
  .faq__grid { grid-template-columns: 1fr; gap: 40px; }
  .contato__grid { grid-template-columns: 1fr; }
  .contato__form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 480px) {
  .equipamentos__grid { grid-template-columns: 1fr; }
  .equipamentos__card--featured { grid-column: span 1; aspect-ratio: 4/3; }
  .equipamentos__card { aspect-ratio: 4/3; }
  .processo__grid { grid-template-columns: 1fr; }
  .filiais__grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
}
