/* =============================================
   FACILIT – Plataformas de Elevação
   Main Stylesheet
   Inspired by DeWalt: Bold, Yellow/Black, Strong
   ============================================= */

/* ---- CSS Variables ---- */
:root {
  --yellow:       #FEBD17;
  --yellow-dark:  #E6A800;
  --yellow-light: #FFF3C0;
  --black:        #1A1A1A;
  --black-soft:   #2C2C2C;
  --dark-gray:    #3D3D3D;
  --mid-gray:     #666666;
  --light-gray:   #F5F5F5;
  --white:        #FFFFFF;
  --green-wa:     #25D366;
  --green-wa-dark:#1EB956;
  --red-dore:     #E74C3C;
  --font-head:    'Oswald', sans-serif;
  --font-body:    'Open Sans', sans-serif;
  --radius:       8px;
  --radius-lg:    16px;
  --shadow:       0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:    0 8px 40px rgba(0,0,0,0.18);
  --transition:   all 0.3s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--black);
  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 (global – usado em todas as seções) ---- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* =========================================
   BUTTONS
========================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 16px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
}
.btn-primary:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(254,189,23,0.5);
}
.btn-primary.large { font-size: 1.15rem; padding: 20px 40px; }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-wa);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 16px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
}
.btn-whatsapp:hover {
  background: var(--green-wa-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}
.btn-whatsapp.large { font-size: 1.15rem; padding: 20px 40px; }
.btn-whatsapp i { font-size: 1.3em; }

/* =========================================
   HEADER
========================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #1A1A1A;
  border-bottom: 3px solid var(--yellow);
  box-shadow: 0 2px 20px rgba(0,0,0,0.55);
}

.header-inner {
  /* Herda do .container – mesmos valores para alinhar com o corpo */
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* ---- Logo ---- */
.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-img {
  height: 78px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
  display: block;
  image-rendering: -webkit-optimize-contrast;
}

/* ---- Nav ---- */
.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 0;
  position: relative;
  transition: color 0.22s;
  white-space: nowrap;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: width 0.25s ease;
  border-radius: 2px;
}
.main-nav a:hover { color: var(--yellow); }
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }
.main-nav a.active { color: var(--yellow); }

/* ---- WhatsApp Button ---- */
.btn-whatsapp-header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-wa);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 11px 22px;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
  border: 2px solid transparent;
}
.btn-whatsapp-header i {
  font-size: 1.15rem;
}
.btn-whatsapp-header:hover {
  background: var(--green-wa-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37,211,102,0.4);
}

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

/* ---- Mobile Nav ---- */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: #222222;
  /* Mesmo padding lateral do header-inner para alinhar os links */
  padding: 12px 32px 20px;
  gap: 0;
  border-top: 1px solid rgba(254,189,23,0.2);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-transform: uppercase;
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-nav a:hover { color: var(--yellow); padding-left: 6px; }
.mobile-nav a:last-child { border-bottom: none; }
.btn-whatsapp-mobile {
  background: var(--green-wa) !important;
  color: var(--white) !important;
  border-radius: var(--radius) !important;
  padding: 13px 16px !important;
  text-align: center;
  margin-top: 12px;
  border-bottom: none !important;
  justify-content: center;
  display: flex !important;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem !important;
}

/* ---- Footer logo ---- */
.footer-logo-img {
  height: 48px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  margin-bottom: 16px;
  /* brightness filter to make it pop on dark bg */
  filter: brightness(1.05);
}

/* =========================================
   HERO SECTION
========================================= */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--black) 0%, #2a2a2a 60%, #1a1a1a 100%);
  padding-top: 0;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/scissor-lift2.jpg') center/cover no-repeat;
  opacity: 0.08;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26,26,26,0.97) 0%, rgba(26,26,26,0.6) 100%);
}
/* Hero inner — herde padding do .container, só define grid e altura */
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 60px;
}

