/* ==========================================================================
   Arte da Pintura — site oficial
   Tokens + base + componentes partilhados
   ========================================================================== */

/* Fallback faces com métricas ajustadas — evitam o "salto" de layout (CLS)
   enquanto as fontes do Google ainda estão a carregar. */
@font-face {
  font-family: 'Montserrat Fallback';
  src: local('Arial');
  size-adjust: 112.9%;
  ascent-override: 92.5%;
  descent-override: 24%;
  line-gap-override: 0%;
}
@font-face {
  font-family: 'Open Sans Fallback';
  src: local('Arial');
  size-adjust: 106.5%;
  ascent-override: 101.6%;
  descent-override: 27.9%;
  line-gap-override: 0%;
}

:root {
  --navy: #1A3A52;
  --navy-deep: #0F2638;
  --navy-soft: #2A4D6A;
  --blue: #5078A0;
  --blue-soft: #7A9BBE;
  --orange: #E67E22;
  --orange-soft: #F0964A;
  --ink: #2A2A2A;
  --ink-soft: #5A5A5A;
  --paper: #FFFFFF;
  --cream: #F7F4EE;
  --gray-50: #F8F8F8;
  --gray-100: #EFEFEF;
  --gray-200: #E4E4E4;
  --gray-300: #C9C9C9;

  --font-display: 'Montserrat', 'Montserrat Fallback', system-ui, sans-serif;
  --font-body: 'Open Sans', 'Open Sans Fallback', system-ui, sans-serif;

  --container: 1240px;
  --pad-x: clamp(20px, 5vw, 56px);
  --pad-y-sm: clamp(56px, 8vw, 88px);
  --pad-y-md: clamp(72px, 10vw, 120px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: #fff;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin: 0;
}
p { margin: 0; }

/* ---------- Containers ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* ---------- Kicker / labels ---------- */
.kicker {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--blue);
}
.kicker.orange { color: var(--orange); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
  min-height: 48px;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-deep); }
.btn-orange { background: var(--orange); color: var(--navy); }
.btn-orange:hover { background: var(--orange-soft); }
.btn-ghost { border-color: var(--navy); color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: #fff; }
.btn-ghost-light { border-color: rgba(255,255,255,0.4); color: #fff; }
.btn-ghost-light:hover { background: #fff; color: var(--navy); border-color: #fff; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--gray-100);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 24px;
}
.site-header .logo img { height: 38px; width: auto; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-nav a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15.5px;
  color: var(--ink);
  padding: 8px 0;
  position: relative;
}
.site-nav a:hover { color: var(--navy); }
.site-nav a.active { color: var(--navy); font-weight: 600; }
.site-nav a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--orange);
}
.site-header .header-cta { display: inline-flex; font-size: 14.5px; }
.site-nav .mobile-cta { display: none; }

/* mobile nav */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--gray-200);
  background: #fff;
  align-items: center; justify-content: center;
  border-radius: 4px;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  display: block;
  width: 20px; height: 2px;
  background: var(--navy);
  position: relative;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; }
  .site-header .header-cta { display: none; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 16px;
    border-bottom: 1px solid var(--gray-100);
    display: none;
  }
  .site-nav.open { display: flex; }
  .site-nav a {
    padding: 14px var(--pad-x);
    border-top: 1px solid var(--gray-100);
    font-size: 15px;
  }
  .site-nav a.active::after { display: none; }
  .site-nav .mobile-cta {
    display: block;
    margin: 12px var(--pad-x) 0;
    padding: 14px 18px;
    background: var(--orange);
    color: var(--navy);
    text-align: center;
    border-top: none;
    font-weight: 700;
  }
  .site-nav .mobile-cta::after { display: none; }
}

