/* ============================================================
   SOLUDIESEL — Sistema visual
   Premium escuro: verde profundo / grafite + laranja
   ============================================================ */

:root {
  /* Cores de marca */
  --green-900: #061a0e;   /* fundo base, quase preto esverdeado */
  --green-850: #0a2113;
  --green-800: #0d2c18;   /* superfícies */
  --green-700: #11401f;   /* verde profundo (cards) */
  --green-600: #15672e;   /* verde marca */
  --green-500: #1c8a3d;   /* verde vivo */
  --green-glow: rgba(28, 138, 61, 0.35);

  --orange-600: #e85d12;
  --orange-500: #f26a1e;  /* laranja marca */
  --orange-400: #ff7e35;
  --orange-glow: rgba(242, 106, 30, 0.4);

  --ink: #f3f7f2;         /* texto claro */
  --ink-soft: #cdd9cf;
  --muted: #8ea596;       /* texto secundário esverdeado */
  --muted-dim: #5f7868;
  --line: rgba(143, 165, 150, 0.16);
  --line-strong: rgba(143, 165, 150, 0.28);

  --card: #0c2515;
  --card-2: #0e2c19;

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;

  --font-display: "Saira Condensed", "Arial Narrow", sans-serif;
  --font-body: "Barlow", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--green-900);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

/* fundo com textura sutil de pontos + glows */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(120% 70% at 85% -10%, var(--green-glow), transparent 55%),
    radial-gradient(90% 60% at 0% 100%, rgba(242,106,30,0.10), transparent 55%);
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 1;
}

/* ---------- Tipografia ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: 0.5px;
  margin: 0;
}
.kicker {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  font-size: 14px;
  color: var(--orange-400);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.kicker::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--orange-500);
  display: inline-block;
}
.kicker.center::after {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--orange-500);
  display: inline-block;
}
.lead { color: var(--ink-soft); font-size: 1.12rem; }
.muted { color: var(--muted); }
.orange { color: var(--orange-400); }
.green-text { color: var(--green-500); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 16px;
  padding: 15px 26px;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, border-color .2s ease;
  line-height: 1;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; }
.btn-primary {
  background: var(--orange-500);
  color: #fff;
  box-shadow: 0 10px 30px -10px var(--orange-glow);
}
.btn-primary:hover { background: var(--orange-400); transform: translateY(-2px); box-shadow: 0 16px 38px -12px var(--orange-glow); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: var(--green-500); color: #fff; background: rgba(28,138,61,0.10); }
.btn-green { background: var(--green-600); color: #fff; }
.btn-green:hover { background: var(--green-500); transform: translateY(-2px); }

/* ---------- Section scaffolding ---------- */
section { position: relative; z-index: 1; }
.section-pad { padding: clamp(72px, 11vw, 140px) 0; }
.section-head { max-width: 720px; }
.section-head.center { margin: 0 auto; text-align: center; }
.section-head h2 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  margin: 18px 0 0;
}
.section-head p { margin: 18px 0 0; }

