/* ========================================================================
   DESLOK LOCAÇÕES — modern industrial B2B
   Paleta: Laranja-construção (#FF6B1A) + Carvão (#0F172A) + Cinza claro
   Fonte: Space Grotesk (display) + Inter (body)
   ======================================================================== */

:root {
  --orange:        #FF6B1A;
  --orange-dark:   #E5530A;
  --orange-soft:   #FFF1E6;
  --ink:           #0F172A;
  --ink-2:         #1E293B;
  --ink-3:         #334155;
  --slate:         #64748B;
  --slate-2:       #94A3B8;
  --slate-3:       #CBD5E1;
  --slate-4:       #E2E8F0;
  --bg:            #FAFAFA;
  --bg-alt:        #F1F5F9;
  --white:         #fff;
  --shadow-sm:     0 1px 2px rgba(15, 23, 42, .06), 0 2px 4px -2px rgba(15, 23, 42, .05);
  --shadow-md:     0 4px 12px -2px rgba(15, 23, 42, .08), 0 8px 24px -8px rgba(15, 23, 42, .12);
  --shadow-lg:     0 12px 28px -8px rgba(15, 23, 42, .16), 0 20px 48px -12px rgba(15, 23, 42, .18);
  --shadow-orange: 0 8px 22px -8px rgba(255, 107, 26, .55);
  --radius-sm:     8px;
  --radius:        12px;
  --radius-lg:     20px;
  --container:     1200px;
  --font-display:  'Space Grotesk', 'Inter', system-ui, sans-serif;
  --font-body:     'Inter', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-3);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink); font-weight: 700; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); line-height: 1.05; font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.75rem); line-height: 1.15; }
h3 { font-size: 1.25rem; line-height: 1.3; }
h4 { font-size: 1rem; }
p  { margin: 0 0 1em; }

a { color: var(--orange-dark); text-decoration: none; }
a:hover { color: var(--orange); }

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.hide-sm { display: none; }
@media (min-width: 768px) { .hide-sm { display: inline; } }

/* ============ Botões ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .7rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all .15s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary { background: var(--orange); color: var(--white); box-shadow: var(--shadow-orange); }
.btn-primary:hover { background: var(--orange-dark); color: var(--white); transform: translateY(-1px); box-shadow: 0 12px 30px -6px rgba(255, 107, 26, .65); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--white); }
.btn-light { background: var(--white); color: var(--ink); }
.btn-light:hover { background: var(--bg-alt); color: var(--ink); }
.btn-lg { padding: .9rem 1.6rem; font-size: 1.025rem; border-radius: 10px; }

/* ============ TopBar ============ */
.topbar {
  background: var(--ink);
  color: rgba(255, 255, 255, .8);
  font-size: .82rem;
  padding: .6rem 0;
}
.topbar-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.topbar-info { display: flex; gap: 1rem; align-items: center; }
.topbar-tag {
  color: var(--orange);
  font-weight: 600;
}

/* ============ Header ============ */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--slate-4);
  position: sticky;
  top: 0;
  z-index: 50;
  transition: box-shadow .2s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 78px;
}
.logo { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.logo-mark { display: grid; place-items: center; }
.logo-text { line-height: 1; font-family: var(--font-display); }
.logo-text strong { display: block; font-size: 1.35rem; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.logo-text span { display: block; font-size: .68rem; color: var(--orange); text-transform: uppercase; letter-spacing: .15em; font-weight: 600; margin-top: 2px; }

.main-nav { display: none; gap: 2rem; margin-left: auto; }
@media (min-width: 1024px) { .main-nav { display: flex; } }
.main-nav a {
  color: var(--ink-3);
  font-weight: 500;
  font-size: .95rem;
  position: relative;
}
.main-nav a:hover { color: var(--orange); }
.main-nav a::after {
  content: ''; position: absolute; left: 0; bottom: -22px;
  width: 0; height: 3px; background: var(--orange);
  transition: width .2s ease;
}
.main-nav a:hover::after { width: 100%; }
.header-cta { display: none; }
@media (min-width: 768px) { .header-cta { display: inline-flex; } }
.nav-toggle {
  display: grid; gap: 5px;
  background: none; border: 0; padding: .5rem;
  margin-left: auto; cursor: pointer;
}
.nav-toggle span {
  display: block; width: 22px; height: 2.5px; background: var(--ink); border-radius: 4px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
@media (min-width: 1024px) { .nav-toggle { display: none; } }

/* Drawer mobile */
@media (max-width: 1023px) {
  .main-nav {
    position: absolute; top: 78px; right: 0; left: 0;
    background: var(--white); border-bottom: 1px solid var(--slate-4);
    flex-direction: column; padding: 1rem 1.5rem;
    box-shadow: var(--shadow-md);
  }
  .main-nav.open { display: flex; }
  .main-nav a::after { display: none; }
  .main-nav a { padding: .7rem 0; border-bottom: 1px solid var(--slate-4); }
}

/* ============ Hero ============ */
.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(3rem, 8vw, 5rem);
  overflow: hidden;
  background: var(--white);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 60% at 85% 15%, rgba(255, 107, 26, .12) 0%, transparent 60%),
    radial-gradient(45% 50% at 15% 90%, rgba(15, 23, 42, .07) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--white) 100%);
  z-index: 0;
}
.hero::before {
  content: '';
  position: absolute; top: 0; bottom: 0; left: 0;
  width: 5px; background: var(--orange);
  z-index: 1;
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center;
}
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1.1fr 1fr; gap: 5rem; } }

