:root {
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-100: #dcfce7;
  --green-wa: #15803d;
  --green-wa-hover: #14532d;
  --blue-700: #1d4ed8;
  --blue-50: #eff6ff;
  --slate-900: #0f172a;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-200: #e2e8f0;
  --white: #ffffff;
  --shadow-sm: 0 2px 10px rgba(2, 6, 23, 0.06);
  --shadow-md: 0 8px 30px rgba(2, 6, 23, 0.1);
  --radius-lg: 14px;
  --radius-xl: 18px;
  --container: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.5;
  color: var(--slate-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--blue-700); }
a:hover { color: #1e40af; }

.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }
.section { padding: 3rem 0; }
.section-soft { background: #f8fafc; }

.title-1 { margin: 0; color: var(--slate-900); font-size: clamp(1.8rem, 4vw, 2.6rem); line-height: 1.15; font-weight: 800; }
.title-2 { margin: 0; color: var(--slate-900); font-size: clamp(1.5rem, 3vw, 2rem); line-height: 1.2; font-weight: 800; text-align: center; }
.subtitle { margin: .7rem 0 0; color: var(--slate-600); font-size: 1.03rem; text-align: center; }

.chip {
  display: inline-block;
  background: var(--green-100);
  color: #166534;
  border-radius: 999px;
  padding: .32rem .7rem;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.btn-row { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1.2rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .85rem 1.2rem;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, background-color .2s ease;
  border: none;
  cursor: pointer;
  font-size: .95rem;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn-wa { background: var(--green-wa); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-wa:hover { background: var(--green-wa-hover); color: var(--white); }
.btn-call { color: var(--blue-700); border: 2px solid var(--blue-700); background: var(--white); }
.btn-call:hover { background: var(--blue-50); color: var(--blue-700); }
.btn-ghost { color: var(--white); border: 2px solid var(--white); background: transparent; }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); color: var(--white); }
.btn-white { background: var(--white); color: #166534; }
.btn-white:hover { background: #f0fdf4; color: #166534; }

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--slate-200);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
}
.header-row { display: flex; align-items: center; justify-content: space-between; gap: .8rem; padding: .75rem 0; }
.brand { margin: 0; font-size: 1.05rem; font-weight: 800; color: var(--blue-700); text-decoration: none; line-height: 1.2; }
.brand:hover { color: var(--blue-700); text-decoration: none; }
.brand small { display: block; font-size: .72rem; font-weight: 600; color: var(--slate-500); }
.desktop-nav { display: none; align-items: center; gap: 1rem; }
.desktop-nav a { text-decoration: none; color: var(--slate-700); font-size: .94rem; font-weight: 600; }
.desktop-nav a:hover, .phone-link:hover { color: var(--blue-700); }
.phone-link { text-decoration: none; color: var(--slate-700); font-size: .94rem; font-weight: 700; white-space: nowrap; }

.hero-bg { background: linear-gradient(180deg, #eff6ff 0%, #ffffff 100%); }
.hero-grid { display: grid; gap: 1.4rem; align-items: center; }

.card { border: 1px solid var(--slate-200); border-radius: var(--radius-xl); background: var(--white); box-shadow: var(--shadow-sm); }
.card-pad { padding: 1.2rem; }

.bullet-list { margin: 0; padding: 0; list-style: none; display: grid; gap: .5rem; font-size: .96rem; color: var(--slate-600); }
.bullet-list li::before { content: "✓"; color: var(--green-600); margin-right: .45rem; font-weight: 700; }

.img-grid { margin-top: .9rem; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .8rem; }
.img-grid picture { display: block; }
.img-grid img {
  width: 100%;
  aspect-ratio: 3 / 2;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.img-grid img:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }

.feature-grid, .service-grid, .steps-grid, .city-grid { display: grid; gap: .8rem; margin-top: 1.3rem; }
.feature-item, .service-item, .step-item, .city-card {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 1rem;
  text-decoration: none;
  color: inherit;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.service-item:hover, .city-card:hover { transform: translateY(-1px); border-color: #93c5fd; box-shadow: var(--shadow-md); }
.city-card h3 { margin: 0; color: var(--slate-900); font-size: 1.05rem; }
.city-card p { margin: .4rem 0 0; font-size: .92rem; color: var(--slate-600); }
.city-card .link-arrow { margin-top: .65rem; font-size: .88rem; font-weight: 700; color: var(--blue-700); }

.urgency { background: var(--blue-700); color: var(--white); text-align: center; }
.urgency .title-2 { color: var(--white); }
.urgency p { color: #dbeafe; margin: .6rem auto 0; max-width: 700px; }
.urgency .btn-row { justify-content: center; }

.local-box {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 1.3rem;
}

.faq-wrap { max-width: 840px; margin: 1.3rem auto 0; display: grid; gap: .7rem; }
details {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: .85rem 1rem;
}
summary { cursor: pointer; font-weight: 700; color: var(--slate-900); }
details p { margin: .55rem 0 0; color: var(--slate-600); font-size: .96rem; }

.final-cta {
  border-radius: var(--radius-xl);
  background: linear-gradient(110deg, #22c55e 0%, #1d4ed8 100%);
  color: var(--white);
  box-shadow: var(--shadow-md);
  padding: 1.6rem;
  text-align: center;
}
.final-cta .title-2 { color: var(--white); }
.final-cta p { color: rgba(255, 255, 255, .94); margin: .65rem auto 0; max-width: 700px; }
.final-cta .btn-row { justify-content: center; }

.floating-wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  border-radius: 999px;
  background: var(--green-wa);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: .92rem;
  box-shadow: var(--shadow-md);
  padding: .82rem 1rem;
  transition: transform .2s ease, background-color .2s ease;
}
.floating-wa:hover { transform: scale(1.03); background: var(--green-wa-hover); color: var(--white); }

.footer {
  border-top: 1px solid var(--slate-200);
  text-align: center;
  color: var(--slate-500);
  font-size: .9rem;
  padding: 1.2rem 0 1.6rem;
}
.footer a { color: var(--slate-500); text-decoration: none; }
.footer a:hover { color: var(--blue-700); }

.prose h2 { margin: 1.5rem 0 .5rem; color: var(--slate-900); font-size: 1.25rem; text-align: left; }
.prose h3 { margin: 1rem 0 .4rem; color: var(--slate-900); font-size: 1.1rem; }
.prose p { margin: 0 0 1rem; color: var(--slate-600); }
.prose ul { margin: 0 0 1rem 1.2rem; color: var(--slate-600); }

.contatos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1rem; margin-top: 1.5rem; }
.contato-card {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.contato-card .telefone { font-size: 1.35rem; font-weight: 800; color: var(--slate-900); margin: .75rem 0 1rem; }

@media (min-width: 760px) {
  .section { padding: 4rem 0; }
  .hero-grid { grid-template-columns: 1.15fr .85fr; }
  .img-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .city-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (min-width: 980px) {
  .desktop-nav { display: flex; }
  .city-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
