/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
  --orange: #ff6800;
  --orange2: #ff8a2a;
  --black: #07090a;
  --dark: #101214;
  --soft: #f6f6f3;
  --text: #111;
  --muted: #626870;
  --white: #fff;
  --radius: 30px;
  --shadow: 0 28px 80px rgba(0,0,0,.22);
}

/* Custom premium scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: #080a0c;
}
::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 5px;
  border: 2px solid #080a0c;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--orange2);
}

/* ==========================================================================
   BASE STYLES
   ========================================================================== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  font-family: 'Outfit', Inter, system-ui, -apple-system, sans-serif;
  background: var(--soft);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.section-dark {
  background: #080a0c;
  color: #fff;
}

.section-light {
  background: linear-gradient(180deg, #fff, #f7f7f4);
  color: #111;
}

.center {
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 14px;
}

.eyebrow.orange {
  color: var(--orange);
}

h1, h2, h3, h4, p {
  margin-top: 0;
}

h1 {
  font-size: clamp(38px, 4.4vw, 64px);
  line-height: 1.05;
  letter-spacing: -.055em;
  margin-bottom: 24px;
  font-weight: 800;
}

h1 strong, h2 strong {
  color: var(--orange);
  font-style: normal;
}

h2 {
  font-size: clamp(30px, 3.7vw, 48px);
  letter-spacing: -.045em;
  line-height: 1.05;
  margin-bottom: 18px;
  font-weight: 800;
}

p {
  line-height: 1.65;
}

.lead {
  max-width: 840px;
  margin: 0 auto 38px;
  color: #535a61;
}

/* Helper width class */
.width-full {
  width: 100%;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 16px 28px;
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .02em;
  border: 1px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, border-color .25s ease;
  cursor: pointer;
  gap: 8px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: #fff;
  box-shadow: 0 16px 32px rgba(255, 104, 0, .28);
}

.btn-primary:hover {
  box-shadow: 0 20px 40px rgba(255, 104, 0, .42);
}

.btn-outline {
  border-color: rgba(255, 104, 0, .62);
  color: #fff;
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(12px);
}

.btn-outline:hover {
  background: rgba(255, 104, 0, .12);
  border-color: var(--orange);
}

.btn:hover {
  transform: translateY(-3px);
}

.whatsapp-btn svg {
  flex-shrink: 0;
}

/* ==========================================================================
   LOADER & ANIMATIONS
   ========================================================================== */
.loader {
  position: fixed;
  z-index: 999;
  inset: 0;
  display: grid;
  place-items: center;
  background: #050607;
}

.loader img {
  width: 210px;
}

.loader-line {
  width: 220px;
  height: 2px;
  background: rgba(255, 255, 255, .12);
  overflow: hidden;
  margin-top: 120px;
  position: absolute;
}

.loader-line span {
  display: block;
  height: 100%;
  width: 42%;
  background: var(--orange);
  animation: load 1s infinite ease-in-out;
}

@keyframes load {
  50% {
    transform: translateX(150%);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  height: 92px;
  background: rgba(7, 9, 10, .78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  transition: height .35s, background-color .35s;
  display: flex;
  align-items: center;
}

.header-container {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  height: 100%;
}

.site-header.scrolled {
  height: 76px;
  background: rgba(7, 9, 10, .92);
}

.brand img {
  width: 156px;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 34px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.nav a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width .3s ease;
}

.nav a:hover:after,
.nav a.active:after {
  width: 100%;
}

.nav a.active {
  color: var(--orange);
}

.header-cta {
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: #fff;
  border-radius: 14px;
  padding: 14px 22px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 24px rgba(255, 104, 0, .24);
  transition: transform .25s, box-shadow .25s;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 104, 0, .38);
}

.menu-toggle {
  display: none;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  padding: 92px 0 60px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.45) 40%, rgba(0, 0, 0, 0.1) 75%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('assets/hero-bg-sunset.jpg') center/cover;
  opacity: 1;
  transform: scale(1.05);
  z-index: 1;
}

.hero:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  background: linear-gradient(0deg, #080a0c, transparent);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .26;
}

.orb-a {
  width: 330px;
  height: 330px;
  background: var(--orange);
  right: 8%;
  top: 20%;
}

.orb-b {
  width: 220px;
  height: 220px;
  background: #fff;
  left: 5%;
  bottom: 18%;
  opacity: .07;
}

/* Lens Flare rules removed */

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}

.hero-copy {
  max-width: 580px;
}