.hero-pill {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .5rem 1rem;
  background: var(--orange-soft); color: var(--orange-dark);
  border-radius: 999px; font-size: .82rem; font-weight: 600;
  margin-bottom: 1.5rem;
}
.hero h1 em { font-style: normal; color: var(--orange); }
.hero-accent {
  background: linear-gradient(180deg, transparent 60%, var(--orange-soft) 60%);
  padding: 0 .2em;
}
.hero-lead { font-size: 1.15rem; color: var(--ink-3); margin: 1.5rem 0 2rem; max-width: 520px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }

.hero-trust {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  padding-top: 2rem; border-top: 1px solid var(--slate-4);
}
.trust-item strong {
  display: block; font-family: var(--font-display); font-size: 1.7rem;
  font-weight: 800; color: var(--ink); line-height: 1;
}
.trust-item span { font-size: .82rem; color: var(--slate); display: block; margin-top: .35rem; }

/* Hero visual cards */
.hero-visual { position: relative; min-height: 380px; }
.hero-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 1.5rem; box-shadow: var(--shadow-lg);
}
.hero-card-main {
  position: relative; padding: 2rem;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  color: var(--white);
}
.hero-card-tag {
  font-size: .68rem; color: var(--orange);
  text-transform: uppercase; letter-spacing: .15em; font-weight: 700;
}
.hero-card-title {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 700;
  margin-top: .5rem; line-height: 1.2;
}
.hero-card-spec {
  font-family: var(--font-display); font-size: 2.25rem; font-weight: 800;
  color: var(--orange); margin-top: .5rem;
}
.hero-card-bar {
  margin: 1.5rem 0;
  height: 6px; background: rgba(255, 255, 255, .08); border-radius: 999px; overflow: hidden;
}
.hero-card-bar span {
  display: block; width: 92%; height: 100%; background: var(--orange);
  border-radius: 999px;
}
.hero-card-stats {
  display: flex; gap: .5rem; font-size: .82rem; color: rgba(255, 255, 255, .8);
}
.hero-card-side {
  position: absolute; display: flex; align-items: center; gap: .9rem;
  padding: 1rem 1.25rem; min-width: 180px;
  background: var(--white); animation: floatY 4s ease-in-out infinite;
}
.hero-card-side strong { display: block; font-size: .95rem; color: var(--ink); }
.hero-card-side small { font-size: .8rem; color: var(--slate); }
.hero-card-side .dot { width: 10px; height: 10px; background: #10B981; border-radius: 999px; box-shadow: 0 0 0 4px rgba(16, 185, 129, .2); }
.hero-card-side .dot-amber { background: #F59E0B; box-shadow: 0 0 0 4px rgba(245, 158, 11, .2); }
.hero-card-side-1 { top: 1rem; right: -1rem; animation-delay: -1s; }
.hero-card-side-2 { bottom: 1rem; left: -1rem; animation-delay: -2s; }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

@media (max-width: 767px) {
  .hero-trust { grid-template-columns: 1fr; gap: 1rem; }
  .trust-item { display: flex; gap: 1rem; align-items: baseline; }
  .trust-item span { margin-top: 0; }
  .hero-card-side-1, .hero-card-side-2 { position: relative; right: auto; left: auto; top: auto; bottom: auto; margin-top: 1rem; }
}

/* ============ Industries ============ */
.industries {
  padding: 3rem 0;
  background: var(--white);
  border-top: 1px solid var(--slate-4);
  border-bottom: 1px solid var(--slate-4);
}
.industries-label {
  text-align: center; color: var(--slate);
  text-transform: uppercase; letter-spacing: .18em; font-size: .78rem;
  font-weight: 600; margin-bottom: 1.5rem;
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 640px) { .industries-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .industries-grid { grid-template-columns: repeat(6, 1fr); } }
.industry {
  display: flex; flex-direction: column; align-items: center; gap: .75rem;
  padding: 1rem; color: var(--ink-2); font-weight: 600; font-size: .92rem;
  text-align: center;
}
.industry svg { opacity: .88; transition: transform .2s ease; }
.industry:hover svg { transform: scale(1.06); }

/* ============ Sections genéricas ============ */
.section { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.section-soft { background: var(--bg-alt); }
.section-dark {
  background: var(--ink);
  color: rgba(255, 255, 255, .85);
}
.section-dark h2 { color: var(--white); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 3.5rem; }
.section-head-light h2 { color: var(--white); }
.section-head .eyebrow {
  display: inline-block;
  color: var(--orange); text-transform: uppercase; letter-spacing: .15em;
  font-size: .78rem; font-weight: 700; margin-bottom: 1rem;
}
.section-head p { color: var(--slate); margin-top: 1rem; font-size: 1.05rem; }
.section-head-light p { color: rgba(255, 255, 255, .65); }
.eyebrow-light { color: var(--orange) !important; }
.section-foot { text-align: center; margin-top: 2.5rem; color: var(--slate); }

/* ============ Equipamentos ============ */
.equip-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .equip-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .equip-grid { grid-template-columns: repeat(3, 1fr); } }
.equip-card {
  background: var(--white);
  border: 1px solid var(--slate-4);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  position: relative;
  display: flex; flex-direction: column;
}
.equip-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  box-shadow: var(--shadow-lg);
}
.equip-featured {
  background: linear-gradient(180deg, var(--orange-soft) 0%, var(--white) 60%);
  border-color: var(--orange);
}
.equip-tag {
  display: inline-block; padding: .25rem .75rem;
  background: var(--orange); color: var(--white);
  font-size: .68rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; border-radius: 999px;
  align-self: flex-start; margin-bottom: 1rem;
}
.equip-icon { width: 56px; height: 56px; margin-bottom: 1rem; }
.equip-card h3 { font-size: 1.2rem; margin: 0 0 .5rem; }
.equip-spec { color: var(--orange-dark); font-weight: 600; font-size: .95rem; margin-bottom: 1rem; }
.equip-card ul { list-style: none; padding: 0; margin: 0 0 1.5rem; flex: 1; }
.equip-card li {
  padding: .35rem 0 .35rem 1.5rem; position: relative;
  font-size: .92rem; color: var(--ink-3); line-height: 1.5;
}
.equip-card li::before {
  content: ''; position: absolute; left: 0; top: .65em;
  width: 6px; height: 6px; background: var(--orange); border-radius: 999px;
}
.equip-cta {
  color: var(--ink); font-weight: 700; text-decoration: none;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 2px; align-self: flex-start;
  transition: gap .2s ease, color .2s ease;
}
.equip-cta:hover { color: var(--orange); }

/* ============ Diferenciais (section-dark) ============ */
.diff-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .diff-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .diff-grid { grid-template-columns: repeat(4, 1fr); } }
.diff-card {
  padding: 2.25rem 1.75rem;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius);
  transition: background .2s ease, transform .2s ease;
}
.diff-card:hover { background: rgba(255, 107, 26, .08); transform: translateY(-4px); }
.diff-num {
  font-family: var(--font-display); font-size: 2.5rem; font-weight: 800;
  color: var(--orange); line-height: 1; margin-bottom: 1.25rem;
}
.diff-card h3 { color: var(--white); margin-bottom: .75rem; font-size: 1.1rem; }
.diff-card p { color: rgba(255, 255, 255, .7); font-size: .95rem; margin: 0; }