/* divisor com risco laranja */
.eyebrow-rule { width: 56px; height: 3px; background: var(--orange-500); border-radius: 2px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(6, 26, 14, 0.72);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 15px;
  color: var(--ink-soft);
  transition: color .2s;
  position: relative;
}
.nav-links a:hover { color: var(--orange-400); }
.nav-cta { display: flex; align-items: center; gap: 14px; }

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; }
.logo-img { height: 48px; width: auto; display: block; }
.logo-img-footer { height: 54px; }
.logo-mark { width: 42px; height: 42px; flex: none; }
@media (max-width: 560px) { .logo-img { height: 40px; } }
.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 25px;
  letter-spacing: 0.5px;
  line-height: 0.9;
}
.logo-text .s { color: var(--orange-500); }
.logo-text .d { color: var(--green-500); }
.logo-text small {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 8.5px;
  letter-spacing: 2.4px;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 3px;
  white-space: nowrap;
}

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: clamp(48px, 8vw, 96px) 0 clamp(56px, 8vw, 110px); overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero h1 {
  font-size: clamp(3rem, 8.5vw, 6.6rem);
  margin: 22px 0 0;
}
.hero h1 .out {
  -webkit-text-stroke: 1.5px var(--green-500);
  color: transparent;
}
.hero p.lead { margin-top: 26px; max-width: 520px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.hero-media { position: relative; }
.hero-media image-slot { width: 100%; height: 560px; }
.hero-frame {
  position: relative;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  padding: 10px;
  background: linear-gradient(160deg, rgba(28,138,61,0.10), rgba(242,106,30,0.05));
}
.hero-badge {
  position: absolute;
  left: -18px;
  bottom: 30px;
  background: var(--orange-500);
  color: #fff;
  padding: 16px 20px;
  border-radius: var(--r-md);
  box-shadow: 0 18px 40px -14px var(--orange-glow);
  max-width: 220px;
}
.hero-badge .n { font-family: var(--font-display); font-weight: 800; font-size: 30px; line-height: 1; }
.hero-badge .t { font-size: 13px; line-height: 1.3; margin-top: 4px; opacity: 0.95; }

/* trust strip / pilares */
.pillars {
  margin-top: clamp(48px, 7vw, 84px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.pillar {
  padding: 26px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-right: 1px solid var(--line);
}
.pillar:last-child { border-right: none; }
.pillar svg { width: 26px; height: 26px; color: var(--orange-400); flex: none; }
.pillar span {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 16px;
}

/* ============================================================
   SOBRE
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
.about-copy p + p { margin-top: 16px; }
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.stat { background: var(--card); padding: 30px 26px; }
.stat .n {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 3.6rem);
  line-height: 1;
  color: var(--orange-400);
}
.stat .l { color: var(--muted); font-size: 0.96rem; margin-top: 8px; }

/* ============================================================
   SERVIÇOS
   ============================================================ */
.services-grid {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.svc {
  background: linear-gradient(165deg, var(--card-2), var(--green-850));
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 34px 32px 36px;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.svc::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 90% at 100% 0%, rgba(242,106,30,0.10), transparent 60%);
  opacity: 0;
  transition: opacity .3s;
}
.svc:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: 0 24px 50px -28px #000; }
.svc:hover::after { opacity: 1; }
.svc-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--orange-400);
  letter-spacing: 2px;
}
.svc-ico {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: var(--orange-500);
  display: grid; place-items: center;
  margin: 16px 0 22px;
  box-shadow: 0 12px 26px -12px var(--orange-glow);
}
.svc-ico svg { width: 30px; height: 30px; color: #fff; }
.svc h3 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.55rem;
  letter-spacing: 0.5px;
  margin: 0 0 10px;
  line-height: 1.05;
}
.svc p { color: var(--muted); margin: 0; font-size: 1rem; }

/* ============================================================
   DIFERENCIAIS
   ============================================================ */
.diff { background: var(--green-850); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.diff-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(36px, 5vw, 76px);
  align-items: center;
}
.diff-media { position: relative; }
.diff-media image-slot { width: 100%; height: 460px; }
.diff-media .tag {
  position: absolute; top: 18px; left: 18px;
  background: rgba(6,26,14,0.85);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(6px);
  padding: 9px 15px; border-radius: 100px;
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: 1.5px; font-size: 13px;
}
.diff-list { margin-top: 34px; display: flex; flex-direction: column; gap: 4px; }
.diff-item {
  display: flex; gap: 18px; padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.diff-item:last-child { border-bottom: none; }
.diff-item .ck {
  width: 40px; height: 40px; flex: none;
  border-radius: 10px; background: rgba(28,138,61,0.16);
  border: 1px solid rgba(28,138,61,0.4);
  display: grid; place-items: center;
}
.diff-item .ck svg { width: 20px; height: 20px; color: var(--green-500); }
.diff-item h4 {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: 1.25rem; margin: 2px 0 6px; letter-spacing: 0.5px;
}
.diff-item p { margin: 0; color: var(--muted); font-size: 0.98rem; }

/* ============================================================
   FAIXA AGRO (CTA)
   ============================================================ */
.agro {
  position: relative;
  background:
    linear-gradient(120deg, var(--green-700) 0%, var(--green-800) 60%, var(--green-850) 100%);
  border-radius: var(--r-lg);
  overflow: hidden;
  padding: clamp(20px, 2.6vw, 34px);
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  border: 1px solid var(--line);
}
.agro::before {
  content: "";
  position: absolute; right: -60px; top: -60px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, var(--orange-glow), transparent 60%);
  opacity: 0.45;
  pointer-events: none;
}
.agro-media { position: relative; z-index: 1; }
.agro-media image-slot { width: 100%; height: clamp(280px, 32vw, 380px); }
.agro-media .tag {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: rgba(6,26,14,0.85);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(6px);
  padding: 9px 15px; border-radius: 100px;
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: 1.5px; font-size: 13px; color: var(--ink);
}
.agro-body { position: relative; z-index: 1; padding: clamp(8px,2vw,24px) clamp(8px,2vw,28px) clamp(8px,2vw,24px) 0; }
.agro h2 { font-size: clamp(2.2rem, 5.5vw, 3.6rem); margin: 14px 0 0; }
.agro p { margin: 16px 0 0; max-width: 480px; color: var(--ink-soft); }
.agro-body .btn { margin-top: 28px; }
.agro-body .note { margin: 14px 0 0; font-size: 0.92rem; }

/* ============================================================
   MAPA
   ============================================================ */
.map-wrap {
  margin-top: clamp(40px, 5vw, 64px);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--card);
}
.map-frame { position: relative; line-height: 0; }
.map-frame iframe {
  width: 100%; height: clamp(300px, 38vw, 440px); border: 0; display: block;
  filter: grayscale(0.25) contrast(1.05);
}
.map-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 20px clamp(20px, 3vw, 30px); border-top: 1px solid var(--line); flex-wrap: wrap;
}
.map-bar .addr { display: flex; align-items: center; gap: 14px; }
.map-bar .addr svg { width: 24px; height: 24px; color: var(--orange-400); flex: none; }
.map-bar .addr .lbl { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: 2px; font-size: 12px; color: var(--muted); }
.map-bar .addr .txt { font-weight: 600; font-size: 1.04rem; }