.hero-copy h1 {
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.45), 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-copy p {
  max-width: 500px;
  color: #e0e3e7;
  margin-bottom: 28px;
  font-size: 16px;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55), 0 1px 3px rgba(0, 0, 0, 0.35);
}

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

.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 5;
  pointer-events: none;
  transition: opacity 0.3s;
}

.scroll-indicator i,
.scroll-indicator svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.5px;
  color: var(--orange);
  animation: bounceScroll 2s infinite;
}

@keyframes bounceScroll {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-6px);
  }
  60% {
    transform: translateY(-3px);
  }
}

/* Hero Vector Elements */
.hero-vectors {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.vector-item {
  position: absolute;
  pointer-events: none;
  opacity: 0.85;
  filter: drop-shadow(0 8px 24px rgba(255, 104, 0, 0.15));
}

.v-horiz-1 {
  width: 400px;
  height: 40px;
  right: 5%;
  top: 25%;
}

.v-horiz-2 {
  width: 500px;
  height: 30px;
  left: 5%;
  top: 38%;
}

.v-horiz-3 {
  width: 300px;
  height: 20px;
  left: 20%;
  bottom: 22%;
}

.v-streak-1 {
  width: 450px;
  height: 20px;
  left: -500px;
  top: 35%;
}

.v-streak-2 {
  width: 350px;
  height: 20px;
  right: -400px;
  top: 60%;
}

.v-streak-3 {
  width: 500px;
  height: 20px;
  left: -600px;
  top: 48%;
}

.v-fluid-waves {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0.8;
}

.v-fluid-blob-1 {
  width: 380px;
  height: 380px;
  left: -120px;
  top: 15%;
  filter: blur(40px);
  opacity: 0.55;
}

.v-fluid-blob-2 {
  width: 320px;
  height: 320px;
  right: -80px;
  bottom: 12%;
  filter: blur(50px);
  opacity: 0.45;
}

/* Floating contact icons */
.float-actions {
  position: fixed;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: grid;
  gap: 14px;
}

.float-actions a {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(16, 18, 20, .68);
  border: 1px solid rgba(255, 255, 255, .22);
  backdrop-filter: blur(12px);
  transition: transform .25s ease, background-color .25s ease, border-color .25s ease;
}

.float-actions a:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.1) translateY(-2px);
}

.float-actions svg, .float-actions i, .float-actions a svg {
  width: 20px !important;
  height: 20px !important;
  display: block !important;
}

.diferenciais-section {
  padding: 60px 0;
  background: #080a0c;
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.quick-card {
  position: relative;
  z-index: 3;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, .14);
  background: linear-gradient(180deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .03));
  backdrop-filter: blur(18px);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
}

.quick-card article {
  padding: 34px 24px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .08);
  transition: background-color 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
              transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
              box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  z-index: 1;
}

.quick-card article:hover {
  background: rgba(255, 104, 0, 0.04);
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(255, 104, 0, 0.12), inset 0 0 15px rgba(255, 104, 0, 0.08);
  z-index: 2;
}

.quick-card article:last-child {
  border-right: 0;
}

.quick-card svg, .quick-card [data-lucide] {
  color: var(--orange);
  width: 36px;
  height: 36px;
  stroke-width: 1.5;
  margin: 0 auto;
}

.quick-card h3 {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 16px 0 8px;
  color: #fff;
  letter-spacing: 0.04em;
}

.quick-card p {
  font-size: 13px;
  color: #c6cbd0;
  margin: 0;
  line-height: 1.5;
}

/* ==========================================================================
   COMPANY SECTION ("A Empresa" - Modular Clean)
   ========================================================================== */
.company {
  padding: 100px 0;
  background: #f7f7f4;
  position: relative;
  overflow: hidden;
}

.company > * {
  position: relative;
  z-index: 1;
}

/* Background marquee text for Company section */
.company-bg-text-marquee {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  opacity: 1;
}

.company-bg-text-marquee .marquee-row {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
}

.company-bg-text-marquee .marquee-track {
  display: inline-flex;
  white-space: nowrap;
  width: max-content;
}

.company-bg-text-marquee .track-left {
  animation: company-marquee-left 60s linear infinite;
}

.company-bg-text-marquee .track-right {
  animation: company-marquee-right 60s linear infinite;
}

.company-bg-text-marquee span {
  font-size: 110px;
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.035); /* solid low-opacity print style watermark */
  letter-spacing: 0.02em;
  padding-right: 40px;
  user-select: none;
}

