/* -------------------------------------------------------------
   DEPÓSITO BENTO - CSS ESTÁTICO DE ALTA PERFORMANCE
   Zero-PHP, Ultra-rápido, Core Web Vitals 90+
   ------------------------------------------------------------- */
:root {
  --marrom: #503518;
  --marrom-hover: #3d2711;
  --dourado: #dd9933;
  --dourado-hover: #c48224;
  --escuro: #222222;
  --cinza-texto: #444444;
  --cinza-bg: #f8f6f3;
  --borda: #e2ded8;
  --fonte-principal: 'Segoe UI', system-ui, -apple-system, Roboto, sans-serif;
  --fonte-titulos: 'Segoe UI', system-ui, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--fonte-principal);
  color: var(--cinza-texto);
  background-color: #ffffff;
}

body {
  line-height: 1.7;
  font-size: 15.5px;
}

a {
  color: var(--marrom);
  text-decoration: none;
  transition: all 0.25s ease;
}

a:hover {
  color: var(--dourado);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------------- CABEÇALHO & NAVEGAÇÃO ---------------- */
.site-header {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
}

.site-logo img {
  max-height: 65px;
  width: auto;
  display: block;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 24px;
  align-items: center;
}

.main-nav a {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--marrom);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 4px;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--dourado);
  transition: width 0.25s ease;
}

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

.btn-header-wa {
  background: #25d366;
  color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 700;
  padding: 8px 16px !important;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 3px 8px rgba(37, 211, 102, 0.3);
}

.btn-header-wa:hover {
  background: #1eb855;
  transform: translateY(-1px);
}

.btn-header-wa img {
  width: 16px;
  height: 16px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--marrom);
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ---------------- HERO SLIDER ---------------- */
.hero-slider-section {
  position: relative;
  height: 520px;
  overflow: hidden;
  background: #222222;
}

.slider-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.slider-slide.active {
  opacity: 1;
  visibility: visible;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.58);
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
  color: #ffffff;
}

.slide-content h2 {
  font-size: 34px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  line-height: 1.25;
}

.slide-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 22px;
  font-weight: 400;
  color: #f0f0f0;
}

.slide-divider {
  width: 90px;
  height: 3px;
  background: var(--dourado);
  margin: 0 auto 25px;
}

.btn-hero {
  display: inline-block;
  background: var(--dourado);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.btn-hero:hover {
  background: var(--dourado-hover);
  color: #ffffff;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: #ffffff;
  border: none;
  font-size: 26px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s ease;
}

.slider-btn:hover {
  background: var(--dourado);
}

.slider-prev { left: 20px; }
.slider-next { right: 20px; }

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background: var(--dourado);
  width: 28px;
  border-radius: 10px;
}

/* ---------------- SEÇÕES GERAIS ---------------- */
.secao-padding {
  padding: 70px 0;
}

.secao-titulo-wrap {
  text-align: center;
  margin-bottom: 45px;
}

.secao-titulo {
  font-size: 32px;
  font-weight: 800;
  color: var(--marrom);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.secao-subtitulo {
  font-size: 16px;
  color: #666;
  max-width: 750px;
  margin: 0 auto 15px;
  line-height: 1.6;
}

.titulo-linha {
  width: 60px;
  height: 3px;
  background: var(--dourado);
  margin: 0 auto;
}

/* ---------------- QUEM SOMOS ---------------- */
.quem-somos-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 45px;
  align-items: center;
}

.quem-somos-textos p {
  font-size: 16px;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 20px;
  text-align: justify;
}

.quem-somos-textos strong {
  color: var(--marrom);
}

.quem-somos-img-wrap {
  position: relative;
}

.quem-somos-img-wrap img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  display: block;
}

/* ---------------- LOCAÇÃO DE MÁQUINAS ---------------- */
.bg-cinza {
  background-color: var(--cinza-bg);
}

