/* ================================================
   base.css — estilos globais compartilhados
   Incluir em todas as páginas do site
   ================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #222; line-height: 1.6; background: #fff;
}

img { max-width: 100%; height: auto; border-radius: 8px; display: block; }

a { color: #0d6efd; }

.container { max-width: 1140px; margin: auto; padding: 2rem 1rem; }

section { padding: 3rem 0; }

.section-header { text-align: center; margin-bottom: 2rem; }
.section-header h2 { font-size: 2rem; margin-bottom: .5rem; }
.section-header p { color: #333; font-size: 1.05rem; }

/* Botões */
.btn { display: inline-block; padding: 13px 22px; border-radius: 8px; font-weight: 700; text-decoration: none; font-size: 1rem; border: none; cursor: pointer; transition: filter .2s; }
.btn:hover { filter: brightness(.92); }
.btn-yellow { background: #ffc107; color: #000; }
.btn-wp     { background: #075e54; color: #fff; }
.btn-phone  { background: #fff; color: #0d6efd; border: 2px solid #0d6efd; }
.btn-blue   { background: #0d6efd; color: #fff; }

/* Hero/Header */
.page-hero {
  background: linear-gradient(135deg,#0d6efd,#0b5ed7);
  color: #fff; text-align: center; padding: 2.5rem 1rem 3rem;
}
.page-hero h1 { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; line-height: 1.25; }
.page-hero p  { max-width: 720px; margin: 0 auto 1.5rem; font-size: 1.05rem; }
.page-hero .cta-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.page-hero .trust { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; font-size: .92rem; margin-top: 1.25rem; }
.page-hero .trust span::before { content: "✓ "; }

/* Grid de conteúdo */
.content-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 2rem; }
@media (max-width: 900px) { .content-grid { grid-template-columns: 1fr; } }

/* Sidebar card */
.side-card { border: 1px solid #ddd; border-radius: 12px; padding: 1.5rem; background: #f8f9fa; position: sticky; top: 72px; }
.side-card h3 { margin-bottom: 1rem; font-size: 1.1rem; }
.side-card .btn { display: block; width: 100%; text-align: center; margin-bottom: .75rem; padding: 14px; }
.side-card .info-row { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid #ddd; font-size: .92rem; }
.side-card .info-row p { margin-bottom: .6rem; }

/* Cards de serviço */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 1.5rem; }
.scard { border: 1px solid #ddd; border-radius: 10px; padding: 1.5rem; text-align: center; transition: box-shadow .2s, transform .2s; }
.scard:hover { box-shadow: 0 4px 16px rgba(0,0,0,.10); transform: translateY(-3px); }
.scard .icon { font-size: 2.2rem; margin-bottom: .75rem; }
.scard h3 { margin-bottom: .5rem; font-size: 1rem; }
.scard p { color: #444; font-size: .9rem; margin-bottom: 1rem; }
.scard a { color: #0d6efd; font-weight: 700; text-decoration: underline; }

/* Bairros */
.bairros-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px,1fr)); gap: .9rem; }
.bairro-btn {
  display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 11px 8px; background: #fff; border: 2px solid #0d6efd; color: #0d6efd;
  border-radius: 8px; font-size: .9375rem; font-weight: 600; text-decoration: none;
  min-height: 44px; transition: background .18s, color .18s;
}
.bairro-btn:hover { background: #0d6efd; color: #fff; }

/* Tags de serviço */
.tags { display: flex; flex-wrap: wrap; gap: .6rem; }
.tag { background: #f0f5ff; border: 1px solid #b8d0ff; color: #0b5ed7; padding: .4rem .9rem; border-radius: 20px; font-size: .88rem; font-weight: 600; }

/* Marcas */
.marcas { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; margin-top: 1rem; }
.marca { background: #f0f5ff; border: 1px solid #b8d0ff; color: #0b5ed7; padding: .45rem 1rem; border-radius: 20px; font-size: .92rem; font-weight: 600; }

/* Preços */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px,1fr)); gap: 1.25rem; }
.price-card { border: 1px solid #ddd; border-radius: 10px; padding: 1.5rem; text-align: center; }
.price-card .p-icon { font-size: 2rem; margin-bottom: .5rem; }
.price-card h3 { font-size: .95rem; margin-bottom: .4rem; }
.price-card .p-val { font-size: 1.15rem; font-weight: 700; color: #0d6efd; margin-bottom: .3rem; }
.price-card p { font-size: .82rem; color: #555; }
.price-note { text-align: center; background: #f8f9fa; padding: .75rem 1rem; border-radius: 8px; font-size: .88rem; color: #555; margin-top: 1.25rem; }

/* Alerta */
.alert { background: #e9f7ef; border-left: 4px solid #075e54; padding: 1rem; margin: 2rem 0; border-radius: 4px; }
.alert a { color: #075e54; font-weight: 700; }

/* Citação */
blockquote { border-left: 4px solid #aaa; padding-left: 1rem; margin: 2rem 0; font-style: italic; color: #333; }

/* Lista */
.check-list { list-style: none; padding: 0; }
.check-list li { padding: .7rem 0; border-bottom: 1px solid #eee; font-size: 1rem; }

/* FAQ */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid #ddd; border-radius: 8px; margin-bottom: .75rem; overflow: hidden; }
.faq-q { padding: 1.1rem 1.4rem; background: #fff; border: none; width: 100%; text-align: left; font-weight: 700; font-size: 1rem; cursor: pointer; transition: background .2s; }
.faq-q:hover { background: #f8f9fa; }
.faq-a { padding: 1.1rem 1.4rem; border-top: 1px solid #ddd; display: none; }
.faq-a.open { display: block; }

/* Seção bairros vizinhos */
.viz-section { background: #f8f9fa; border-radius: 10px; padding: 1.5rem; margin-top: 2rem; }
.viz-section h3 { margin-bottom: 1rem; font-size: 1.05rem; }

/* Seção fundo cinza */
.bg-gray { background: #f8f9fa; }

/* Footer */
footer { background: #111; color: #fff; text-align: center; padding: 1.75rem 1rem; font-size: .9rem; }
footer a { color: #ffc107; text-decoration: underline; font-weight: 700; }
.foot-social { margin-top: .75rem; display: flex; justify-content: center; gap: 1.5rem; }
.foot-social a { color: #fff; text-decoration: none; font-weight: 700; }
.foot-social a:hover { color: #ffc107; }

@media (max-width: 768px) {
  .page-hero h1 { font-size: 1.6rem; }
  .page-hero .cta-row { flex-direction: column; }
  .page-hero .cta-row .btn { width: 100%; text-align: center; }
  .section-header h2 { font-size: 1.5rem; }
}