@keyframes company-marquee-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes company-marquee-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.company-card-wrapper {
  background: #fff;
  border-radius: 32px;
  padding: 55px;
  border: 1px solid rgba(255, 104, 0, 0.12);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.03), 0 10px 30px rgba(255, 104, 0, 0.02);
}

/* Values Tabs Component Styles */
.values-tabs {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  border-bottom: 1.5px solid rgba(255, 104, 0, 0.15);
  padding-bottom: 8px;
}

.value-tab-btn {
  background: none;
  border: none;
  color: var(--muted);
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  transition: color 0.3s ease;
}

.value-tab-btn svg, .value-tab-btn [data-lucide] {
  width: 15px !important;
  height: 15px !important;
  color: inherit;
}

.value-tab-btn:after {
  content: "";
  position: absolute;
  bottom: -9.5px;
  left: 0;
  right: 0;
  height: 2.5px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.value-tab-btn.active {
  color: var(--orange);
}

.value-tab-btn.active:after {
  transform: scaleX(1);
}

.values-content-container {
  margin-top: 20px;
  position: relative;
  min-height: 80px;
}

.value-content-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s / transform 0.35s ease;
  transform: translateY(8px);
}

.value-content-item.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.value-content-item p {
  color: #4b5563;
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
}

.company-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 50px;
  align-items: center;
}

.company-text p {
  color: #4b5563;
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 30px;
}

.values-row {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  margin-top: 34px;
}

.value-item {
  flex: 1;
}

.value-item svg, .value-item [data-lucide] {
  color: var(--orange);
  width: 30px !important;
  height: 30px !important;
  stroke-width: 1.5;
  margin-bottom: 12px;
}

.value-item h3 {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 8px;
  letter-spacing: 0.05em;
  color: #111315;
}

.value-item p {
  font-size: 12.5px;
  color: #6b7280;
  line-height: 1.55;
  margin: 0;
}

.value-divider {
  width: 1px;
  background: #e5e7eb;
  align-self: stretch;
}

.company-image-side {
  padding-right: 15px;
  padding-bottom: 15px;
}

.image-panel {
  position: relative;
  border-radius: 28px;
  overflow: visible;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 104, 0, .14);
}

.image-panel img {
  height: 480px;
  width: 100%;
  object-fit: cover;
  border-radius: 28px;
}

.badge-20 {
  position: absolute;
  right: -15px;
  bottom: -15px;
  background: #0d0f11;
  color: #fff;
  border: 1.5px solid var(--orange);
  border-radius: 20px;
  padding: 20px 24px;
  box-shadow: 0 15px 35px rgba(255, 104, 0, 0.22);
  backdrop-filter: blur(8px);
  max-width: 250px;
  z-index: 5;
  overflow: visible;
}

.badge-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  margin-right: 6px;
  vertical-align: middle;
}

.badge-play svg {
  width: 10px;
  height: 10px;
  fill: currentColor;
  margin-left: 1.5px;
}

.badge-20 strong {
  color: var(--orange);
  font-size: 26px;
  vertical-align: middle;
  font-weight: 900;
}

.badge-20 span {
  display: block;
  font-size: 13px;
  color: #d1d5db;
  margin-top: 8px;
  line-height: 1.4;
}

/* ==========================================================================
   SERVICES SECTION ("Nossos Serviços" - Grid Layout)
   ========================================================================== */
.services {
  padding: 110px 0 90px;
}

.services.section-dark-road {
  position: relative;
  background-color: #050607;
  color: #fff;
  overflow: hidden;
}

.services-bg {
  position: absolute;
  inset: -12% 0;
  background: url('bg-site.jpg') center/cover no-repeat;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

.services.section-dark-road > * {
  position: relative;
  z-index: 1;
}

.services.section-dark-road h2 {
  color: #fff;
}

.services-slider-outer {
  position: relative;
  margin-top: 50px;
}

.services-slider-container {
  width: 100%;
  overflow: hidden;
  border-radius: 38px;
}

.services-slider-track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}

.service-card {
  flex: 0 0 calc(33.333% - 20px);
  background: #0d0f11;
  border: 2px solid #ff6800;
  border-radius: 38px;
  padding: 35px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 25px rgba(255, 104, 0, 0.28), inset 0 0 15px rgba(255, 104, 0, 0.05);
  transition: border-color 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
              box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
              transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  border-color: rgba(255, 104, 0, 0.95);
  box-shadow: 0 0 35px rgba(255, 104, 0, 0.42), inset 0 0 20px rgba(255, 104, 0, 0.1);
  transform: translateY(-5px);
}

