:root {
  --black: #050505;
  --dark: #0b0b0b;
  --graphite: #151515;
  --graphite-2: #202020;
  --yellow: #f6b21a;
  --orange: #ff6a00;
  --white: #ffffff;
  --muted: #b8b8b8;
  --line: rgba(246, 178, 26, 0.28);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: #111;
  font-weight: 900;
  font-size: 24px;
  box-shadow: 0 0 24px rgba(246,178,26,0.35);
}
.brand-text strong { display: block; font-weight: 900; line-height: 1; letter-spacing: -0.02em; }
.brand-text span { display: block; font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.16em; }

.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.82);
  transition: color .2s ease;
}
.main-nav a:hover { color: var(--yellow); }

.menu-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.menu-toggle span { display: block; width: 26px; height: 2px; background: var(--white); margin: 6px 0; }

.section { padding: 96px 0; position: relative; }
.section-dark {
  background:
    radial-gradient(circle at top left, rgba(246,178,26,0.13), transparent 34%),
    radial-gradient(circle at bottom right, rgba(255,106,0,0.11), transparent 28%),
    var(--dark);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 120px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.82), rgba(0,0,0,0.46), rgba(0,0,0,0.84)),
    url('assets/hero.jpg'),
    radial-gradient(circle at 62% 42%, rgba(255,106,0,0.35), transparent 22%),
    linear-gradient(135deg, #101010, #050505);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.38;
}
.hero-content { position: relative; max-width: 860px; }
.eyebrow, .section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 900;
}
.eyebrow::before, .section-label::before {
  content: '';
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--yellow), var(--orange));
}
h1, h2, h3 { margin: 0; line-height: 1.05; }
h1 {
  margin-top: 18px;
  font-family: 'Roboto Condensed', 'Montserrat', sans-serif;
  font-size: clamp(56px, 10vw, 122px);
  text-transform: uppercase;
  letter-spacing: -0.04em;
}
.hero-subtitle {
  max-width: 700px;
  font-size: clamp(18px, 2.4vw, 26px);
  color: rgba(255,255,255,0.86);
  margin: 22px 0 16px;
}
.motto {
  color: var(--yellow);
  font-size: clamp(17px, 2vw, 23px);
  font-weight: 800;
  margin: 0 0 34px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 13px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: #111;
  box-shadow: 0 14px 35px rgba(246,178,26,0.25);
}
.btn-secondary {
  border: 1px solid rgba(255,255,255,0.28);
  color: var(--white);
  background: rgba(255,255,255,0.05);
}
.btn-secondary.dark { border-color: rgba(0,0,0,0.15); background: #151515; }
.btn.full { width: 100%; }
.scroll-indicator {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.48);
}