/* Hero Content */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(254,189,23,0.15);
  border: 1px solid var(--yellow);
  color: var(--yellow);
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.hero-headline .highlight {
  color: var(--yellow);
  position: relative;
}
.hero-subheadline {
  color: #cccccc;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 540px;
}
.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 1rem;
}
.hero-bullets li i { color: var(--yellow); font-size: 1.1rem; }
.hero-cta-mobile {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Hero Form Card */
.hero-form-wrap { display: flex; align-items: flex-start; justify-content: flex-end; }
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  border-top: 5px solid var(--yellow);
}
.form-title {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}
.form-title i { color: var(--yellow); }
.form-sub { color: var(--mid-gray); font-size: 0.9rem; margin-bottom: 20px; }
.form-sub strong { color: var(--yellow-dark); }

.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--black);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus { border-color: var(--yellow); }
.form-group input.error,
.form-group select.error {
  border-color: var(--red-dore);
  background: rgba(231, 76, 60, 0.04);
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.12);
}

/* Inline field error message */
.field-error-msg {
  display: none;
  color: #e74c3c;
  font-size: 0.78rem;
  font-family: var(--font-body);
  margin-top: 5px;
  padding-left: 2px;
  font-weight: 500;
  line-height: 1.3;
}
.field-error-msg::before {
  content: '⚠ ';
  font-size: 0.75rem;
}

.btn-form {
  width: 100%;
  padding: 15px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}
