/* ═══════════════════════════════════════════
   HANBY — Design fiel ao folder impresso
   Paleta: verde-escuro #1a4a1a | verde #2e7d32
           verde-claro #66bb6a | azul #1565c0
           branco #fff | off-white #f4f6f0
═══════════════════════════════════════════ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Open Sans', sans-serif; color: #1c2b1c; background: #fff; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── Tokens ── */
:root {
  --gd:  #1a4a1a;   /* verde escuro */
  --gm:  #2e7d32;   /* verde médio */
  --gl:  #66bb6a;   /* verde claro / accent */
  --bl:  #1565c0;   /* azul logo */
  --wh:  #ffffff;
  --ow:  #f4f6f0;   /* off-white */
  --tx:  #1c2b1c;
  --txm: #3a4a3a;
  --r:   14px;
  --sh:  0 6px 32px rgba(0,0,0,.12);
}

/* ── Wrapper ── */
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 28px; }

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--gl);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.13); }

.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 28px;
  height: 80px;
  display: flex; align-items: center; gap: 32px;
}

.nav-logo img { height: 64px; width: auto; }

.nav-links {
  display: flex; gap: 28px; margin-left: auto;
}
.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600; font-size: .88rem;
  color: var(--tx); letter-spacing: .4px;
  position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--gm);
  transition: width .25s;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gm); color: var(--wh);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: .85rem;
  padding: 10px 22px; border-radius: 50px;
  white-space: nowrap;
  transition: background .2s, transform .2s;
}
.nav-cta:hover { background: var(--gl); transform: translateY(-1px); }

.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
  margin-left: auto;
}
.nav-burger span {
  display: block; width: 26px; height: 3px;
  background: var(--gd); border-radius: 2px; transition: all .3s;
}

/* ══════════════════════════════════════════
   HERO — full-screen imersivo
══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding-top: 80px;
  overflow: hidden;
}

/* foto de fundo */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero:hover .hero-bg img { transform: scale(1); }

/* overlay em camadas: escuro embaixo, transparente no centro */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to bottom,
      rgba(10,28,10,.72) 0%,
      rgba(10,28,10,.45) 40%,
      rgba(10,28,10,.55) 70%,
      rgba(10,28,10,.90) 100%
    );
}

/* conteúdo central */
.hero-body {
  flex: 1;
  position: relative; z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 28px 120px;
}

.hero-center {
  text-align: center;
  max-width: 820px;
}

.hero-logo {
  height: 72px; width: auto;
  margin: 0 auto 20px;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,.4));
}

.hero-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: .8rem; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gl);
  margin-bottom: 24px;
  opacity: .9;
}

.hero-center h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.1;
  color: var(--wh);
  margin-bottom: 24px;
  letter-spacing: -.5px;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.hero-center h1 span { color: var(--gl); }

.hero-center p {
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,.88);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto; margin-right: auto;
}
.hero-center p strong { color: var(--gl); font-weight: 700; }

.hero-actions {
  display: flex; gap: 16px;
  justify-content: center; flex-wrap: wrap;
}

.btn-solid {
  background: var(--gm); color: var(--wh);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: .9rem;
  padding: 14px 34px; border-radius: 50px;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(46,125,50,.4);
}
.btn-solid:hover {
  background: var(--gl);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(46,125,50,.5);
}

.btn-ghost {
  border: 2px solid rgba(255,255,255,.7); color: var(--wh);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: .9rem;
  padding: 12px 32px; border-radius: 50px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .2s, border-color .2s;
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--wh);
}

/* faixa de cards na base */
.hero-bottom {
  position: relative; z-index: 2;
  display: flex;
  align-items: stretch;
  background: rgba(10,28,10,.82);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(102,187,106,.2);
}

.hcard {
  flex: 1;
  display: flex; align-items: center; gap: 16px;
  padding: 24px 28px;
  transition: background .2s;
}
.hcard:hover { background: rgba(46,125,50,.15); }

.hcard-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gm), var(--gl));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.hcard-icon i { font-size: 1.1rem; color: var(--wh); }

.hcard-text strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: .82rem;
  color: var(--gl); text-transform: uppercase;
  letter-spacing: .5px; margin-bottom: 3px;
}
.hcard-text span {
  font-size: .78rem;
  color: rgba(255,255,255,.72);
  line-height: 1.4;
}