.stats-strip {
  background: linear-gradient(90deg, #0b0b0b, #171717, #0b0b0b);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 28px 0;
}
.stats-grid div { border-left: 3px solid var(--yellow); padding-left: 16px; }
.stats-grid strong { display: block; font-size: 18px; text-transform: uppercase; }
.stats-grid span { display: block; color: var(--muted); font-size: 13px; }

.two-columns {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 58px;
  align-items: center;
}
.section-copy h2, .section-heading h2 {
  font-size: clamp(34px, 5vw, 62px);
  margin: 16px 0 22px;
  letter-spacing: -0.04em;
}
.section-copy p, .section-heading p { color: rgba(255,255,255,0.72); font-size: 17px; }
.about { background: #0f0f0f; }
.about .section-copy p, .highlight-section .section-copy p, .location .section-copy p { color: #333; }
.about, .highlight-section, .location, .contact { color: #111; background: #f4f1ea; }
.about .section-label, .highlight-section .section-label, .location .section-label, .contact .section-label { color: #9b5b00; }
.text-link { font-weight: 900; color: #b96c00; }
.visual-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 620px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(246,178,26,0.18);
  background: #0b0b0b;
}
.visual-image {
  position: absolute;
  inset: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #0b0b0b;
}
.image-about { background-image: url('assets/socios.jpg'), linear-gradient(135deg, #222, #050505); }
.image-onsite { background-image: url('assets/atendimento-local.jpg'), linear-gradient(135deg, #222, #050505); }
.image-about {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.image-onsite {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.visual-image::after, .gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.78));
}
.floating-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 1;
  padding: 14px 18px;
  border-radius: 999px;
  color: #111;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  font-weight: 900;
}
.section-heading.center { max-width: 820px; margin: 0 auto 44px; text-align: center; }
.section-heading.center .section-label { justify-content: center; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  padding: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025));
  border: 1px solid rgba(246,178,26,0.18);
  border-radius: 20px;
  min-height: 245px;
}
.service-icon { font-size: 34px; margin-bottom: 18px; }
.service-card h3 { font-size: 24px; margin-bottom: 12px; }
.service-card p { color: var(--muted); margin: 0; }

.notice {
  padding: 18px;
  border-left: 4px solid var(--orange);
  background: rgba(0,0,0,0.06);
  border-radius: 12px;
  font-weight: 700;
}
.wide-card { min-height: 420px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  min-height: unset;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(246,178,26,0.18);
  background-size: cover;
  background-position: center;
  background-color: #222;
}
.gallery-item span {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.image-gallery-1 { background-image: url('assets/servico-1.jpg'), linear-gradient(135deg, #222, #050505); }
.image-gallery-2 { background-image: url('assets/servico-2.jpg'), linear-gradient(135deg, #222, #050505); }
.image-gallery-3 { background-image: url('assets/servico-3.jpg'), linear-gradient(135deg, #222, #050505); }
.image-gallery-4 { background-image: url('assets/servico-4.jpg'), linear-gradient(135deg, #222, #050505); }
.image-gallery-5 { background-image: url('assets/servico-5.jpg'), linear-gradient(135deg, #222, #050505); }
.image-gallery-6 { background-image: url('assets/servico-6.jpg'), linear-gradient(135deg, #222, #050505); }
.gallery-note { text-align: center; color: var(--muted); margin-top: 24px; font-size: 14px; }

.location-list {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}
.map-card {
  min-height: 480px;
  border-radius: var(--radius);
  background: #111;
  padding: 18px;
  box-shadow: var(--shadow);
}
.map-placeholder {
  position: relative;
  height: 100%;
  min-height: 444px;
  overflow: hidden;
  border-radius: 18px;
  background:
    radial-gradient(circle at 65% 35%, rgba(246,178,26,0.16), transparent 18%),
    linear-gradient(45deg, rgba(255,255,255,0.04) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.04) 50%, rgba(255,255,255,0.04) 75%, transparent 75%),
    linear-gradient(135deg, #252525, #0b0b0b);
  background-size: auto, 42px 42px, auto;
  border: 1px solid rgba(246,178,26,0.22);
}
.route-line {
  position: absolute;
  left: 18%;
  top: 70%;
  width: 58%;
  height: 5px;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  transform: rotate(-28deg);
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(246,178,26,0.48);
}
.map-pin {
  position: absolute;
  top: 31%;
  left: 62%;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: #111;
  font-weight: 900;
  box-shadow: 0 0 35px rgba(246,178,26,0.55);
}
.map-pin::after { content: 'U'; transform: rotate(45deg); }
.map-pin { font-size: 0; }
.map-label {
  position: absolute;
  padding: 8px 12px;
  background: rgba(0,0,0,0.78);
  color: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}
.label-road { left: 12%; bottom: 18%; }
.label-shop { right: 10%; top: 25%; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.why-grid div {
  padding: 24px;
  border-radius: 18px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(246,178,26,0.16);
}
.why-grid strong { display: block; font-size: 18px; margin-bottom: 8px; }
.why-grid span { color: var(--muted); font-size: 14px; }

.contact-wrapper { max-width: 960px; }
.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.contact-card {
  background: #111;
  color: #fff;
  border-radius: 22px;
  padding: 30px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(246,178,26,0.26);
}
.contact-card h3 { font-size: 32px; margin-bottom: 6px; }
.contact-card p { color: var(--muted); margin: 0 0 20px; }
.contact-card span { display: block; margin-top: 14px; color: var(--yellow); font-weight: 800; text-align: center; }
.instagram-link {
  display: block;
  text-align: center;
  color: #8b5100;
  font-weight: 900;
  margin-top: 28px;
}

.site-footer {
  background: #050505;
  color: #fff;
  padding: 34px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr auto;
  gap: 24px;
  align-items: center;
}
.footer-grid strong { display: block; font-size: 20px; }
.footer-grid p, .footer-grid span { color: var(--muted); margin: 4px 0; display: block; font-size: 14px; }
.footer-grid a { color: var(--yellow); font-weight: 900; }

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: #111;
  font-weight: 900;
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}

@media (max-width: 920px) {
  .main-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    padding: 22px;
    background: rgba(5,5,5,0.96);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .main-nav.open { display: flex; }
  .menu-toggle { display: block; }
  .stats-grid, .services-grid, .gallery-grid, .why-grid, .contact-cards, .footer-grid, .two-columns {
    grid-template-columns: 1fr;
  }
  .hero { min-height: 86vh; }
  .visual-card, .map-card { min-height: 360px; }
  .section { padding: 72px 0; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1140px); }
  .brand-text span { display: none; }
  .hero-actions .btn { width: 100%; }
  .stats-grid { gap: 10px; }
  .gallery-item { min-height: unset; aspect-ratio: 1 / 1; }
  .floating-whatsapp { left: 18px; text-align: center; }
}
.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.brand-logo img {
  height: 78px;
  width: auto;
  max-width: 230px;
  display: block;
  object-fit: contain;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.header-inner {
  min-height: 86px;
}

@media (max-width: 768px) {
  .brand-logo img {
    height: 58px;
    max-width: 180px;
  }

  .header-inner {
    min-height: 72px;
  }
}
.map-image-link {
  display: block;
  padding: 0;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 166, 0, 0.35);
  background: #111;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.map-image-link img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  display: block;
}

.map-image-link:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 166, 0, 0.8);
  box-shadow: 0 28px 70px rgba(255, 166, 0, 0.18);
}

@media (max-width: 768px) {
  .map-image-link img {
    min-height: 280px;
  }
}

/* Ajustes finais — imagens quadradas da galeria e comportamento das imagens especiais */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-item {
  aspect-ratio: 1 / 1;
  min-height: unset;
  background-size: cover;
  background-position: center;
}

.image-about {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #0b0b0b;
}

.image-onsite {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    aspect-ratio: 1 / 1;
    min-height: unset;
  }
}
.footer-copy {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.footer-copy p {
  margin: 0;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  line-height: 1.7;
}

.footer-copy a {
  color: var(--yellow);
  font-weight: 900;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.footer-copy a:hover {
  color: var(--orange);
  text-shadow: 0 0 10px rgba(246,178,26,0.45);
}
#topo {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  min-width: 148px;
  height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: #111;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}

.whatsapp-icon {
  display: none;
}

@media (max-width: 768px) {
  .floating-whatsapp {
    left: auto;
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
    min-width: 56px;
    padding: 0;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.35);
  }

  .whatsapp-text {
    display: none;
  }

  .whatsapp-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    line-height: 1;
  }
}
.scroll-indicator {
  bottom: 18px;
  z-index: 1;
  pointer-events: none;
}

.hero-actions {
  position: relative;
  z-index: 2;
  margin-bottom: 56px;
}

@media (max-width: 920px) {
  .hero-actions {
    margin-bottom: 28px;
  }

  .scroll-indicator {
    bottom: 14px;
  }
}

@media (max-width: 768px) {
  .scroll-indicator {
    display: none;
  }

  .hero-actions {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .scroll-indicator {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 56px;
  }

  .hero-actions {
    margin-bottom: 0 !important;
  }

  .stats-strip {
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .hero {
    min-height: auto !important;
    height: auto !important;
    padding-top: 100px !important;
    padding-bottom: 28px !important;
    align-items: flex-start !important;
  }

  .hero-content {
    padding-bottom: 0 !important;
  }

  .hero-actions {
    margin-bottom: 0 !important;
  }

  .scroll-indicator {
    display: none !important;
  }

  .stats-strip {
    margin-top: 0 !important;
  }
}
@media (max-width: 920px) {
  .stats-strip {
    position: relative;
    z-index: 2;
    overflow: visible !important;
  }

  .stats-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 22px !important;
    padding: 28px 0 !important;
  }

  .stats-grid div {
    display: block !important;
    width: 100% !important;
    min-height: auto !important;
    padding-left: 16px !important;
    border-left: 3px solid var(--yellow) !important;
  }

  .stats-grid strong {
    display: block !important;
    font-size: 20px !important;
    line-height: 1.2 !important;
    margin-bottom: 4px !important;
  }

  .stats-grid span {
    display: block !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
  }
}