/* Glass shine gradient sweep */
.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0) 10%,
    rgba(255, 255, 255, 0.25) 50%,
    rgba(255, 255, 255, 0) 90%,
    transparent 100%
  );
  transform: skewX(-25deg);
  pointer-events: none;
  z-index: 10;
}

.service-card:hover::after {
  animation: shine-sweep 1.1s cubic-bezier(0.2, 0.6, 0.4, 1);
}

@keyframes shine-sweep {
  0% {
    left: -150%;
  }
  100% {
    left: 150%;
  }
}

.card-bg-decor {
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 120px;
  pointer-events: none;
  z-index: 0;
}

.card-bg-decor svg {
  width: 100%;
  height: 100%;
}

.service-card-visual {
  width: 100%;
  height: 200px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at center, rgba(255, 104, 0, 0.15) 0%, transparent 70%);
  position: relative;
  margin-bottom: 24px;
  flex-shrink: 0;
}

.service-card-visual img {
  width: 100%;
  height: 100%;
  max-height: 170px;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.5));
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-visual img {
  transform: scale(1.04) translateY(-3px);
}

.service-card-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-number {
  color: var(--orange);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.service-card h3 {
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  line-height: 1.2;
  transition: color 0.3s;
  position: relative;
  display: inline-block;
}

.service-card h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 40px;
  height: 3px;
  background: var(--orange);
}

.service-card p {
  color: #a0a6b1;
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0 0 24px;
}

/* Features inside card */
.service-features-row {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  margin-top: auto;
  justify-content: space-between;
}

.service-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
  color: #d1d5db;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
}

.service-feature-item:last-child {
  border-right: none;
}

.service-feature-item svg,
.service-feature-item [data-lucide] {
  color: var(--orange);
  width: 18px !important;
  height: 18px !important;
  stroke-width: 2.2px;
}

/* Slider Controls (mockup style) */
.slider-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #000;
  border: 1.5px solid #fff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  padding: 0;
}

.slider-nav-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 22px rgba(255, 104, 0, 0.45);
}

.slider-nav-btn.prev {
  left: -25px;
}

.slider-nav-btn.next {
  right: -25px;
}

.slider-nav-btn svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.5px;
}

.services-slider-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
  width: 100%;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #9ca3af;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  padding: 0;
  opacity: 0.7;
}

.slider-dot:hover {
  background: #626870;
  opacity: 0.9;
}

.slider-dot.active {
  background: var(--orange);
  box-shadow: 0 0 10px rgba(255, 104, 0, 0.6);
  transform: scale(1.2);
  opacity: 1;
}

/* Services slider responsive rules */
@media(max-width: 1280px) {
  .services-slider-outer {
    padding: 0 25px;
  }
  .slider-nav-btn.prev {
    left: 5px;
  }
  .slider-nav-btn.next {
    right: 5px;
  }
}

@media(max-width: 1024px) {
  .service-card {
    flex: 0 0 calc(50% - 15px);
  }
}

@media(max-width: 768px) {
  .services-slider-outer {
    padding: 0 15px;
  }
  .service-card {
    flex: 0 0 100%;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
  }
  .service-card-visual {
    max-width: 320px;
    width: 100%;
    height: 180px;
    margin-bottom: 16px;
  }
  .service-card-visual img {
    max-height: 150px;
  }
  .service-card h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .service-features-row {
    width: 100%;
  }
  .slider-nav-btn {
    width: 44px;
    height: 44px;
  }
  .slider-nav-btn.prev {
    left: 0px;
  }
  .slider-nav-btn.next {
    right: 0px;
  }
}

/* Floating Back to Top Button */
.back-to-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(13, 15, 17, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8) translateY(10px);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease, background-color 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}

.back-to-top:hover {
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 12px 28px rgba(255, 104, 0, 0.45);
  transform: scale(1.08) translateY(-2px);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.5px;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  top: 108px;
  right: 24px;
  z-index: 9999;
  display: grid;
  gap: 12px;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  min-width: 320px;
  max-width: 420px;
  background: rgba(13, 15, 17, 0.9);
  border: 1px solid rgba(255, 104, 0, 0.35);
  border-left: 4px solid var(--orange);
  border-radius: 12px;
  padding: 16px 20px;
  color: #fff;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transform: translateX(120%);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.45s ease;
}

.toast.show {
  transform: translateX(0);
  opacity: 1;
}

.toast-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.toast-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--orange);
}

.toast-message {
  font-size: 13px;
  color: #e0e3e7;
  line-height: 1.4;
}

.toast-close {
  background: none;
  border: none;
  color: #9ca3af;
  font-size: 18px;
  cursor: pointer;
  transition: color 0.25s ease;
  padding: 0;
  line-height: 1;
}