.hcard-sep {
  width: 1px;
  background: rgba(102,187,106,.2);
  align-self: stretch;
  margin: 12px 0;
}

/* seta de scroll */
.hero-scroll {
  position: absolute;
  bottom: 100px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,.5);
  font-size: 1.2rem;
  animation: bounce 2s infinite;
  transition: color .2s;
}
.hero-scroll:hover { color: var(--gl); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ══════════════════════════════════════════
   SERVIÇOS
══════════════════════════════════════════ */
.servicos {
  padding: 96px 0;
  background: var(--wh);
}

.sec-head {
  display: flex; align-items: center; gap: 18px;
  justify-content: center; margin-bottom: 64px;
}
.sec-head h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: 1.1rem;
  color: var(--gd); letter-spacing: 3px;
  white-space: nowrap;
}
.sec-rule {
  flex: 1; height: 1px; max-width: 140px;
  background: linear-gradient(to right, transparent, var(--gm), transparent);
}

/* grid 3 colunas */
.srv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.srv-card {
  position: relative;
  background: var(--ow);
  border-radius: var(--r);
  padding: 32px 26px 28px;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  border-bottom: 3px solid transparent;
}
.srv-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gm), var(--gl));
}
.srv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh);
  border-bottom-color: var(--gl);
}

.srv-num {
  position: absolute; top: 18px; right: 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: 2.4rem;
  color: rgba(46,125,50,.1);
  line-height: 1;
  user-select: none;
}

.srv-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--gm), var(--gl));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.srv-icon i { font-size: 1.25rem; color: var(--wh); }

.srv-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: .9rem;
  color: var(--gd); text-transform: uppercase;
  letter-spacing: .5px; margin-bottom: 10px;
  line-height: 1.3;
}
.srv-card p { font-size: .87rem; color: var(--txm); line-height: 1.65; }

/* ══════════════════════════════════════════
   QUOTE BAND — com foto de fundo
══════════════════════════════════════════ */
.quote-band {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

/* foto de fundo */
.quote-bg {
  position: absolute; inset: 0; z-index: 0;
}
.quote-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.quote-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,74,26,.93) 0%, rgba(26,74,26,.80) 100%);
  z-index: 1;
}

.quote-inner {
  display: flex; align-items: center; gap: 28px;
  position: relative; z-index: 1;
}

.quote-mark {
  font-family: 'Montserrat', sans-serif;
  font-size: 8rem; line-height: .7;
  color: var(--gl); opacity: .35;
  font-weight: 900; flex-shrink: 0;
  user-select: none;
}

.quote-inner p {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 700; color: var(--wh);
  line-height: 1.35;
}
.quote-inner p em {
  font-style: normal; color: var(--gl);
}

/* ══════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════ */
.cta-section {
  background: var(--gd);
  padding: 56px 0;
  border-top: 3px solid var(--gl);
}

.cta-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 40px;
  flex-wrap: wrap;
}

.cta-left {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.cta-logo {
  height: 80px; width: auto;
}
.cta-left p {
  font-family: 'Montserrat', sans-serif;
  font-size: .95rem; color: rgba(255,255,255,.88);
  line-height: 1.6;
}
.cta-left p strong { color: var(--gl); }
.cta-left p span {
  display: block; color: var(--gl);
  font-weight: 800; font-size: 1rem;
  letter-spacing: .5px; margin-top: 2px;
}

.cta-right { text-align: center; }
.cta-label {
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem; letter-spacing: 2.5px;
  color: rgba(255,255,255,.5); text-transform: uppercase;
  margin-bottom: 10px;
}
.cta-wa {
  display: inline-flex; align-items: center; gap: 12px;
  background: #25d366; color: var(--wh);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: 1.35rem;
  padding: 16px 32px; border-radius: 50px;
  transition: background .2s, transform .2s;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
}
.cta-wa:hover { background: #1ebe5d; transform: scale(1.03); }
.cta-wa i { font-size: 1.6rem; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: #0f1f0f;
  padding: 52px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.f-item {
  display: flex; align-items: flex-start; gap: 12px;
  color: rgba(255,255,255,.75);
}
.f-item i { font-size: 1.1rem; color: var(--gl); margin-top: 3px; flex-shrink: 0; }
.f-item p, .f-item a { font-size: .85rem; line-height: 1.7; }
.f-item a:hover { color: var(--gl); }

.footer-bar {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; padding: 18px 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem; font-weight: 600;
  color: rgba(255,255,255,.35);
  letter-spacing: 1px; text-transform: uppercase;
}
.footer-bar i { color: var(--gl); font-size: .7rem; }

.footer-copy {
  text-align: center; padding: 0 28px 20px;
  font-size: .75rem; color: rgba(255,255,255,.2);
}

/* ══════════════════════════════════════════
   SOBRE — split foto + texto
══════════════════════════════════════════ */
.sobre {
  display: flex;
  min-height: 520px;
}

.sobre-foto {
  flex: 0 0 48%;
  position: relative;
  overflow: hidden;
}
.sobre-foto img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform .6s ease;
}
.sobre-foto:hover img { transform: scale(1.04); }

.sobre-foto-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--ow) 100%);
}