.btn-form:hover {
  background: var(--yellow-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(254,189,23,0.4);
}
.btn-whatsapp-form {
  width: 100%;
  padding: 13px;
  background: var(--green-wa);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
}
.btn-whatsapp-form:hover {
  background: var(--green-wa-dark);
  transform: translateY(-1px);
}
.btn-whatsapp-form i { font-size: 1.2rem; }

/* Form Success */
.form-success {
  text-align: center;
  padding: 20px 0;
}
.form-success i {
  font-size: 3rem;
  color: var(--green-wa);
  margin-bottom: 12px;
}
.form-success h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.form-success p { color: var(--mid-gray); margin-bottom: 20px; }

/* Social Proof Bar */
.social-proof-bar {
  position: relative;
  z-index: 2;
  background: var(--yellow);
  padding: 20px 0;
  margin-top: 60px;
}
.spb-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.spb-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 32px;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.spb-item i { font-size: 1.3rem; }
.spb-divider { width: 1px; height: 30px; background: rgba(0,0,0,0.15); }

/* =========================================
   SECTION SHARED STYLES
========================================= */
section { padding: 80px 0; }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-tag.danger { background: rgba(231,76,60,0.12); color: var(--red-dore); border: 1px solid var(--red-dore); }
.section-tag.success { background: rgba(37,211,102,0.12); color: #0d9e4a; border: 1px solid #0d9e4a; }
.section-tag.primary { background: rgba(254,189,23,0.15); color: var(--yellow-dark); border: 1px solid var(--yellow-dark); }
.section-tag.white { background: rgba(255,255,255,0.15); color: var(--white); border: 1px solid rgba(255,255,255,0.4); }

.section-title {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-subtitle { color: var(--mid-gray); font-size: 1.05rem; max-width: 620px; margin: 0 auto; }

.section-header.light .section-title,
.section-header.light .section-subtitle { color: var(--white); }
.section-header.light .section-subtitle { color: rgba(255,255,255,0.75); }

/* =========================================
   SEÇÃO DORES
========================================= */
.section-dores { background: var(--light-gray); }
.dores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dore-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border-left: 4px solid var(--red-dore);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.dore-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.dore-icon {
  width: 52px;
  height: 52px;
  background: rgba(231,76,60,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--red-dore);
  font-size: 1.4rem;
}
.dore-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: var(--black);
}
.dore-card p { color: var(--mid-gray); font-size: 0.95rem; line-height: 1.6; }

/* =========================================
   SEÇÃO SOLUÇÃO
========================================= */
.section-solucao {
  background: linear-gradient(135deg, var(--black) 0%, var(--black-soft) 100%);
}
.section-solucao .section-title { color: var(--white); }
.section-solucao .section-subtitle { color: rgba(255,255,255,0.7); }

/* Comparison */
.comparison-block {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 60px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.comparison-card {
  flex: 1;
  padding: 36px 32px;
}
.comparison-card.old {
  background: #2a2a2a;
  border-right: none;
}
.comparison-card.new {
  background: linear-gradient(135deg, #1a3a1a, #0d2e0d);
  border-left: none;
}
.comparison-card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.comparison-card.old h3 { color: #ff6b6b; }
.comparison-card.old h3 i { color: #ff6b6b; }
.comparison-card.new h3 { color: var(--yellow); }
.comparison-card.new h3 i { color: #2ecc71; }
.comparison-card ul { display: flex; flex-direction: column; gap: 12px; }
.comparison-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.98rem;
  color: rgba(255,255,255,0.85);
}
.comparison-card.old li i { color: #ff6b6b; font-size: 0.9rem; }
.comparison-card.new li i { color: #2ecc71; font-size: 0.9rem; }
.comparison-card.new li strong { color: var(--yellow); }

.vs-badge {
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  width: 60px;
  min-width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: var(--transition);
}
.benefit-item:hover {
  background: rgba(254,189,23,0.08);
  border-color: rgba(254,189,23,0.3);
  transform: translateY(-4px);
}
.benefit-icon {
  width: 60px;
  height: 60px;
  background: rgba(254,189,23,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.6rem;
  color: var(--yellow);
}
.benefit-item h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.benefit-item p { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.6; }

/* =========================================
   SEÇÃO EQUIPAMENTOS
========================================= */
.section-equipamentos { background: var(--white); }
.equip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.equip-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 2px solid #e8e8e8;
  transition: var(--transition);
  position: relative;
}
.equip-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--yellow);
}
.equip-card.featured { border-color: var(--yellow); border-width: 3px; }

.equip-badge-top {
  position: absolute;
  top: 16px;
  right: -1px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 5;
  border-radius: 4px 0 0 4px;
}

.equip-img-wrap {
  position: relative;
  height: 320px;
  overflow: hidden;
  background: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
}
.equip-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  padding: 16px;
  transition: transform 0.5s ease;
}
.equip-card:hover .equip-img-wrap img { transform: scale(1.04); }
.equip-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.92));
  color: var(--yellow);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  padding: 32px 20px 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.equip-badge.articulada { color: var(--yellow); }

.equip-body {
  padding: 28px;
}
.equip-body h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 10px;
}
.equip-desc { color: var(--mid-gray); font-size: 0.95rem; margin-bottom: 20px; line-height: 1.6; }
.equip-body h4 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.equip-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.equip-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.93rem;
  color: var(--dark-gray);
}
.equip-list li i { color: var(--yellow-dark); font-size: 0.85rem; flex-shrink: 0; }

.equip-highlight {
  background: var(--light-gray);
  border-left: 4px solid var(--yellow);
  padding: 12px 16px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.9rem;
  color: var(--dark-gray);
  margin-bottom: 20px;
  line-height: 1.5;
}
.equip-highlight.gold {
  background: rgba(254,189,23,0.08);
  border-color: var(--yellow);
}
.equip-highlight i { color: var(--yellow-dark); margin-right: 4px; }

.btn-equip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--black);
  color: var(--yellow);
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: var(--radius);
  transition: var(--transition);
  letter-spacing: 0.5px;
  width: 100%;
  justify-content: center;
}
.btn-equip:hover {
  background: var(--yellow);
  color: var(--black);
  transform: translateY(-1px);
}
.btn-equip.gold {
  background: var(--yellow);
  color: var(--black);
}
.btn-equip.gold:hover {
  background: var(--yellow-dark);
  box-shadow: 0 4px 16px rgba(254,189,23,0.4);
}