.toast-close:hover {
  color: #fff;
}

/* ==========================================================================
   IMPACT BANNER (Pill-shaped layout)
   ========================================================================== */
.impact-section {
  padding: 80px 0;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.impact-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 104, 0, 0.1) 0%, transparent 70%);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  filter: blur(40px);
}

.impact-pill {
  background: #0d0f11;
  border: 1px solid rgba(255, 104, 0, 0.22);
  border-radius: 28px;
  padding: 38px 48px;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 1px 1.25fr 1.05fr;
  gap: 34px;
  align-items: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.32), 0 0 20px rgba(255, 104, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.impact-col-quote {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.quote-symbol {
  font-size: 80px;
  color: var(--orange);
  font-family: Georgia, serif;
  font-weight: bold;
  line-height: 0.35;
  margin-top: 10px;
}

.impact-col-quote h2 {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0;
  color: #fff;
}

.impact-col-quote h2 strong {
  color: var(--orange);
}

.impact-col-divider {
  background: rgba(255, 255, 255, 0.12);
  align-self: stretch;
  width: 1px;
}

.impact-col-text p {
  color: #a3aab6;
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
}

.impact-col-btn {
  display: flex;
  justify-content: flex-end;
}

.impact-col-btn .btn {
  white-space: nowrap;
  font-size: 12px;
  padding: 15px 26px;
}

/* ==========================================================================
   CREDENTIALS & CLIENTS CAROUSELS
   ========================================================================== */
.credentials {
  padding: 70px 0 40px;
}

.carousel-outer {
  position: relative;
  width: min(1180px, calc(100% - 48px));
  margin: 20px auto 0;
  display: flex;
  align-items: center;
}

.carousel-nav {
  position: absolute;
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #dde0e2;
  background: #fff;
  color: #111;
  font-size: 28px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  transition: all .25s ease;
}

.carousel-nav:hover {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  transform: scale(1.05);
}

.cred-prev, .client-prev {
  left: -22px;
}

.cred-next, .client-next {
  right: -22px;
}

.logos-strip-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
}

.logos-strip-container::before,
.logos-strip-container::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.logos-strip-container::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.logos-strip-container::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.logos-strip {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  transition: transform 0.4s ease;
}

.logo-item {
  flex: 0 0 calc(20% - 13px);
  min-width: 150px;
  display: flex;
  justify-content: center;
}

.logos-strip img {
  height: 84px;
  width: 100%;
  object-fit: contain;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
  border: 1.5px solid #eaeaea;
}

/* Clients */
.clients {
  padding: 60px 0;
  overflow: hidden;
}

.clients.section-dark-road {
  position: relative;
  background-color: #050607;
  color: #fff;
  overflow: hidden;
}

.clients-bg {
  position: absolute;
  inset: -12% 0;
  background: url('bg-site.jpg') center/cover no-repeat;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

.clients.section-dark-road > * {
  position: relative;
  z-index: 1;
}

.clients.section-dark-road h2 {
  color: #fff;
}

.clients.section-dark-road .lead {
  color: rgba(255, 255, 255, 0.85);
}

.clients.section-dark-road .client-eyebrow {
  color: var(--orange);
  font-weight: 800;
}

.client-eyebrow {
  color: #626870;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.client-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 10px 0;
}

.client-marquee::before,
.client-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.client-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #050607 0%, rgba(5, 6, 7, 0) 100%);
}

.client-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #050607 0%, rgba(5, 6, 7, 0) 100%);
}

.track {
  display: flex;
  gap: 20px;
  animation: marquee 26s linear infinite;
  width: max-content;
}

.client-marquee:hover .track {
  animation-play-state: paused;
}

.track img {
  width: 200px;
  height: 96px;
  object-fit: contain;
  background: #fff;
  border-radius: 16px;
  padding: 8px 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
  border: 1.5px solid #eaeaea;
  transition: transform .3s;
}

.track img:hover {
  transform: translateY(-4px);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ==========================================================================
   FLEET CAROUSEL SECTION (Frota)
   ========================================================================== */
.fleet {
  padding: 110px 0 120px;
  overflow: hidden;
  position: relative;
}

.fleet-carousel-outer {
  position: relative;
  margin-top: 40px;
  padding: 0 12px;
}

.fleet-carousel-container {
  overflow: hidden;
  width: 100%;
  padding: 10px 0;
}

.fleet-carousel-track {
  display: flex;
  gap: 22px;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}

.fleet-card-wrapper {
  flex: 0 0 calc(25% - 16.5px);
  min-width: 250px;
}

.fleet-card {
  position: relative;
  appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  overflow: hidden;
  border-radius: 28px;
  background: #111;
  box-shadow: 0 20px 48px rgba(0, 0, 0, .14);
  width: 100%;
  height: 340px;
  text-align: left;
  outline: none;
}

.fleet-card:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(0deg, rgba(0, 0, 0, .88) 0%, rgba(0, 0, 0, .3) 50%, transparent 100%);
  transition: opacity .35s;
}