.sobre-texto {
  flex: 1;
  background: var(--ow);
  display: flex; flex-direction: column; justify-content: center;
  padding: 72px 56px 72px 48px;
}

.sobre-tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gm);
  background: rgba(46,125,50,.1);
  padding: 5px 14px; border-radius: 50px;
  margin-bottom: 20px;
}

.sobre-texto h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  color: var(--gd); line-height: 1.2;
  margin-bottom: 20px;
}
.sobre-texto h2 strong { color: var(--gm); }

.sobre-texto p {
  font-size: .97rem; color: var(--txm);
  line-height: 1.75; margin-bottom: 28px;
  max-width: 460px;
}

.sobre-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 12px;
}
.sobre-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: .9rem; color: var(--txm);
}
.sobre-list li i { color: var(--gm); font-size: 1rem; flex-shrink: 0; }

/* ══════════════════════════════════════════
   NÚMEROS — foto de fundo com stats
══════════════════════════════════════════ */
.numeros {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.numeros-bg {
  position: absolute; inset: 0; z-index: 0;
}
.numeros-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.numeros-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,31,15,.93) 0%, rgba(26,74,26,.88) 100%);
}

.numeros-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center;
  justify-content: center; gap: 0;
  flex-wrap: wrap;
}

.num-card {
  display: flex; flex-direction: column; align-items: center;
  padding: 20px 48px; text-align: center;
}
.num-val {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--gl);
  line-height: 1;
  margin-bottom: 8px;
}
.num-label {
  font-family: 'Montserrat', sans-serif;
  font-size: .8rem; font-weight: 600;
  color: rgba(255,255,255,.7);
  text-transform: uppercase; letter-spacing: 1.5px;
}

.num-divider {
  width: 1px; height: 60px;
  background: rgba(102,187,106,.3);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   RESPONSIVO
══════════════════════════════════════════ */
@media (max-width: 960px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }

  /* hero */
  .hero-center h1 { font-size: 2.2rem; }
  .hero-bottom { flex-wrap: wrap; }
  .hcard { flex: 1 1 45%; }
  .hcard-sep { display: none; }

  /* sobre empilhado */
  .sobre { flex-direction: column; }
  .sobre-foto { flex: none; min-height: 300px; }
  .sobre-foto-overlay { background: linear-gradient(to bottom, transparent 60%, var(--ow) 100%); }
  .sobre-texto { padding: 48px 28px; }

  .srv-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-inner { flex-direction: column; text-align: center; }
  .quote-mark { font-size: 5rem; }
  .num-divider { display: none; }
  .num-card { padding: 20px 28px; }
}

@media (max-width: 580px) {
  .hero-center h1 { font-size: 1.75rem; }
  .hero-bottom { flex-direction: column; }
  .hcard { flex: none; width: 100%; }
  .srv-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-left { justify-content: center; text-align: center; }
  .footer-bar { flex-wrap: wrap; gap: 8px; }
  .numeros-inner { flex-direction: column; gap: 8px; }
  .num-card { padding: 16px 20px; }
}

/* ── Mobile nav aberto ── */
.nav-inner.menu-open .nav-links {
  display: flex; flex-direction: column;
  position: fixed; top: 70px; left: 0; right: 0;
  background: var(--wh);
  padding: 20px 28px 28px;
  gap: 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  z-index: 800;
}
.nav-inner.menu-open .nav-cta {
  display: inline-flex;
  margin: 0 28px 20px;
  position: fixed; top: 70px; left: 0; right: 0;
  /* handled by nav-links block above */
}