/* =========================================
   SEÇÃO PROCESSO
========================================= */
.section-processo {
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
}
.processo-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  text-align: center;
  padding: 20px;
}
.step-number {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(254,189,23,0.2);
  line-height: 1;
  margin-bottom: 8px;
}
.step-icon {
  width: 64px;
  height: 64px;
  background: rgba(254,189,23,0.15);
  border: 2px solid rgba(254,189,23,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  color: var(--yellow);
  transition: var(--transition);
}
.step:hover .step-icon {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}
.step h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.step p { color: rgba(255,255,255,0.65); font-size: 0.88rem; line-height: 1.6; }
.step-arrow {
  display: flex;
  align-items: center;
  color: rgba(254,189,23,0.5);
  font-size: 1.5rem;
  padding-top: 48px;
}

/* =========================================
   SEÇÃO AUTORIDADE
========================================= */
.section-autoridade { background: var(--light-gray); }
.autoridade-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.autoridade-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-bottom: 4px solid transparent;
}
.autoridade-item:hover {
  transform: translateY(-4px);
  border-bottom-color: var(--yellow);
  box-shadow: var(--shadow-lg);
}
.aut-icon {
  width: 60px;
  height: 60px;
  background: var(--yellow-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  color: var(--yellow-dark);
}
.autoridade-item h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 10px;
}
.autoridade-item p { color: var(--mid-gray); font-size: 0.9rem; line-height: 1.6; }

/* Stats */
.stats-bar {
  background: var(--black);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item { padding: 10px; }
.stat-number {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
}
.stat-plus {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--yellow);
}
.stat-label {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
}

/* =========================================
   SEÇÃO CTA FINAL
========================================= */
.section-cta-final {
  position: relative;
  background: url('images/boom-lift.jpg') center/cover no-repeat fixed;
  padding: 100px 0;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.94) 0%, rgba(26,26,26,0.88) 100%);
}
.cta-inner {
  position: relative;
  z-index: 2;
}
.cta-content { text-align: center; }
.cta-urgency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(254,189,23,0.15);
  border: 1px solid var(--yellow);
  color: var(--yellow);
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 6px 20px;
  border-radius: 50px;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(254,189,23,0.4); }
  50% { box-shadow: 0 0 0 10px rgba(254,189,23,0); }
}
.cta-content h2 {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1.2;
}
.cta-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 36px;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.cta-note {
  color: rgba(255,255,255,0.5) !important;
  font-size: 0.85rem !important;
  margin-bottom: 0 !important;
}

/* =========================================
   SEÇÃO FAQ
========================================= */
.section-faq { background: var(--white); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 2px solid #e8e8e8;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--yellow); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}
.faq-question:hover { background: var(--light-gray); }
.faq-item.open .faq-question { background: rgba(254,189,23,0.06); }
.faq-question span {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--black);
  text-transform: uppercase;
}
.faq-question i {
  color: var(--yellow-dark);
  font-size: 0.9rem;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-answer.open {
  max-height: 300px;
  padding: 0 24px 22px;
}
.faq-answer p { color: var(--mid-gray); font-size: 0.95rem; line-height: 1.7; }

/* =========================================
   FOOTER
========================================= */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  font-size: 0.95rem;
}
.footer-social a:hover { background: var(--yellow); color: var(--black); }

.footer-links h4 {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links li a:hover { color: var(--yellow); }

.footer-contact h4 {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-contact p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact p i { color: var(--yellow); }
.btn-whatsapp-footer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-wa);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius);
  transition: var(--transition);
  text-transform: uppercase;
}
.btn-whatsapp-footer:hover { background: var(--green-wa-dark); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,0.45); font-size: 0.85rem; }
.footer-legal { display: flex; align-items: center; gap: 10px; }
.footer-legal a { color: rgba(255,255,255,0.45); font-size: 0.85rem; transition: color 0.2s; }
.footer-legal a:hover { color: var(--yellow); }
.footer-legal span { color: rgba(255,255,255,0.2); }