.fleet-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(0.25, 1, 0.5, 1);
}

.fleet-card-content {
  position: absolute;
  left: 24px;
  bottom: 22px;
  z-index: 3;
  color: #fff;
  pointer-events: none;
}

.fleet-card-content h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.fleet-card-content p {
  margin: 4px 0 0;
  font-size: 13px;
  color: #d1d5db;
  font-weight: 500;
}

.fleet-card-zoom-icon {
  position: absolute;
  right: 24px;
  bottom: 22px;
  z-index: 3;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .35);
  background: rgba(0, 0, 0, .45);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  color: #fff;
  transition: transform .3s, background-color .3s, border-color .3s;
}

.fleet-card-zoom-icon svg {
  width: 16px;
  height: 16px;
}

/* Hover fleet card effects */
.fleet-card:hover img {
  transform: scale(1.08);
}

.fleet-card:hover .fleet-card-zoom-icon {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.1);
}

/* Fleet carousel nav buttons */
.fleet-carousel-nav {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, .08);
  background: #fff;
  color: #111;
  font-size: 34px;
  line-height: 1;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
  cursor: pointer;
  transition: all .25s ease;
}

.fleet-carousel-nav:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.fleet-prev {
  left: -22px;
  transform: translateY(-50%);
}

.fleet-next {
  right: -22px;
  transform: translateY(-50%);
}

/* ==========================================================================
   LIGHTBOX
   ========================================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(3, 4, 5, .92);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: min(92vw, 1280px);
  max-height: 84vh;
  border-radius: 28px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .55);
  border: 1.5px solid rgba(255, 104, 0, .35);
  object-fit: contain;
}

.lightbox-close, .lightbox-arrow {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(0, 0, 0, .45);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: background-color .25s, border-color .25s;
}

.lightbox-close {
  top: 26px;
  right: 30px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 34px;
}

.lightbox-arrow {
  top: 50%;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  font-size: 44px;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

.lightbox-close:hover, .lightbox-arrow:hover {
  background: var(--orange);
  border-color: var(--orange);
}

/* ==========================================================================
   NEW FOOTER CONTACT
   ========================================================================== */
.footer-contact {
  background: #080a0c;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 80px 0 0;
  color: #fff;
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1.15fr 0.85fr;
  gap: 40px;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-column h3 {
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
  position: relative;
}

.footer-column h3:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 32px;
  height: 2px;
  background: var(--orange);
}

/* Col 1: About */
.footer-logo {
  width: 160px;
  margin-bottom: 22px;
}

.footer-about p {
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
}

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

.footer-social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .15);
  display: grid;
  place-items: center;
  color: #9ca3af;
  transition: all .25s ease;
}

.footer-social-icons a:hover {
  border-color: var(--orange);
  color: #fff;
  background: rgba(255, 104, 0, .1);
  transform: translateY(-3px);
}

/* Col 2: Info/Contacts */
.contact-details-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-details-list li {
  display: flex;
  gap: 12px;
  font-size: 14px;
  color: #9ca3af;
  line-height: 1.5;
}

.contact-details-list li svg, .contact-details-list li [data-lucide] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--orange);
}

.text-orange {
  color: var(--orange) !important;
}

/* Col 3: Budget Form */
.footer-contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-form input,
.footer-contact-form textarea {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  color: #fff;
  padding: 12px 14px;
  font-size: 14px;
  outline: none;
  width: 100%;
  transition: border-color .25s, background-color .25s;
  font-family: inherit;
}

.footer-contact-form input:focus,
.footer-contact-form textarea:focus {
  border-color: var(--orange);
  background: rgba(255, 255, 255, .05);
}

.footer-contact-form textarea {
  height: 95px;
  resize: none;
}

.footer-contact-form .btn {
  width: 100%;
  padding: 14px 20px;
  font-size: 12px;
}

/* Col 4: Google Maps integration */
.footer-map-cta {
  display: flex;
  flex-direction: column;
}

