/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #1a6e35;
  --green-dark: #0f4520;
  --green-mid: #155c2a;
  --green-light: #e8f5ec;
  --accent: #f5a623;
  --wpp: #25D366;
  --wpp-dark: #1aaa56;
  --text: #1a1a1a;
  --muted: #6b7280;
  --border: #e5e7eb;
  --bg: #ffffff;
  --bg-light: #f9fafb;
  --radius: 12px;
  --shadow: 0 2px 16px rgba(0,0,0,.08);
  --shadow-md: 0 4px 24px rgba(0,0,0,.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', system-ui, sans-serif;
  line-height: 1.2;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: box-shadow .2s;
}
.header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.1); }

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 76px;
}

.logo { flex-shrink: 0; }
.logo-img { height: 58px; width: auto; }

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  transition: color .15s;
}
.nav-links a:hover { color: var(--green); }

.header-ctas { display: flex; align-items: center; gap: 10px; }

.hdr-tel {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: background .15s;
  white-space: nowrap;
}
.hdr-tel svg { width: 15px; height: 15px; flex-shrink: 0; }
.hdr-tel:hover { background: var(--bg-light); }

.hdr-wpp {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--wpp);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 8px;
  transition: background .15s;
  white-space: nowrap;
}
.hdr-wpp svg { width: 16px; height: 16px; }
.hdr-wpp:hover { background: var(--wpp-dark); }

.btn-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: 4px;
}
.btn-menu span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: .2s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  padding: 16px 24px 24px;
  gap: 4px;
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text);
  font-size: 15px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.mob-tel { color: var(--green-dark) !important; font-weight: 600; }
.mob-wpp {
  margin-top: 8px;
  background: var(--wpp);
  color: #fff !important;
  font-weight: 700;
  padding: 12px 16px !important;
  border-radius: 8px;
  border: none !important;
  text-align: center;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(8,38,16,.88) 0%, rgba(10,45,20,.80) 45%, rgba(10,45,20,.65) 100%),
    url('servicos-bg.jpg');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(37,211,102,.18);
  border: 1.5px solid rgba(37,211,102,.5);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: 99px;
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
  animation: tagPulse 2s ease-in-out infinite;
  letter-spacing: .2px;
}

@keyframes tagPulse {
  0%, 100% {
    background: rgba(37,211,102,.18);
    border-color: rgba(37,211,102,.5);
    box-shadow: 0 0 0 0 rgba(37,211,102,0);
  }
  50% {
    background: rgba(37,211,102,.32);
    border-color: rgba(37,211,102,.85);
    box-shadow: 0 0 0 6px rgba(37,211,102,.08);
  }
}

.hero-content h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
  max-width: 760px;
  letter-spacing: -.5px;
}
.hero-content h1 span { color: var(--accent); }

.hero-content p {
  color: rgba(255,255,255,.8);
  font-size: 18px;
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.btn-wpp-lg {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--wpp);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 15px 28px;
  border-radius: 10px;
  transition: background .15s, transform .1s;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
}
.btn-wpp-lg svg { width: 20px; height: 20px; }
.btn-wpp-lg:hover { background: var(--wpp-dark); transform: translateY(-1px); }

.btn-tel-lg {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 15px 28px;
  border-radius: 10px;
  border: 2px solid rgba(255,255,255,.4);
  transition: background .15s, border-color .15s;
}
.btn-tel-lg svg { width: 18px; height: 18px; }
.btn-tel-lg:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.7); }

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-pills span {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  padding: 5px 12px;
  border-radius: 99px;
}

/* ===== MÉTRICAS ===== */
.metricas {
  background: var(--green);
  padding: 0;
}
.metricas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.metrica-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 28px 24px;
  border-right: 1px solid rgba(255,255,255,.12);
}
.metrica-item:last-child { border-right: none; }
.metrica-icon { font-size: 28px; flex-shrink: 0; }
.metrica-item strong {
  display: block;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
}
.metrica-item span {
  display: block;
  color: rgba(255,255,255,.7);
  font-size: 12px;
  margin-top: 2px;
}
.metrica-tel a { color: #fff; }

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-light { background: var(--bg-light); }
.section-dark {
  background: var(--green-dark);
  color: #fff;
}

.sec-header {
  text-align: center;
  margin-bottom: 52px;
}
.sec-header.light h2,
.sec-header.light p { color: #fff; }
.sec-header.light p { color: rgba(255,255,255,.7); }

.sec-tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 14px;
}
.sec-tag--light {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
}

.sec-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 14px;
}
.sec-header p {
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: 16px;
}

/* ===== PROBLEMAS ===== */
#problemas {
  position: relative;
}
#problemas::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(249,250,251,.93) 0%, rgba(249,250,251,.72) 50%, rgba(249,250,251,.93) 100%),
    url('hero-bg.jpg');
  background-size: cover;
  background-position: center 15%;
  background-repeat: no-repeat;
  z-index: 0;
}
#problemas .container { position: relative; z-index: 1; }

.problemas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.problema-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.problema-card:hover {
  border-color: var(--green);
  box-shadow: 0 4px 16px rgba(26,110,53,.12);
  transform: translateY(-2px);
}
.problema-icon { font-size: 32px; margin-bottom: 12px; }
.problema-card h3 { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.problema-card p { font-size: 13px; color: var(--muted); line-height: 1.5; }

.problemas-cta { text-align: center; }

/* ===== SERVIÇOS ===== */

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

.srv-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .15s;
  position: relative;
  background: var(--bg);
}
.srv-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.srv-card--destaque {
  border-color: var(--green);
  box-shadow: 0 0 0 2px rgba(26,110,53,.15);
}