/* ============================================================
   GALERIA
   ============================================================ */
.gallery-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
.gallery-grid image-slot { width: 100%; height: 100%; }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* ============================================================
   CONTATO
   ============================================================ */
.contact { background: var(--green-850); border-top: 1px solid var(--line); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: stretch;
}
.contact h2 { font-size: clamp(2.4rem, 6vw, 4rem); margin: 16px 0 0; }
.contact-list { margin-top: 36px; display: flex; flex-direction: column; gap: 8px; }
.cline { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--line); }
.cline:last-child { border-bottom: none; }
.cline .ic {
  width: 46px; height: 46px; flex: none; border-radius: 12px;
  background: rgba(242,106,30,0.12); border: 1px solid rgba(242,106,30,0.34);
  display: grid; place-items: center;
}
.cline .ic svg { width: 22px; height: 22px; color: var(--orange-400); }
.cline .lbl { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: 2px; font-size: 12.5px; color: var(--muted); }
.cline .val { font-size: 1.18rem; font-weight: 600; margin-top: 2px; }
.cline .val.big { font-family: var(--font-display); font-weight: 800; font-size: 1.8rem; letter-spacing: 0.5px; }

.contact-card {
  background: linear-gradient(165deg, var(--green-700), var(--green-850));
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  padding: clamp(34px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-card h3 {
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(1.8rem, 4vw, 2.6rem); line-height: 1; margin: 0 0 8px;
}
.contact-card p { color: var(--ink-soft); margin: 0 0 28px; }
.contact-card .btn { width: 100%; justify-content: center; font-size: 18px; padding: 18px; }
.hours { margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
.hours .d { color: var(--muted); font-size: 0.95rem; }
.hours .h { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--green-900); border-top: 1px solid var(--line); padding: 58px 0 34px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; }
.footer-about { max-width: 360px; }
.footer-about p { color: var(--muted); font-size: 0.96rem; margin: 18px 0 0; }
.fcol h5 { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: 2px; font-size: 13px; color: var(--orange-400); margin: 4px 0 18px; }
.fcol a, .fcol p { display: block; color: var(--ink-soft); font-size: 0.98rem; margin-bottom: 12px; transition: color .2s; }
.fcol a:hover { color: var(--orange-400); }
.footer-bottom {
  margin-top: 46px; padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  color: var(--muted-dim); font-size: 0.88rem;
}
.socials { display: flex; gap: 12px; }
.socials a {
  width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--line-strong);
  display: grid; place-items: center; transition: all .2s;
}
.socials a:hover { border-color: var(--orange-500); background: rgba(242,106,30,0.12); }
.socials svg { width: 19px; height: 19px; color: var(--ink-soft); }

/* WhatsApp flutuante */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; display: grid; place-items: center;
  box-shadow: 0 14px 34px -8px rgba(37,211,102,0.55);
  transition: transform .2s;
  animation: wa-pulse 2.6s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; color: #fff; }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 14px 34px -8px rgba(37,211,102,0.55), 0 0 0 0 rgba(37,211,102,0.45); }
  50% { box-shadow: 0 14px 34px -8px rgba(37,211,102,0.55), 0 0 0 14px rgba(37,211,102,0); }
}

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .hero-media image-slot { height: 380px; }
  .about-grid, .diff-grid, .contact-grid, .agro { grid-template-columns: 1fr; }
  .agro-media { order: -1; }
  .map-bar { flex-direction: column; align-items: flex-start; }
  .map-bar .btn { width: 100%; justify-content: center; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
}
@media (max-width: 960px) {
  .nav-links { display: none; }
}
@media (max-width: 820px) {
  .pillars { grid-template-columns: 1fr 1fr; }
  .pillar:nth-child(2) { border-right: none; }
  .pillar:nth-child(1), .pillar:nth-child(2) { border-bottom: 1px solid var(--line); }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .g-wide { grid-column: span 2; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .hero h1 { font-size: clamp(2.6rem, 13vw, 3.4rem); }
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--line); }
  .pillar:last-child { border-bottom: none; }
  .stats { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .nav-cta .btn span.hide-sm { display: none; }
  .gallery-grid { grid-template-columns: 1fr; }
  .g-wide, .g-tall { grid-column: auto; grid-row: auto; }
}


/* ===== Produção: foto estática + placeholders ===== */
.hero-photo { width: 100%; height: 560px; object-fit: cover; border-radius: 16px; display: block; }
.photo-ph {
  position: relative; width: 100%; height: 100%;
  display: grid; place-items: center;
  background: linear-gradient(160deg, var(--card-2), var(--green-850));
  border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
}
.photo-ph svg { width: 52px; height: 52px; color: var(--green-600); opacity: .55; }
.photo-ph .pl {
  position: absolute; left: 16px; right: 16px; bottom: 16px; text-align: center;
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: 1.5px; font-size: 12.5px; color: var(--muted-dim);
}
.hero-frame .photo-ph { height: 560px; }
.diff-media .photo-ph { height: 460px; }
.agro-media .photo-ph { height: clamp(280px, 32vw, 380px); }
.gallery-grid .photo-ph { height: 100%; }
@media (max-width: 1000px) { .hero-photo, .hero-frame .photo-ph { height: 380px; } }