/* ---------- Section utilities ---------- */
.section { padding-top: var(--pad-y-md); padding-bottom: var(--pad-y-md); }
.section-sm { padding-top: var(--pad-y-sm); padding-bottom: var(--pad-y-sm); }
.section-cream { background: var(--cream); }
.section-navy { background: var(--navy); color: #fff; }
.section-navy h1, .section-navy h2, .section-navy h3 { color: #fff; }
.section-navy .kicker { color: var(--blue-soft); }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.section-head h2 {
  font-size: clamp(36px, 5vw, 56px);
  margin-top: 12px;
}
.section-head p {
  max-width: 360px;
  color: var(--ink-soft);
  font-size: 14px;
}
.section-navy .section-head p { color: rgba(255,255,255,0.7); }

/* ---------- Italic accent ---------- */
.italic {
  font-style: italic;
  font-weight: 300;
  color: var(--orange);
}
.italic-blue {
  font-style: italic;
  font-weight: 300;
  color: var(--blue);
}
.section-navy .italic-blue { color: var(--blue-soft); }

/* ---------- Hero ---------- */
.hero {
  padding-top: clamp(48px, 7vw, 88px);
  padding-bottom: clamp(56px, 8vw, 96px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.hero h1 {
  font-size: clamp(48px, 7.5vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin-top: 18px;
}
.hero p.lead {
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--ink);
  margin-top: 28px;
  max-width: 480px;
  line-height: 1.6;
}
.hero-actions { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-img {
  height: clamp(280px, 42vw, 540px);
  background-size: cover;
  background-position: center;
  background-color: var(--gray-100);
}
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
}

/* page hero (subpages) */
.page-hero {
  padding: clamp(56px, 8vw, 96px) 0 clamp(40px, 5vw, 64px);
  background: var(--cream);
  border-bottom: 1px solid var(--gray-200);
}
.page-hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.95;
  margin-top: 14px;
}
.page-hero p {
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--ink-soft);
  margin-top: 18px;
  max-width: 620px;
  line-height: 1.6;
}

/* ---------- Manifesto strip ---------- */
.manifesto {
  background: var(--cream);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: clamp(56px, 8vw, 88px) 0;
}
.manifesto h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.08;
  max-width: 980px;
  margin-top: 18px;
}

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
}
.service-card {
  background: #fff;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: background-color .2s ease;
}
.service-card:hover { background: var(--cream); }
.service-card h3 {
  font-size: 22px;
  letter-spacing: -0.005em;
  font-weight: 700;
}
.service-card p {
  margin-top: 10px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  flex: 1;
}
.service-card .more {
  margin-top: 28px;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--blue);
}
.service-card:hover .more { color: var(--orange); }
.services-cta {
  margin-top: clamp(28px, 4vw, 44px);
  display: flex;
  justify-content: center;
}
@media (max-width: 880px) {
  .services-grid { grid-template-columns: 1fr; }
  .services-cta .btn { width: 100%; justify-content: center; }
}

/* services detail (full page) */
.service-detail {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--gray-200);
}
.service-detail .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 36px;
  color: var(--orange);
  letter-spacing: -0.02em;
  line-height: 1;
}
.service-detail h3 {
  font-size: clamp(22px, 2vw, 28px);
  margin-bottom: 12px;
}
.service-detail p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
  max-width: 720px;
}
.service-detail .chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.service-detail .chip {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 12px;
  padding: 6px 12px;
  background: var(--cream);
  color: var(--navy);
  border: 1px solid var(--gray-200);
}

/* ---------- Portfolio grid ---------- */
.portfolio {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 1024px) { .portfolio { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .portfolio { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .portfolio { grid-template-columns: 1fr; } }
.portfolio-item {
  cursor: pointer;
  background: var(--gray-100);
}
.portfolio-item .img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform .4s ease;
}
.portfolio-item:hover .img { transform: scale(1.03); }
.portfolio-item .meta {
  padding: 12px 4px 0;
}
.portfolio-item .title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
}
.portfolio-item .sub {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 2px;
}
.portfolio-item .img-wrap {
  overflow: hidden;
}

/* ---------- Testimonials / Google reviews ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}
@media (max-width: 880px) { .reviews-grid { grid-template-columns: 1fr; gap: 32px; } }
.review .stars {
  color: var(--orange);
  font-size: 16px;
  letter-spacing: 2px;
}
.review .quote {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: 18px;
  line-height: 1.45;
  margin-top: 14px;
  color: inherit;
}
.review .author {
  margin-top: 18px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-soft);
}
.section-navy .review .author { color: var(--blue-soft); }
.reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  padding: 16px 22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  transition: background-color .15s ease, border-color .15s ease;
}
a.reviews-badge:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.3); }
.reviews-badge .g {
  width: 28px; height: 28px;
  background: #fff;
  color: #4285F4;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
}
.reviews-badge .text { font-size: 13px; }
.reviews-badge .text strong { font-family: var(--font-display); font-weight: 700; }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid var(--gray-200);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 4px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-weight: 300;
  font-size: 28px;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .answer {
  padding: 0 4px 22px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
  max-width: 720px;
}

/* ---------- Footer CTA ---------- */
.cta-strip {
  padding: clamp(56px, 8vw, 88px) 0;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}