/* ============ Como funciona ============ */
.steps {
  display: grid; gap: 2rem; align-items: stretch;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .steps { grid-template-columns: 1fr auto 1fr auto 1fr; gap: 1.5rem; align-items: center; }
}
.step {
  background: var(--white);
  border: 1px solid var(--slate-4);
  border-radius: var(--radius);
  padding: 2.25rem 1.75rem;
  text-align: center;
}
.step-num {
  width: 56px; height: 56px; border-radius: 999px;
  background: var(--orange); color: var(--white);
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 800;
  margin: 0 auto 1.25rem;
  box-shadow: var(--shadow-orange);
}
.step h3 { margin-bottom: .75rem; }
.step p { color: var(--slate); margin: 0; font-size: .95rem; }
.step-conn {
  display: none; align-items: center; justify-content: center;
  color: var(--orange); font-size: 2rem; font-weight: 700;
}
@media (min-width: 1024px) { .step-conn { display: flex; } }

/* ============ Sobre ============ */
.about-grid {
  display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center;
}
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1.1fr 1fr; gap: 5rem; } }
.about-copy .eyebrow {
  display: inline-block; color: var(--orange);
  text-transform: uppercase; letter-spacing: .15em;
  font-size: .78rem; font-weight: 700; margin-bottom: 1rem;
}
.about-copy h2 { margin-bottom: 1.5rem; }
.about-copy p { font-size: 1.05rem; color: var(--ink-3); }
.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 2.5rem;
  padding-top: 2rem; border-top: 1px solid var(--slate-3);
}
.about-stats strong {
  display: block; font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 800; color: var(--ink);
  line-height: 1;
}
.about-stats span {
  display: block; margin-top: .35rem;
  font-size: .82rem; color: var(--slate);
}

