/* ============================================================
   Sólida Acabamentos e Reformas Especiais — style.css
   ============================================================ */

:root {
  /* Paleta — ancorada na logo (fundo escuro, tons de azul) */
  --navy-950: #070f1c;
  --navy-900: #0b1a2c;
  --navy-800: #112640;
  --navy-700: #17324f;
  --blue-600: #2f6fa8;
  --blue-500: #3f85c2;
  --blue-400: #6fa8d8;
  --steel-300: #b7c4d4;
  --steel-100: #e6ecf3;

  --gray-50: #f6f8fa;
  --gray-100: #edf1f5;
  --gray-200: #dbe2e9;
  --gray-500: #64748b;
  --gray-600: #4a5568;
  --gray-800: #1e2733;
  --gray-900: #10161f;

  --accent: #e08a3c;
  --accent-dark: #c46f28;
  --accent-light: #f2b073;

  --white: #ffffff;

  --font-head: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(7, 15, 28, 0.08);
  --shadow-md: 0 8px 24px rgba(7, 15, 28, 0.12);
  --shadow-lg: 0 20px 50px rgba(7, 15, 28, 0.22);

  --wrap: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.1;
  margin: 0 0 0.5em;
  color: var(--navy-900);
}
p { margin: 0 0 1em; }
button { font-family: inherit; cursor: pointer; }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 20px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: var(--white);
  padding: 10px 16px;
  z-index: 999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.96rem;
  border: 2px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-accent:hover { background: var(--accent-dark); box-shadow: var(--shadow-md); }
.btn-outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.08); }
.btn-navy {
  background: var(--navy-900);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-800); box-shadow: var(--shadow-md); }
.btn-ghost-dark {
  border-color: var(--navy-800);
  color: var(--navy-900);
}
.btn-ghost-dark:hover { background: var(--navy-900); color: var(--white); }
.btn-block { width: 100%; justify-content: center; }
.btn-lg { padding: 15px 32px; font-size: 1.02rem; }

/* ---------- Header ---------- */
#header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(7, 15, 28, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand img { height: 42px; width: auto; }
.brand-text {
  font-family: var(--font-head);
  color: var(--white);
  font-size: 1.32rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.05;
}
.brand-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--blue-400);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  color: var(--steel-100);
  font-size: 0.94rem;
  font-weight: 500;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--white);
  border-color: var(--accent);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--steel-100);
  font-weight: 600;
  font-size: 0.92rem;
}
.nav-phone svg { flex-shrink: 0; color: var(--accent); }

.menu-btn {
  display: none;
  background: none;
  border: none;
  width: 42px;
  height: 42px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1100px 600px at 82% -10%, rgba(63, 133, 194, 0.35), transparent 60%),
    linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 60%, var(--navy-800) 100%);
  color: var(--white);
  padding: 76px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.5), transparent 75%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-light);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--accent);
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.3rem, 4.4vw, 3.6rem);
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--blue-400);
}
.hero .sub {
  color: var(--steel-300);
  font-size: 1.12rem;
  max-width: 54ch;
  margin-bottom: 30px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-trust {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 26px;
}
.hero-trust .t b {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--white);
  line-height: 1;
}
.hero-trust .t span {
  color: var(--steel-300);
  font-size: 0.84rem;
}

.hero-card {
  position: relative;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 30px;
  backdrop-filter: blur(6px);
}
.hero-card h3 { color: var(--white); font-size: 1.3rem; }
.hero-card p { color: var(--steel-300); font-size: 0.94rem; }
.hero-card ul { margin: 18px 0 0; display: grid; gap: 12px; }
.hero-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--steel-100);
  font-size: 0.92rem;
}
.hero-card li svg { flex-shrink: 0; margin-top: 3px; color: var(--accent); }

/* ---------- Seções genéricas ---------- */
section { padding: 84px 0; }
.section-alt { background: var(--gray-50); }
.section-navy {
  background: linear-gradient(180deg, var(--navy-900), var(--navy-950));
  color: var(--white);
}
.section-head {
  max-width: 640px;
  margin: 0 auto 52px;
  text-align: center;
}
.section-head.left { margin-left: 0; text-align: left; }
.section-head .eyebrow { color: var(--blue-600); justify-content: center; }
.section-head.left .eyebrow { justify-content: flex-start; }
.section-navy .section-head .eyebrow { color: var(--accent-light); }
.section-head h2 { font-size: clamp(1.9rem, 3vw, 2.5rem); }
.section-navy .section-head h2 { color: var(--white); }
.section-head p { color: var(--gray-600); font-size: 1.05rem; }
.section-navy .section-head p { color: var(--steel-300); }