.cta-grid h2 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 0.95;
}
.cta-card {
  background: var(--cream);
  border: 1px solid var(--gray-200);
  padding: 32px;
}
.cta-card .label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
}
.cta-card .phone {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  color: var(--navy);
  margin-top: 14px;
  letter-spacing: -0.01em;
}
.cta-card .phone + .phone { margin-top: 4px; }
.cta-card .email { display: block; margin-top: 14px; font-size: 14px; color: var(--ink); }
.cta-card .address { display: block; margin-top: 14px; font-size: 13px; color: var(--ink-soft); line-height: 1.55; }
.cta-card .address a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; text-decoration-color: var(--blue-soft); }
.cta-card .address a:hover { color: var(--navy); }
.cta-card .social-row { display: flex; gap: 10px; margin-top: 18px; }
.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  background: #fff;
  color: var(--navy);
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.social-btn svg { width: 19px; height: 19px; display: block; }
.social-btn:hover { background: var(--navy); border-color: var(--navy); color: #fff; transform: translateY(-2px); }
@media (max-width: 880px) { .cta-grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.82);
  padding: clamp(56px, 7vw, 80px) 0 32px;
  font-size: 14px;
}
.site-footer .grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
}
@media (max-width: 880px) { .site-footer .grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .site-footer .grid { grid-template-columns: 1fr; } }
.site-footer h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.site-footer a { color: rgba(255,255,255,0.82); }
.site-footer a:hover { color: var(--orange); }
.site-footer .logo img { height: 40px; width: auto; filter: brightness(0) invert(1); margin-bottom: 18px; }
.site-footer .desc { color: rgba(255,255,255,0.6); line-height: 1.6; max-width: 320px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer .bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18), 0 2px 4px rgba(0,0,0,0.08);
  z-index: 80;
  transition: transform .15s ease, box-shadow .15s ease;
}
.wa-float:hover { transform: scale(1.06); box-shadow: 0 12px 28px rgba(0,0,0,0.22); }
.wa-float svg { width: 32px; height: 32px; fill: #fff; }
@media (max-width: 480px) {
  .wa-float { width: 54px; height: 54px; right: 16px; bottom: 16px; }
  .wa-float svg { width: 28px; height: 28px; }
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15,38,56,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(1200px, 100%);
  max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.lightbox .lb-caption {
  position: absolute;
  bottom: 8px; left: 0; right: 0;
  text-align: center;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
.lightbox .lb-close, .lightbox .lb-prev, .lightbox .lb-next {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 20px;
  font-family: var(--font-display);
  cursor: pointer;
  transition: background-color .15s ease;
}
.lightbox button:hover { background: rgba(255,255,255,0.2); }
.lightbox .lb-close { top: 20px; right: 20px; }
.lightbox .lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ---------- Cookie banner ---------- */
.cookie {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  background: #fff;
  border: 1px solid var(--gray-200);
  box-shadow: 0 12px 36px rgba(15,38,56,0.18);
  padding: 18px 22px;
  display: none;
  align-items: center;
  gap: 18px;
  z-index: 70;
  max-width: 720px;
  margin: 0 auto;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.cookie.open { display: flex; flex-wrap: wrap; }
.cookie strong { color: var(--navy); font-family: var(--font-display); font-weight: 700; }
.cookie .actions { display: flex; gap: 8px; margin-left: auto; }
.cookie .actions button {
  padding: 10px 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  border: 1px solid var(--gray-200);
  background: #fff;
}
.cookie .actions .accept { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-200);
}
.contact-item:first-child { padding-top: 0; }
.contact-item .icon {
  width: 44px; height: 44px;
  background: var(--cream);
  border: 1px solid var(--gray-200);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}
.contact-item .label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
}
.contact-item .value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  margin-top: 4px;
  letter-spacing: -0.005em;
}
.contact-item .sub {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 4px;
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.contact-item .num-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 4px;
}
.contact-item .num-line + .num-line { margin-top: 8px; }
.contact-item .num-line .value { margin-top: 0; white-space: nowrap; }
.wa-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1FA855;
  transition: color .15s ease;
}
.wa-link svg { width: 15px; height: 15px; }
.wa-link:hover { color: #157A3D; }

/* ---------- Contact form ---------- */
.contact-form { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.contact-form .field { display: flex; flex-direction: column; gap: 7px; }
.contact-form .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
}
.contact-form input:not([type="file"]):not([type="checkbox"]),
.contact-form select,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  padding: 12px 14px;
  border: 1px solid var(--gray-200);
  background: #fff;
  border-radius: 0;
  width: 100%;
  box-sizing: border-box;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.contact-form input:not([type="file"]):not([type="checkbox"]):focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(122,155,190,0.28);
}
.contact-form textarea { resize: vertical; min-height: 112px; line-height: 1.55; }
.contact-form button[type="submit"] { align-self: flex-start; margin-top: 2px; }
.contact-form .form-status {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  margin: 2px 0 0;
  min-height: 1.2em;
}
.contact-form .form-status.ok { color: #157A3D; }
.contact-form .form-status.err { color: var(--orange); }
.contact-form .opt { font-weight: 500; color: var(--ink-soft); letter-spacing: 0; text-transform: none; }
.contact-form input[type="file"] { position: absolute; width: 1px; height: 1px; opacity: 0; overflow: hidden; }
.file-drop {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  padding: 22px 18px;
  border: 1px dashed var(--gray-300);
  background: var(--cream);
  color: var(--ink-soft);
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease, color .15s ease;
}
.file-drop:hover, .file-drop.dragover { border-color: var(--navy); color: var(--navy); background: #fff; }
.file-drop svg { width: 26px; height: 26px; color: var(--blue); }
.file-drop-text { font-size: 14px; text-transform: none; letter-spacing: 0; font-family: var(--font-body); }
.file-drop-text strong { color: var(--navy); }
.file-drop-hint { font-family: var(--font-display); font-weight: 600; font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; }
.file-list { display: flex; flex-direction: column; gap: 4px; }
.file-list:not(:empty) { margin-top: 4px; }
.file-list .file-chip { font-size: 13px; color: var(--navy); display: flex; align-items: center; gap: 7px; }
.file-list .file-chip::before { content: ""; width: 6px; height: 6px; background: var(--orange); flex-shrink: 0; }
.contact-form .consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.5;
  color: var(--ink-soft);
  cursor: pointer;
}
.consent input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  border: 1px solid var(--gray-300);
  background: #fff;
  cursor: pointer;
  display: inline-grid;
  place-content: center;
  transition: background .15s ease, border-color .15s ease;
}
.consent input[type="checkbox"]::before {
  content: "";
  width: 10px; height: 10px;
  transform: scale(0);
  transition: transform .12s ease;
  box-shadow: inset 1em 1em var(--navy);
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0, 43% 62%);
}
.consent input[type="checkbox"]:checked { border-color: var(--navy); }
.consent input[type="checkbox"]:checked::before { transform: scale(1); }
.consent input[type="checkbox"]:focus-visible { outline: 2px solid var(--blue-soft); outline-offset: 2px; }
.consent a { color: var(--navy); text-decoration: underline; text-underline-offset: 2px; }
@media (max-width: 560px) { .contact-form .field-row { grid-template-columns: 1fr; } }
.map-frame {
  aspect-ratio: 4 / 3;
  width: 100%;
  border: 1px solid var(--gray-200);
}