.about-visual {
  position: relative; min-height: 360px;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-stripe {
  position: absolute; background: var(--orange);
}
.about-stripe-1 { top: 20%; left: -8%; width: 60%; height: 4px; }
.about-stripe-2 { bottom: 20%; right: -10%; width: 75%; height: 4px; }
.about-badge {
  position: absolute; bottom: 2rem; left: 2rem; right: 2rem;
  background: var(--white); padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.about-badge strong { display: block; color: var(--ink); font-size: 1.05rem; }
.about-badge span { display: block; margin-top: .25rem; font-size: .85rem; color: var(--slate); }

/* ============ CTA ============ */
.section-cta {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 60%, #2D1B0E 100%);
  color: rgba(255, 255, 255, .85);
}
.cta-grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 1024px) { .cta-grid { grid-template-columns: 1.2fr 1fr; gap: 4rem; } }
.cta-copy .eyebrow {
  display: inline-block; color: var(--orange);
  text-transform: uppercase; letter-spacing: .15em;
  font-size: .78rem; font-weight: 700; margin-bottom: 1rem;
}
.cta-copy h2 { color: var(--white); margin-bottom: 1rem; }
.cta-copy p { color: rgba(255, 255, 255, .7); font-size: 1.05rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem; }

.cta-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.cta-card h3 { color: var(--white); margin-bottom: 1.25rem; }
.cta-contact { list-style: none; padding: 0; margin: 0; }
.cta-contact li {
  display: flex; justify-content: space-between; align-items: center;
  padding: .9rem 0; border-bottom: 1px solid rgba(255, 255, 255, .08);
  font-size: .95rem;
}
.cta-contact li:last-child { border-bottom: none; }
.cta-contact li span { color: rgba(255, 255, 255, .6); }
.cta-contact li a { color: var(--white); font-weight: 600; }
.cta-contact li a:hover { color: var(--orange); }

/* ============ Footer ============ */
.site-footer {
  background: #050B17;
  color: rgba(255, 255, 255, .65);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand .logo-text strong { color: var(--white); }
.footer-brand p { font-size: .92rem; color: rgba(255, 255, 255, .6); max-width: 360px; margin: 0; }

.footer-col h4 {
  color: var(--white);
  text-transform: uppercase; letter-spacing: .12em;
  font-size: .82rem; margin: 0 0 1rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { padding: .35rem 0; }
.footer-col a { color: rgba(255, 255, 255, .65); font-size: .92rem; }
.footer-col a:hover { color: var(--orange); }
.footer-contact li { display: flex; gap: .5rem; align-items: center; }

.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  padding: 1.75rem 0;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: .82rem;
  color: rgba(255, 255, 255, .5);
}
.footer-bottom a { color: var(--orange); }

/* ============ Floating WhatsApp ============ */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 60px; height: 60px; border-radius: 999px;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px -6px rgba(37, 211, 102, .55);
  transition: transform .15s ease;
}
.wa-float:hover { transform: scale(1.08); color: var(--white); }
.wa-float::before {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 999px;
  background: rgba(37, 211, 102, .4);
  z-index: -1;
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0%   { transform: scale(1);   opacity: .7; }
  100% { transform: scale(1.4); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-card-side, .wa-float::before { animation: none; }
}