/* ---------- Cards genéricos ---------- */
.grid {
  display: grid;
  gap: 26px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.card .icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: var(--navy-900);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.card p { color: var(--gray-600); font-size: 0.95rem; margin-bottom: 0; }
.card .tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: rgba(47, 111, 168, 0.1);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}

/* ---------- Diferenciais (home) ---------- */
.dif-list { display: grid; gap: 22px; }
.dif-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.dif-item .num {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--blue-500);
  border: 2px solid var(--blue-500);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dif-item h4 { font-size: 1.05rem; margin-bottom: 4px; }
.dif-item p { color: var(--gray-600); font-size: 0.93rem; margin: 0; }

/* ---------- Placeholder de obra (galeria/cases) ---------- */
.case-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy-800);
  aspect-ratio: 4/3;
  display: flex;
  align-items: flex-end;
  border: 1px solid var(--gray-200);
}
.case-card .ph {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, var(--navy-700), var(--navy-950)),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.05) 0 2px, transparent 2px 16px);
}
.case-card .ph svg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 34%;
  height: 34%;
  color: rgba(255, 255, 255, 0.18);
}
.case-card .info {
  position: relative;
  width: 100%;
  padding: 20px;
  background: linear-gradient(0deg, rgba(0,0,0,0.55), transparent);
  color: var(--white);
}
.case-card .cat {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 4px;
}
.case-card h4 { color: var(--white); font-size: 1.02rem; margin: 0; }

.gallery-note {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gray-50);
  border: 1px dashed var(--gray-200);
  border-radius: var(--radius);
  padding: 16px 20px;
  color: var(--gray-600);
  font-size: 0.9rem;
  margin-top: 30px;
}
.gallery-note a { color: var(--blue-600); font-weight: 600; }
.gallery-note a:hover { text-decoration: underline; }

/* ---------- Filtros (portfólio) ---------- */
.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 42px;
}
.filter-btn {
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--gray-600);
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.15s ease;
}
.filter-btn:hover { border-color: var(--blue-500); color: var(--navy-900); }
.filter-btn.active {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: var(--white);
}

/* ---------- Sócios (sobre) ---------- */
.socios { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.socio-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  gap: 20px;
}
.avatar {
  flex-shrink: 0;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--blue-600), var(--navy-900));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 700;
}
.socio-card h3 { font-size: 1.15rem; margin-bottom: 2px; }
.socio-card .role {
  color: var(--blue-600);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  display: block;
}
.socio-card p { color: var(--gray-600); font-size: 0.92rem; margin: 0; }