.lista-maquinas-destaque {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.badge-maquina {
  background: #ffffff;
  border: 1px solid var(--borda);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--marrom);
  box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

.maquinas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.card-equipamento {
  background: #ffffff;
  border: 1px solid var(--borda);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.04);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}

.card-equipamento:hover {
  transform: translateY(-4px);
  border-color: var(--dourado);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.card-midia-wrap {
  position: relative;
  height: 200px;
  background: #111;
  overflow: hidden;
}

.card-midia-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card-equipamento:hover .card-midia-wrap img {
  transform: scale(1.05);
}

.card-midia-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-equipamento-body {
  padding: 16px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-equipamento-body h3 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--marrom);
  line-height: 1.4;
  margin: 0;
}

/* ---------------- TERRAPLANAGEM ---------------- */
.terraplanagem-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.lista-servicos-terra {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lista-servicos-terra li {
  font-size: 15.5px;
  color: #333;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 12px;
}

.lista-servicos-terra li::before {
  content: "✔";
  color: var(--dourado);
  font-weight: 800;
  font-size: 16px;
}

.terra-galeria-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.card-terra-item {
  border-radius: 6px;
  overflow: hidden;
  height: 190px;
  background: #000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.card-terra-item img,
.card-terra-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ---------------- SEÇÃO CONTATO & RODAPÉ (IDÊNTICO AO PRINT) ---------------- */
.contato-secao-marrom {
  background-color: #503518;
  color: #ffffff;
  padding: 60px 0;
}

.contato-print-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 45px;
  align-items: center;
}

.contato-print-info {
  display: flex;
  flex-direction: column;
}

.contato-print-titulo {
  font-size: 38px;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
  line-height: 1.1;
}

.contato-print-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  font-size: 15.5px;
  color: #ffffff;
  line-height: 1.5;
}

.contato-print-item img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}

.contato-print-item a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.contato-print-item a:hover {
  opacity: 0.85;
  color: #ffffff;
  text-decoration: underline;
}

.contato-siga-nos {
  margin-top: 10px;
}

.contato-siga-nos span {
  display: block;
  font-size: 15px;
  color: #ffffff;
  margin-bottom: 10px;
}

.contato-siga-nos img {
  width: 48px;
  height: 48px;
  transition: transform 0.25s ease;
  display: block;
}

.contato-siga-nos img:hover {
  transform: scale(1.1);
}

.contato-print-mapa {
  height: 380px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.contato-print-mapa iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 900px) {
  .contato-print-grid {
    grid-template-columns: 1fr;
  }
  .contato-print-mapa {
    height: 320px;
  }
}


/* ---------------- RODAPÉ ---------------- */
.site-footer {
  background: #2b1c0d;
  color: #ffffff;
  padding: 40px 0 25px;
}

.footer-bottom {
  text-align: center;
  font-size: 13.5px;
  color: #c0b2a5;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  margin-top: 10px;
}

.footer-bottom a {
  color: var(--dourado);
}

/* ---------------- WHATSAPP FIXO ---------------- */
.btn-whatsapp-fixo {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  z-index: 9999;
  transition: transform 0.25s ease;
}

.btn-whatsapp-fixo:hover {
  transform: scale(1.1);
}

.btn-whatsapp-fixo img {
  width: 32px;
  height: 32px;
}

/* ---------------- LIGHTBOX ---------------- */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 25px;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
}

/* ---------------- RESPONSIVIDADE ---------------- */
@media (max-width: 992px) {
  .maquinas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .quem-somos-grid,
  .terraplanagem-grid,
  .contato-secao-grid {
    grid-template-columns: 1fr;
  }
  .mapa-iframe-bento {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    padding: 20px;
  }
  .main-nav.active {
    display: block;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
  .menu-toggle {
    display: block;
  }
  .slide-content h2 {
    font-size: 24px;
  }
  .slide-content p {
    font-size: 15px;
  }
  .hero-slider-section {
    height: 440px;
  }
  .maquinas-grid,
  .terra-galeria-grid {
    grid-template-columns: 1fr;
  }
}