/* =========================================
   WHATSAPP FLOAT
========================================= */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background: var(--green-wa);
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: var(--transition);
  animation: floatPulse 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  background: var(--green-wa-dark);
  transform: scale(1.1);
}
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.8); }
}
.wf-tooltip {
  position: absolute;
  right: 70px;
  white-space: nowrap;
  background: var(--black);
  color: var(--white);
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.whatsapp-float:hover .wf-tooltip { opacity: 1; }

/* =========================================
   COOKIE BANNER
========================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: rgba(26,26,26,0.97);
  border-top: 3px solid var(--yellow);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  backdrop-filter: blur(8px);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-content {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}
.cookie-content i { color: var(--yellow); font-size: 1.5rem; flex-shrink: 0; }
.cookie-content p { color: rgba(255,255,255,0.8); font-size: 0.88rem; line-height: 1.5; }
.cookie-content a { color: var(--yellow); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; }
.btn-cookie-accept {
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 22px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
}
.btn-cookie-accept:hover { background: var(--yellow-dark); }
.btn-cookie-reject {
  background: transparent;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-head);
  font-size: 0.85rem;
  padding: 10px 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
}
.btn-cookie-reject:hover { border-color: rgba(255,255,255,0.4); color: rgba(255,255,255,0.7); }

/* =========================================
   MODAL
========================================= */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.75);
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.modal-overlay.show { display: flex; }
.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 640px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 36px;
  position: relative;
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--light-gray);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  color: var(--mid-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.modal-close:hover { background: var(--yellow); color: var(--black); }
.modal-box h2 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-right: 40px;
}
.modal-body h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--black);
  margin-top: 20px;
  margin-bottom: 8px;
}
.modal-body p {
  color: var(--mid-gray);
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 8px;
}
.modal-box .btn-primary { margin-top: 24px; width: 100%; justify-content: center; }

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1024px) {
  .header-inner { padding: 0 20px; }
  .container { padding: 0 20px; }
  .mobile-nav { padding: 12px 20px 20px; }
  .main-nav { gap: 22px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .equip-img-wrap { height: 280px; }
  .hero-headline { font-size: 2.2rem; }
  .hero-form-wrap { justify-content: center; }
  .form-card { max-width: 560px; }
  .hero-cta-mobile { display: flex; flex-direction: row; flex-wrap: wrap; }
  .dores-grid { grid-template-columns: repeat(2, 1fr); }
  .equip-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .autoridade-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .main-nav, .btn-whatsapp-header { display: none; }
  .hamburger { display: flex; }
  .logo-img { height: 60px; }
  .header-inner { padding: 0 16px; height: 76px; }
  .container { padding: 0 16px; }
  .mobile-nav { padding: 12px 16px 20px; }
  .hero-headline { font-size: 1.9rem; }
  .comparison-block { flex-direction: column; }
  .vs-badge { width: 100%; height: 44px; border-radius: 0; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .processo-steps { flex-direction: column; align-items: center; }
  .step { max-width: 300px; }
  .step-arrow { display: none; }
  .dores-grid { grid-template-columns: 1fr; }
  .autoridade-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); padding: 28px; }
  .spb-divider { display: none; }
  .spb-item { padding: 8px 16px; font-size: 0.85rem; }
  .cta-content h2 { font-size: 1.9rem; }
  .cta-actions { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section-title { font-size: 1.7rem; }
  section { padding: 60px 0; }
  .cookie-banner { flex-direction: column; }
}

@media (max-width: 480px) {
  .logo-img { height: 52px; }
  .container { padding: 0 14px; }
  .header-inner { padding: 0 14px; }
  .mobile-nav { padding: 10px 14px 18px; }
  .hero-headline { font-size: 1.6rem; }
  .hero-cta-mobile { flex-direction: column; }
  .benefits-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .btn-primary, .btn-whatsapp { font-size: 0.9rem; padding: 14px 22px; }
  .btn-primary.large, .btn-whatsapp.large { font-size: 0.95rem; padding: 16px 26px; }
  .comparison-card { padding: 24px 20px; }
  .form-card { padding: 24px 20px; }
  .modal-box { padding: 24px 20px; }
}