/* ---------- Timeline / história ---------- */
.historia {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}
.historia-art {
  background: linear-gradient(160deg, var(--navy-800), var(--navy-950));
  border-radius: var(--radius-lg);
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
}
.historia-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.045) 0 2px, transparent 2px 18px);
}
.historia-art .yrs {
  position: absolute;
  bottom: 28px;
  left: 28px;
  color: var(--white);
}
.historia-art .yrs b {
  font-family: var(--font-head);
  font-size: 3.6rem;
  line-height: 1;
  display: block;
  color: var(--blue-400);
}
.historia-art .yrs span {
  color: var(--steel-300);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.historia p { color: var(--gray-600); }
.historia p strong { color: var(--navy-900); }

/* ---------- MVV ---------- */
.mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.mvv-card {
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  color: var(--white);
}
.mvv-card:nth-child(1) { background: linear-gradient(155deg, var(--navy-800), var(--navy-950)); }
.mvv-card:nth-child(2) { background: linear-gradient(155deg, var(--blue-600), var(--navy-900)); }
.mvv-card:nth-child(3) { background: linear-gradient(155deg, var(--navy-700), var(--navy-950)); }
.mvv-card h3 { color: var(--white); font-size: 1.2rem; }
.mvv-card p { color: var(--steel-100); font-size: 0.93rem; margin: 0; }
.mvv-card ul { display: grid; gap: 10px; margin: 0; }
.mvv-card li {
  display: flex;
  gap: 8px;
  color: var(--steel-100);
  font-size: 0.92rem;
}
.mvv-card li::before { content: "—"; color: var(--accent-light); flex-shrink: 0; }

/* ---------- CTA final ---------- */
.cta-final {
  background:
    radial-gradient(900px 400px at 15% 0%, rgba(224, 138, 60, 0.18), transparent 60%),
    linear-gradient(155deg, var(--navy-900), var(--navy-950));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-final h2 { color: var(--white); margin-bottom: 8px; font-size: 1.9rem; }
.cta-final p { color: var(--steel-300); margin: 0; }
.cta-final .actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Serviços (página) ---------- */
.servico-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 22px;
  padding: 30px 0;
  border-bottom: 1px solid var(--gray-200);
}
.servico-row:first-of-type { padding-top: 0; }
.servico-row:last-of-type { border-bottom: none; }
.servico-row .icon {
  width: 68px;
  height: 68px;
  border-radius: 14px;
  background: var(--navy-900);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.servico-row h3 { font-size: 1.28rem; margin-bottom: 6px; }
.servico-row p { color: var(--gray-600); margin-bottom: 10px; }
.servico-row .list-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.servico-row .list-inline li {
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
}

/* ---------- Contato ---------- */
.contato-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.contato-info-card {
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px;
}
.contato-info-card h3 { color: var(--white); }
.contato-info-card p { color: var(--steel-300); font-size: 0.94rem; }
.contato-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.contato-item:first-of-type { border-top: none; padding-top: 22px; }
.contato-item .ic {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contato-item b { display: block; color: var(--white); font-size: 0.95rem; }
.contato-item span, .contato-item a { color: var(--steel-300); font-size: 0.9rem; }
.contato-item a:hover { color: var(--white); }

.form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--gray-50);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  background: var(--white);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note {
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-top: 12px;
}
.form-msg {
  display: none;
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  background: rgba(47, 111, 168, 0.1);
  color: var(--navy-900);
  font-size: 0.88rem;
}
.form-msg.show { display: block; }

/* ---------- Mapa de atuação ---------- */
.area-box {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 26px;
  background: var(--gray-50);
  margin-top: 26px;
}
.area-box h4 { font-size: 1rem; margin-bottom: 8px; }
.area-box p { color: var(--gray-600); font-size: 0.9rem; margin: 0; }
.area-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.area-tags span {
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--navy-900);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
}

/* ---------- Footer ---------- */
#footer {
  background: var(--navy-950);
  color: var(--steel-300);
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand img { height: 36px; }
.footer-brand span { font-family: var(--font-head); color: var(--white); font-size: 1.2rem; font-weight: 700; }
.footer-col h5 {
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { font-size: 0.9rem; color: var(--steel-300); }
.footer-col a:hover { color: var(--white); }
.footer-col p { font-size: 0.88rem; color: var(--steel-300); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  font-size: 0.82rem;
  color: var(--gray-500);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a { color: var(--gray-500); }
.footer-bottom a:hover { color: var(--steel-300); }
.social-row { display: flex; gap: 10px; margin-top: 16px; }
.social-row a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: var(--steel-100);
  transition: background 0.15s ease;
}
.social-row a:hover { background: var(--accent); color: var(--white); }

/* ---------- Página interna: hero secundário ---------- */
.page-hero {
  background: linear-gradient(180deg, var(--navy-950), var(--navy-900));
  color: var(--white);
  padding: 56px 0 64px;
  position: relative;
}
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--steel-300);
  font-size: 0.85rem;
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--steel-300); }
.breadcrumb a:hover { color: var(--white); }
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 3.6vw, 2.8rem); margin-bottom: 12px; }
.page-hero p { color: var(--steel-300); max-width: 62ch; font-size: 1.05rem; margin: 0; }

/* ---------- Utilitários ---------- */
.reveal { opacity: 0; transform: translateY(16px); animation: reveal 0.7s ease forwards; }
.reveal[data-d="1"] { animation-delay: 0.05s; }
.reveal[data-d="2"] { animation-delay: 0.15s; }
.reveal[data-d="3"] { animation-delay: 0.25s; }
@keyframes reveal { to { opacity: 1; transform: translateY(0); } }

.center { text-align: center; }

/* ============ Responsivo ============ */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { order: -1; }
  .historia { grid-template-columns: 1fr; }
  .historia-art { max-width: 420px; aspect-ratio: 16/10; }
  .socios { grid-template-columns: 1fr; }
  .mvv-grid { grid-template-columns: 1fr; }
  .contato-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav-links, .nav-phone-wrap { display: none; }
  .menu-btn { display: flex; }
  #header.open .nav-links {
    display: flex;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--navy-950);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 4px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  #header.open .nav-links a { width: 100%; padding: 12px 4px; }
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  section { padding: 60px 0; }
  .hero { padding: 48px 0 64px; }
  .hero-trust { gap: 22px; }
  .cta-final { flex-direction: column; text-align: center; padding: 40px 26px; }
  .cta-final .actions { justify-content: center; }
  .servico-row { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 520px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
}