/* ---------- Process steps ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--gray-200);
}
.process .step {
  padding: 32px 24px 32px 0;
  border-bottom: 1px solid var(--gray-200);
}
.process .step + .step { padding-left: 32px; border-left: 1px solid var(--gray-200); }
.process .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  color: var(--orange);
  letter-spacing: -0.02em;
  line-height: 1;
}
.process .step h3 {
  font-size: 18px;
  margin-top: 14px;
}
.process .step p {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-top: 8px;
  line-height: 1.55;
}
@media (max-width: 880px) {
  .process { grid-template-columns: 1fr 1fr; }
  .process .step + .step { padding-left: 24px; }
}
@media (max-width: 480px) {
  .process { grid-template-columns: 1fr; }
  .process .step + .step { padding-left: 0; border-left: none; }
}

/* ---------- About / valores (quem somos) ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; } }
.about-grid .about-img {
  height: clamp(300px, 40vw, 480px);
  background-size: cover;
  background-position: center;
  background-color: var(--gray-100);
}
.about-grid p + p { margin-top: 16px; }
.about-grid a.inline {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--blue-soft);
}
.about-grid a.inline:hover { text-decoration-color: var(--orange); color: var(--orange); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
}
@media (max-width: 720px) { .values-grid { grid-template-columns: 1fr; } }
.value-cell { background: #fff; padding: 32px; }
.value-cell .vlabel {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
}
.value-cell h3 { font-size: 21px; margin-top: 12px; }
.value-cell p { margin-top: 10px; font-size: 14px; color: var(--ink-soft); line-height: 1.6; }

/* ---------- Zonas (área servida) ---------- */
.zonas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
}
@media (max-width: 880px) { .zonas-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .zonas-grid { grid-template-columns: 1fr; } }
.zona { background: #fff; padding: 26px 24px; }
.zona h3 { font-size: 19px; font-weight: 700; }
.zona p { margin-top: 8px; font-size: 13.5px; color: var(--ink-soft); line-height: 1.55; }
.zona .freg {
  margin-top: 14px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  line-height: 1.5;
}

/* ---------- Lista de inclusões (checklist) ---------- */
.checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 40px;
  margin-top: 28px;
  max-width: 860px;
}
@media (max-width: 720px) { .checklist { grid-template-columns: 1fr; } }
.checklist li {
  list-style: none;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.5;
}
.checklist li .tick {
  flex-shrink: 0;
  color: var(--orange);
  font-weight: 800;
  font-size: 15px;
  font-family: var(--font-display);
  line-height: 1.5;
}

/* ---------- Misc small ---------- */
.divider-orange { width: 36px; height: 3px; background: var(--orange); margin: 18px 0; }