.srv-destaque-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--green);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.srv-icon-wrap {
  height: 180px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: var(--bg-light);
}
.srv-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
  transition: transform .4s ease;
}
.srv-card:hover .srv-icon-wrap img {
  transform: scale(1.04);
}

.srv-body {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.srv-body h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 10px;
}
.srv-body p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
  flex: 1;
  line-height: 1.6;
}

.srv-link {
  display: inline-block;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 0;
  min-height: 44px;
  transition: color .15s;
}
.srv-link:hover { color: var(--green-dark); }

/* ===== PROCESSO ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 52px;
}

.step {
  text-align: center;
  padding: 8px;
}
.step-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  font-weight: 900;
  color: rgba(255,255,255,.12);
  line-height: 1;
  margin-bottom: 12px;
}
.step h3 {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.step p {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
}

.processo-cta { text-align: center; }

/* ===== DEPOIMENTOS ===== */
.rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.rev-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: box-shadow .15s;
}
.rev-card:hover { box-shadow: var(--shadow); }

.rev-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.rev-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rev-header strong { display: block; font-size: 14px; font-weight: 700; }
.rev-stars { color: var(--accent); font-size: 13px; margin-top: 2px; }

.rev-card p {
  font-size: 14px;
  color: #374151;
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 14px;
}
.rev-local { font-size: 12px; color: var(--muted); }

/* ===== REGIÕES ===== */
.regioes-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
}

.regioes-left {
  position: sticky;
  top: 88px;
}

.regioes-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 4px;
  margin-bottom: 16px;
}

.regioes-left h2 {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.15;
}

.regioes-left p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.btn-cep {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-dark);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 20px;
  border-radius: 10px;
  transition: background .15s;
}
.btn-cep svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-cep:hover { background: var(--green); }

.regioes-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.zona-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
}

.zona-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  user-select: none;
  margin-bottom: 0;
}
.zona-header:hover { color: var(--green); }

.zona-toggle {
  margin-left: auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: var(--muted);
  flex-shrink: 0;
  transition: background .15s, border-color .15s, color .15s;
}
.zona-card.open .zona-toggle {
  background: var(--green-light);
  border-color: var(--green);
  color: var(--green);
}

.zona-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.zona-pills {
  display: none;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}
.zona-card.open .zona-pills { display: flex; }

.zona-pills span {
  font-size: 12px;
  font-weight: 500;
  color: #374151;
  background: var(--bg-light);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 99px;
  transition: background .12s, border-color .12s, color .12s;
  cursor: default;
}
.zona-pills span:hover {
  background: var(--green-light);
  border-color: var(--green);
  color: var(--green-dark);
}

/* ===== CTA FINAL ===== */
.section-final {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  padding: 80px 0;
  text-align: center;
}
.final-inner { display: flex; flex-direction: column; align-items: center; }
.final-logo {
  height: 70px;
  width: auto;
  margin-bottom: 28px;
}
.section-final h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
}
.section-final p {
  color: rgba(255,255,255,.75);
  font-size: 18px;
  max-width: 480px;
  margin: 0 auto 36px;
}
.final-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ===== FOOTER ===== */
.footer {
  background: #0a2a13;
  color: rgba(255,255,255,.75);
  padding: 60px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo { height: 52px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 280px; color: rgba(255,255,255,.6); }
.footer-cnpj { margin-top: 8px; font-size: 12px; color: rgba(255,255,255,.35); }

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 14px;
}
.footer-col ul li {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  padding: 4px 0;
}
.footer-col a {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  padding: 5px 0;
  transition: color .15s;
}
.footer-col a:hover { color: var(--wpp); }
.footer-horario { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.7; }

.footer-copy {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 20px 24px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,.3);
}

/* ===== FLOATING ===== */
.floating {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.float-tel,
.float-wpp {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
  transition: transform .15s;
}
.float-tel:hover,
.float-wpp:hover { transform: scale(1.1); }

.float-tel {
  background: var(--green);
}
.float-tel svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
}

.float-wpp {
  background: var(--wpp);
  animation: wppGlow 2.5s ease-in-out infinite;
}
.float-wpp svg { width: 26px; height: 26px; fill: #fff; }

@keyframes wppGlow {
  0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,.4); }
  50% { box-shadow: 0 4px 28px rgba(37,211,102,.7), 0 0 0 8px rgba(37,211,102,.1); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1060px) {
  .regioes-inner { grid-template-columns: 1fr; gap: 32px; }
  .regioes-left { position: static; }

  .problemas-grid { grid-template-columns: repeat(2, 1fr); }
  .srv-grid { grid-template-columns: repeat(2, 1fr); }
  .rev-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .metricas-grid { grid-template-columns: repeat(2, 1fr); }
  .metrica-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); }
  .metrica-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.12); }
  .metrica-item:nth-child(3),
  .metrica-item:nth-child(4) { border-bottom: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hdr-tel { display: none; }
  .btn-menu { display: flex; }

  .hero { min-height: auto; }
  .hero-content { padding: 56px 24px 60px; }
  .hero-content p { font-size: 16px; }
  .hero-btns { flex-direction: column; }
  .btn-wpp-lg, .btn-tel-lg { justify-content: center; }

  .problemas-grid { grid-template-columns: 1fr 1fr; }
  .srv-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .rev-grid { grid-template-columns: 1fr; }

  .section { padding: 56px 0; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: 1; }
}

@media (max-width: 480px) {
  .problemas-grid { grid-template-columns: 1fr; }
  .metricas-grid { grid-template-columns: 1fr 1fr; }
  .hero-pills span { font-size: 12px; }
  .final-btns { flex-direction: column; align-items: center; }
}