.footer-map-container {
  width: 100%;
  height: 160px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 104, 0, 0.25);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  background: #090b0d;
  margin-bottom: 16px;
}

.footer-map-container iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.footer-map-cta .btn {
  width: 100%;
  padding: 14px 20px;
  font-size: 12px;
}

.footer-social-icons a svg {
  width: 18px !important;
  height: 18px !important;
  display: block !important;
}

/* Footer Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .05);
  padding: 24px 0;
  margin-top: 60px;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #6b7280;
}

/* ==========================================================================
   MODAL TRABALHE CONOSCO
   ========================================================================== */
.trabalhe-modal {
  position: fixed;
  inset: 0;
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.trabalhe-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.trabalhe-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .8);
  backdrop-filter: blur(10px);
}

.trabalhe-modal-content {
  position: relative;
  z-index: 2;
  background: #0f1113;
  border: 1px solid rgba(255, 104, 0, .4);
  border-radius: 28px;
  padding: 42px;
  width: min(460px, 92%);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .6);
  color: #fff;
}

.trabalhe-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 32px;
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  line-height: 1;
  transition: color .25s;
}

.trabalhe-modal-close:hover {
  color: var(--orange);
}

.trabalhe-modal h3 {
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
  color: var(--orange);
}

.trabalhe-modal p {
  font-size: 14px;
  color: #9ca3af;
  line-height: 1.5;
  margin-bottom: 24px;
}

.trabalhe-modal p a {
  color: var(--orange);
  text-decoration: underline;
}

.trabalhe-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.trabalhe-form input[type="text"],
.trabalhe-form input[type="email"],
.trabalhe-form input[type="tel"] {
  width: 100%;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  color: #fff;
  padding: 12px 14px;
  font-size: 14px;
  outline: none;
  transition: border-color .25s;
}

.trabalhe-form input:focus {
  border-color: var(--orange);
}

.file-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.file-upload-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1.5px dashed rgba(255, 104, 0, .4);
  border-radius: 12px;
  padding: 16px;
  cursor: pointer;
  color: #d1d5db;
  font-size: 13px;
  font-weight: 600;
  transition: all .25s ease;
  background: rgba(255, 255, 255, .02);
}

.file-upload-label:hover {
  background: rgba(255, 104, 0, .06);
  border-color: var(--orange);
  color: #fff;
}

.file-upload-label svg {
  color: var(--orange);
  width: 18px;
  height: 18px;
}

#cv-file {
  display: none;
}

.file-name-display {
  font-size: 12px;
  color: #9ca3af;
  text-align: center;
}

/* ==========================================================================
   MEDIA QUERIES (Responsividade)
   ========================================================================== */
@media(max-width: 1100px) {
  .header-container {
    grid-template-columns: 180px 1fr auto;
  }
  
  .nav {
    gap: 20px;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .hero {
    height: 100vh;
    min-height: 580px;
    padding-top: 92px;
  }
  
  .quick-card {
    margin-top: 12px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-card {
    flex-direction: column;
    padding: 24px;
    gap: 20px;
  }

  .service-card-visual {
    width: 100%;
    height: 180px;
  }

  .service-card-visual img {
    height: 100%;
    max-height: 180px;
  }

  .company-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .company-card-wrapper {
    padding: 34px 24px;
  }

  .image-panel img {
    height: 380px;
  }

  .values-row {
    flex-direction: column;
    gap: 20px;
  }

  .value-divider {
    display: none;
  }

  .impact-pill {
    grid-template-columns: 1fr;
    padding: 30px 24px;
    gap: 20px;
    text-align: center;
  }

  .impact-col-quote {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .impact-col-divider {
    display: none;
  }

  .impact-col-btn {
    justify-content: center;
  }

  .impact-col-btn .btn {
    width: 100%;
  }

  .fleet-card-wrapper {
    flex: 0 0 calc(50% - 11px);
  }
  
  .footer-contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width: 980px) {
  .header-container {
    grid-template-columns: 1fr auto;
  }
  .site-header {
    height: 82px;
  }
  
  .brand img {
    width: 132px;
  }
  
  .nav, .header-cta {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 10px;
  }
  
  .menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: #fff;
    transition: transform .3s, opacity .3s;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .nav.open {
    position: absolute;
    display: grid;
    top: 76px;
    left: 16px;
    right: 16px;
    padding: 22px;
    background: #090b0d;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 20px;
    z-index: 99;
  }
  
  .hero {
    height: 100vh;
    min-height: 560px;
    padding: 92px 0 55px;
  }
  
  .quick-card {
    grid-template-columns: 1fr 1fr;
  }
  
  .quick-card article {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }
  
  .quick-card article:nth-child(2n) {
    border-right: 0;
  }
  
  .quick-card article:nth-last-child(-n+2) {
    border-bottom: 0;
  }
  
  .float-actions {
    display: none;
  }
  
  .logo-item {
    flex: 0 0 calc(33.333% - 11px);
  }
}

@media(max-width: 768px) {
  .footer-contact-grid {
    grid-template-columns: 1fr;
  }
}

@media(max-width: 620px) {
  .container {
    width: min(100% - 28px, 1180px);
  }
  
  h1 {
    font-size: 34px;
  }
  
  .actions {
    display: grid;
  }
  
  .quick-card, .logos-strip {
    grid-template-columns: 1fr;
  }
  
  .quick-card article {
    border-right: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, .08) !important;
  }
  
  .quick-card article:last-child {
    border-bottom: 0 !important;
  }
  
  .company, .services, .fleet {
    padding: 72px 0;
  }
  
  .image-panel img {
    height: 300px;
  }

  .badge-20 {
    position: relative;
    right: 0;
    bottom: 0;
    margin-top: 20px;
    max-width: 100%;
  }
  
  .logo-item {
    flex: 0 0 100%;
  }
  
  .fleet-card-wrapper {
    flex: 0 0 100%;
  }
  
  .footer-bottom-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}/* ==========================================================================
   ORIGINAL FLEET GALLERY SECTION (MASONRY)
   ========================================================================== */
.gallery-section {
  padding: 110px 0 120px;
  background: linear-gradient(180deg, #f7f7f4, #fff);
}



.fleet-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 20px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  overflow: hidden;
  border-radius: 28px;
  background: #111;
  box-shadow: 0 20px 48px rgba(0, 0, 0, .12);
  outline: 1px solid rgba(255, 104, 0, .22);
  outline-offset: -1px;
}

.gallery-item:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(0deg, rgba(0, 0, 0, .55), rgba(0, 0, 0, .08) 55%, rgba(255, 104, 0, .08));
  opacity: .72;
  transition: opacity .35s;
}

.gallery-item:after {
  content: "Ampliar";
  position: absolute;
  right: 18px;
  bottom: 16px;
  z-index: 3;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  border: 1px solid rgba(255, 255, 255, .35);
  background: rgba(0, 0, 0, .38);
  backdrop-filter: blur(10px);
  padding: 9px 13px;
  border-radius: 999px;
  transform: translateY(12px);
  opacity: 0;
  transition: transform .35s, opacity .35s;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover:before {
  opacity: .42;
}

.gallery-item:hover:after {
  transform: translateY(0);
  opacity: 1;
}

.gallery-item {
  grid-column: span 1;
  grid-row: span 1;
}

.gallery-item.is-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.is-tall {
  grid-column: span 1;
  grid-row: span 2;
}

.gallery-item.is-wide {
  grid-column: span 2;
  grid-row: span 1;
}

/* ==========================================================================
   GOOGLE MAPS IN FOOTER
   ========================================================================== */
.footer-map {
  width: 100%;
  margin-bottom: 50px;
}

.footer-map h3 {
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.footer-map h3:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 32px;
  height: 2px;
  background: var(--orange);
}

.map-wrapper {
  border-radius: 24px;
  overflow: hidden;
  border: 1.5px solid rgba(255, 104, 0, .3);
  box-shadow: var(--shadow);
  background: #0d0f11;
  position: relative;
}

.map-wrapper iframe {
  display: block;
}

/* Responsive Map and Gallery adjustments */
@media(max-width: 980px) {
  .fleet-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery-item,
  .gallery-item.is-large,
  .gallery-item.is-wide,
  .gallery-item.is-tall,
  .gallery-item:not(.is-large):not(.is-wide):not(.is-tall) {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media(max-width: 620px) {
  .gallery-section {
    padding: 72px 0;
  }
  .fleet-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
    gap: 14px;
  }
  .gallery-item, .gallery-item.is-large, .gallery-item.is-wide, .gallery-item.is-tall, .gallery-item:not(.is-large):not(.is-wide):not(.is-tall) {
    grid-column: span 1;
    grid-row: span 1;
    border-radius: 22px;
  }
}

/* Spinner keyframe animation */
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Glass Blur Transition at the top of Footer section */
.footer-glass-blur {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  background: linear-gradient(to bottom, rgba(8, 10, 12, 0) 0%, rgba(8, 10, 12, 0.85) 60%, #080a0c 100%);
  pointer-events: none;
  z-index: 50;
}
