﻿/* =================================================================
   Concreto — style.css
   Barlow Condensed (títulos) + DM Sans (corpo)
   ================================================================= */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'DM Sans', system-ui, sans-serif; color: #1a1a1a; background: #fff; line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ── TOKENS ── */
:root {
  --laranja: #d44f00;
  --laranja-esc: #a83d00;
  --wa: #25d366;
  --wa-esc: #1dba5a;
  --preto: #0d0d0d;
  --cinza-esc: #222;
  --cinza: #555;
  --cinza-cl: #888;
  --fundo: #f5f4f1;
  --borda: #e2e0db;
  --branco: #fff;
  --r: 4px;
  --r-md: 8px;
  --sombra: 0 2px 16px rgba(0,0,0,0.09);
  --sombra-lg: 0 8px 40px rgba(0,0,0,0.15);
}

/* ── LAYOUT ── */
.page-wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ── TIPOGRAFIA ── */
h1, h2, h3, h4 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; letter-spacing: -0.01em; line-height: 1.1; color: var(--preto); }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.4rem; font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; font-family: 'DM Sans', sans-serif; }
p { color: var(--cinza); font-size: 0.95rem; }

.eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--laranja);
  border-left: 3px solid var(--laranja);
  padding-left: 10px;
  margin-bottom: 14px;
}
.eyebrow--light { color: rgba(255,255,255,0.6); border-color: rgba(255,255,255,0.4); }

.sec-header { text-align: center; max-width: 620px; margin: 0 auto 56px; }
.sec-header h2 { margin-bottom: 12px; }
.sec-header p { color: var(--cinza); font-size: 0.97rem; }
.sec-header .eyebrow { display: block; }

/* ── BOTÕES WA ── */
.cta-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--wa); color: #fff;
  padding: 14px 28px; border-radius: var(--r-md);
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 0.95rem;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  border: none;
}
.cta-wa:hover { background: var(--wa-esc); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.35); }
.cta-wa--dark { background: #0d0d0d; color: #fff; }
.cta-wa--dark:hover { background: #2a2a2a; box-shadow: 0 6px 20px rgba(0,0,0,0.3); }
.cta-wa--full { width: 100%; justify-content: center; }
.cta-sec {
  display: inline-flex; align-items: center;
  color: rgba(255,255,255,0.8); font-size: 0.88rem; font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.3); padding-bottom: 2px;
  transition: color 0.2s;
}
.cta-sec:hover { color: #fff; }

/* SVG e ícones não devem herdar object-fit */
svg, .float-wa img, .wa-opcao-icon svg, .cta-wa svg, .wa-btn-line svg,
.srv-cta svg, .hdr-cta svg, button svg, a svg {
  width: auto; height: auto; object-fit: unset; flex-shrink: 0;
}
.urgency-bar {
  background: var(--preto); color: rgba(255,255,255,0.85);
  text-align: center; padding: 9px 20px; font-size: 0.82rem; font-weight: 500;
}
.urgency-bar a { color: var(--wa); font-weight: 700; text-decoration: underline; }

/* ── HEADER ── */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: #fff; border-bottom: 1px solid var(--borda);
  transition: box-shadow 0.25s;
}
.site-header.shadow { box-shadow: var(--sombra); }
.hdr-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 24px; height: 64px;
}
.brand {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.brand-block { display: flex; flex-direction: column; line-height: 1; }
.brand-top { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.35rem; letter-spacing: 0.12em; color: var(--cinza-esc); line-height: 1; }
.brand-bottom { display: none; }
.brand-bar { width: 2px; height: 32px; background: var(--laranja); margin: 0 2px; }
.brand-sub { font-size: 0.68rem; font-weight: 500; color: var(--cinza-cl); letter-spacing: 0.06em; text-transform: uppercase; }
.brand--light .brand-top { color: #fff; }
.brand--light .brand-sub { color: rgba(255,255,255,0.5); }

.main-nav { display: flex; gap: 24px; margin-left: auto; }
.main-nav a { font-size: 0.87rem; font-weight: 500; color: var(--cinza); transition: color 0.2s; }
.main-nav a:hover { color: var(--laranja); }
.hdr-cta {
  flex-shrink: 0; background: var(--laranja); color: #fff;
  padding: 9px 20px; border-radius: var(--r); font-size: 0.82rem; font-weight: 600;
  transition: background 0.2s;
}
.hdr-cta:hover { background: var(--laranja-esc); }
.nav-toggle {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 36px; height: 36px; background: none;
  border: 1px solid var(--borda); border-radius: var(--r); padding: 0 8px; margin-left: auto;
}
.nav-toggle span { display: block; height: 2px; background: var(--cinza-esc); border-radius: 2px; transition: all 0.25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 72vh; overflow: hidden;
}
.hero-photo { position: relative; min-height: 360px; }
.hero-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: contrast(1.2) brightness(1.06) saturate(1.28); }
.hero-photo-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.3), transparent); }
.hero-body {
  background: var(--preto);
  display: flex; flex-direction: column; justify-content: center;
  padding: 72px 56px; color: #fff;
}
.hero-eyebrow {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.hero-title { color: #fff; line-height: 1.05; margin-bottom: 20px; }
.hero-title em { font-style: normal; color: var(--laranja); }
.hero-text { color: rgba(255,255,255,0.75); font-size: 0.97rem; line-height: 1.7; margin-bottom: 36px; max-width: 440px; }
.hero-btns { display: flex; flex-direction: column; gap: 12px; margin-bottom: 48px; align-items: flex-start; }
.hero-nums { display: grid; grid-template-columns: repeat(4, auto); gap: 0; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 32px; align-items: center; }
.hnum { text-align: center; padding: 0 16px; }
.hnum:first-child { padding-left: 0; }
.hnum strong { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 1.7rem; font-weight: 900; color: #fff; line-height: 1; }
.hnum span { font-size: 0.7rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.07em; margin-top: 3px; display: block; }
.hnum-sep { width: 1px; height: 36px; background: rgba(255,255,255,0.12); }

/* ── FLOAT WA ── */
.float-wa {
  position: fixed; bottom: 24px; right: 24px; z-index: 800;
  background: var(--wa); color: #fff;
  display: flex; align-items: center; gap: 8px;
  padding: 12px 20px; border-radius: 50px;
  font-weight: 600; font-size: 0.88rem;
  box-shadow: 0 4px 18px rgba(37,211,102,0.4);
  transition: all 0.25s;
}
.float-wa:hover { background: var(--wa-esc); transform: translateY(-2px); }
.float-wa svg { flex-shrink: 0; }

/* ── SOBRE ── */
.sobre-section {
  display: grid; grid-template-columns: 1fr 1fr;
}
.sobre-img-col {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}
.sobre-img-col img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: contrast(1.1) brightness(1.04) saturate(1.15);
}
.sobre-text-col {
  background: var(--fundo); padding: 72px 56px;
  display: flex; flex-direction: column; justify-content: center;
}
.sobre-text-col h2 { margin-bottom: 20px; }
.sobre-text-col p { margin-bottom: 14px; font-size: 0.95rem; }
.sobre-checklist { display: flex; flex-direction: column; gap: 10px; margin: 24px 0 32px; }
.check-item { display: flex; align-items: center; gap: 12px; }
.check-mark {
  width: 20px; height: 20px; flex-shrink: 0;
  background: var(--laranja); border-radius: 50%;
  position: relative;
}
.check-mark::after {
  content: ''; position: absolute; left: 5px; top: 3px;
  width: 10px; height: 6px;
  border-left: 2px solid #fff; border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
.check-item span { font-size: 0.88rem; font-weight: 500; color: var(--cinza-esc); }
.wa-btn-line {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; border: 2px solid var(--wa); color: var(--wa);
  padding: 11px 24px; border-radius: var(--r-md);
  font-weight: 600; font-size: 0.9rem; width: fit-content;
  transition: all 0.2s;
}
.wa-btn-line:hover { background: var(--wa); color: #fff; }

/* ── SERVIÇOS ── */
.servicos-section { padding: 64px 0; background: #fff; }
.servicos-grid { display: flex; flex-direction: column; gap: 0; }
.srv-card {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 320px; overflow: hidden;
  border-bottom: 1px solid var(--borda);
}
.srv-img { overflow: hidden; max-height: 320px; }
.srv-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; transition: transform 0.5s, filter 0.5s; filter: contrast(1.1) brightness(1.04) saturate(1.18); }
.srv-card:hover .srv-img img { transform: scale(1.04); filter: contrast(1.15) brightness(1.07) saturate(1.25); }
.srv-body {
  padding: 56px 48px; display: flex; flex-direction: column;
  justify-content: center; background: var(--fundo);
}
.srv-card--alt .srv-body { background: var(--preto); }
.srv-card--alt .srv-body h3 { color: #fff; }
.srv-card--alt .srv-body p { color: rgba(255,255,255,0.7); }
.srv-card--alt .srv-body .srv-list li { color: rgba(255,255,255,0.65); }
.srv-card--alt .srv-body .srv-list li::before { color: var(--laranja); }
.srv-tag {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--laranja); margin-bottom: 10px;
}
.srv-body h3 { margin-bottom: 12px; font-size: 1.5rem; }
.srv-body p { font-size: 0.93rem; margin-bottom: 16px; line-height: 1.7; }
.srv-list { list-style: none; display: flex; flex-direction: column; gap: 6px; margin-bottom: 28px; }
.srv-list li { font-size: 0.87rem; color: var(--cinza); padding-left: 14px; position: relative; }
.srv-list li::before { content: '—'; position: absolute; left: 0; color: var(--laranja); }
.srv-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 700; font-size: 0.88rem; color: var(--laranja);
  border-bottom: 1px solid var(--laranja); padding-bottom: 2px; width: fit-content;
  transition: gap 0.2s;
}
.srv-cta:hover { gap: 10px; }
.srv-card--alt .srv-cta { color: var(--wa); border-color: var(--wa); }

/* ── CTA FAIXA ── */
.cta-faixa { background: var(--laranja); padding: 64px 0; }
.cta-faixa-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-faixa-text h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.cta-faixa-text p { color: rgba(255,255,255,0.85); margin-top: 8px; }

/* ── GALERIA ── */
.galeria-section { padding: 64px 0; background: var(--fundo); }

.galeria-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 5px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.gal-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #111;
  border-radius: var(--r);
}
/* foto principal ocupa as 2 linhas à esquerda */
.gal-item--main { grid-row: span 2; }
.gal-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: contrast(1.12) brightness(1.04) saturate(1.2);
}
.gal-item:hover img {
  transform: scale(1.05);
  filter: contrast(1.2) brightness(1.08) saturate(1.28);
}
/* enquadramento individual para esconder partes ruins */
.gal-item:nth-child(1) img { object-position: center 30%; }
.gal-item:nth-child(2) img { object-position: center 40%; }
.gal-item:nth-child(3) img { object-position: center 35%; }
.gal-item:nth-child(4) img { object-position: center 45%; }
.gal-item:nth-child(5) img { object-position: center 30%; }

.gal-item-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
  padding: 32px 16px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s;
}
.gal-item:hover .gal-item-label { opacity: 1; }

/* segunda linha: 3 fotos menores embaixo */
.galeria-row2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  height: 200px;
  max-width: 1180px;
  margin: 5px auto 0;
  padding: 0 24px;
}
.galeria-row2 .gal-item {
  position: relative;
  height: 200px;
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer;
  background: #111;
}

.galeria-cta { text-align: center; margin-top: 32px; }

/* LIGHTBOX */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.93);
  align-items: center; justify-content: center;
}
.lightbox.ativo { display: flex; }
.lightbox figure { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox figure img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: var(--r); width: auto; height: auto; }
.lightbox figcaption { color: rgba(255,255,255,0.6); text-align: center; font-size: 0.82rem; margin-top: 10px; }
.lb-close {
  position: fixed; top: 20px; right: 24px; z-index: 2001;
  background: none; border: none; color: #fff; font-size: 2.2rem; line-height: 1;
  cursor: pointer; opacity: 0.7; transition: opacity 0.2s;
}
.lb-close:hover { opacity: 1; }

/* ── TRAÇOS FCK ── */
.tracos-section { padding: 64px 0; background: var(--preto); }
.tracos-section .sec-header h2 { color: #fff; }
.tracos-section .sec-header p { color: rgba(255,255,255,0.6); }
.tracos-section .eyebrow { color: rgba(255,255,255,0.45); border-color: rgba(255,255,255,0.3); }
.tracos-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px; }
.traco-item {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  padding: 32px 24px; display: flex; flex-direction: column; gap: 12px;
  transition: background 0.25s;
}
.traco-item:hover { background: rgba(255,255,255,0.08); }
.traco-item--dest { background: rgba(212,79,0,0.12); border-color: rgba(212,79,0,0.3); }
.traco-item--dest:hover { background: rgba(212,79,0,0.2); }
.traco-fck {
  font-family: 'Barlow Condensed', sans-serif; font-size: 2.4rem;
  font-weight: 900; color: #fff; line-height: 1; letter-spacing: -0.02em;
}
.traco-item--dest .traco-fck { color: var(--laranja); }
.traco-info h4 { color: #fff; font-size: 0.95rem; margin-bottom: 6px; }
.traco-info p { color: rgba(255,255,255,0.55); font-size: 0.82rem; line-height: 1.6; margin-bottom: 16px; }
.traco-btn {
  display: inline-block; background: var(--wa); color: #fff;
  padding: 9px 18px; border-radius: var(--r); font-size: 0.8rem;
  font-weight: 700; text-align: center; transition: background 0.2s; margin-top: auto;
}
.traco-btn:hover { background: var(--wa-esc); }
.traco-btn--dest { background: var(--laranja); }
.traco-btn--dest:hover { background: var(--laranja-esc); }
.tracos-nota { color: rgba(255,255,255,0.3); font-size: 0.78rem; text-align: center; margin-top: 28px; }

/* ── DIFERENCIAIS ── */
.dif-section {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.dif-img-half { overflow: hidden; }
.dif-img-half img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.12) brightness(1.04) saturate(1.18); }.dif-content-half {
  background: var(--cinza-esc); padding: 72px 56px;
  display: flex; flex-direction: column; justify-content: center;
}
.dif-content-half h2 { color: #fff; margin-bottom: 36px; }
.dif-itens { display: flex; flex-direction: column; gap: 28px; margin-bottom: 40px; }
.dif-item { display: flex; gap: 20px; align-items: flex-start; }
.dif-num {
  font-family: 'Barlow Condensed', sans-serif; font-size: 2rem;
  font-weight: 900; color: var(--laranja); line-height: 1; flex-shrink: 0;
  width: 40px;
}
.dif-item h4 { color: #fff; font-size: 0.97rem; margin-bottom: 5px; }
.dif-item p { color: rgba(255,255,255,0.6); font-size: 0.87rem; line-height: 1.6; }

/* ── DEPOIMENTOS ── */
.dep-section { padding: 64px 0; background: var(--fundo); }
.dep-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.dep-card {
  background: #fff; padding: 32px; border-radius: var(--r-md);
  border: 1px solid var(--borda); box-shadow: var(--sombra);
}
.dep-card--accent { background: var(--preto); border-color: transparent; }
.dep-card--accent blockquote { color: rgba(255,255,255,0.8) !important; }
.dep-card--accent cite { color: rgba(255,255,255,0.5) !important; }
.dep-card--accent cite strong { color: #fff !important; }
.dep-rating { font-size: 1rem; color: #f59e0b; letter-spacing: 2px; margin-bottom: 16px; }
.dep-card blockquote { font-size: 0.93rem; color: var(--cinza); line-height: 1.7; font-style: italic; margin-bottom: 18px; }
.dep-card cite { font-size: 0.82rem; color: var(--cinza-cl); font-style: normal; }
.dep-card cite strong { color: var(--cinza-esc); font-weight: 700; }

/* ── EXPLICAÇÕES ── */
.explica-section { padding: 64px 0; background: #fff; }
.explica-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.explica-card {
  border: 1px solid var(--borda); border-radius: var(--r-md);
  padding: 32px 28px; position: relative;
  transition: box-shadow 0.25s, transform 0.25s;
}
.explica-card:hover { box-shadow: var(--sombra-lg); transform: translateY(-3px); }
.explica-num {
  font-family: 'Barlow Condensed', sans-serif; font-size: 3.5rem;
  font-weight: 900; color: rgba(212,79,0,0.1); line-height: 1;
  position: absolute; top: 16px; right: 20px; letter-spacing: -0.03em;
}
.explica-card h4 { font-size: 1rem; font-weight: 700; color: var(--preto); margin-bottom: 12px; line-height: 1.3; padding-right: 40px; }
.explica-card p { font-size: 0.87rem; color: var(--cinza); line-height: 1.75; margin-bottom: 10px; }
.explica-card p:last-of-type { margin-bottom: 0; }
.explica-cta { text-align: center; margin-top: 48px; }

/* ── CONTATO ── */
.contato-section { padding: 64px 0; background: var(--preto); }
.contato-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contato-info h2 { color: #fff; margin-bottom: 16px; }
.contato-info p { color: rgba(255,255,255,0.6); font-size: 0.93rem; margin-bottom: 32px; }
.contato-wa-list { display: flex; flex-direction: column; gap: 12px; }
.wa-opcao {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md); padding: 16px 20px;
  transition: background 0.2s, border-color 0.2s;
}
.wa-opcao:hover { background: rgba(37,211,102,0.1); border-color: rgba(37,211,102,0.4); }
.wa-opcao-icon {
  width: 36px; height: 36px; background: var(--wa); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  color: #fff;
}
.wa-opcao div:last-child { display: flex; flex-direction: column; gap: 2px; }
.wa-opcao strong { font-size: 0.9rem; color: #fff; font-weight: 600; }
.wa-opcao span { font-size: 0.78rem; color: rgba(255,255,255,0.45); }

/* Form */
.contato-form-wrap {
  background: #fff; border-radius: var(--r-md); padding: 40px;
}
.contato-form-wrap h3 { font-size: 1.3rem; color: var(--preto); margin-bottom: 6px; }
.form-sub { font-size: 0.85rem; color: var(--cinza-cl); margin-bottom: 24px; }
.field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.field label { font-size: 0.8rem; font-weight: 600; color: var(--cinza-esc); }
.field input, .field select, .field textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--borda); border-radius: var(--r);
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; color: var(--cinza-esc);
  background: #fafafa; outline: none; transition: border-color 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--laranja); background: #fff; }
.field-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 18px; }
.field-check input { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; accent-color: var(--laranja); }
.field-check label { font-size: 0.8rem; color: var(--cinza); line-height: 1.5; }
.field-check a { color: var(--laranja); }

/* ── FOOTER ── */
.site-footer { background: #0a0a0a; padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; }
.footer-brand p { color: rgba(255,255,255,0.45); font-size: 0.87rem; margin: 18px 0 20px; line-height: 1.65; }
.footer-tel {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--wa); color: #fff; padding: 9px 18px;
  border-radius: var(--r); font-size: 0.85rem; font-weight: 600;
  transition: background 0.2s;
}
.footer-tel:hover { background: var(--wa-esc); }
.footer-col h5 { font-family: 'DM Sans', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 0.87rem; color: rgba(255,255,255,0.55); margin-bottom: 9px; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 0; }
.footer-bottom-row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom-row p { font-size: 0.78rem; color: rgba(255,255,255,0.25); }
.footer-bottom-row a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-bottom-row a:hover { color: #fff; }

/* ── COOKIE BAR ── */
.cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 700;
  background: var(--cinza-esc); border-top: 3px solid var(--laranja);
  padding: 16px 0;
  transform: translateY(100%); transition: transform 0.4s ease;
}
.cookie-bar.visivel { transform: translateY(0); }
.cookie-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.cookie-bar p { font-size: 0.83rem; color: rgba(255,255,255,0.75); flex: 1; min-width: 220px; }
.cookie-bar a { color: var(--laranja); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn-ok {
  background: var(--laranja); color: #fff; border: none;
  padding: 9px 20px; border-radius: var(--r); font-size: 0.82rem; font-weight: 700;
  transition: background 0.2s;
}
.cookie-btn-ok:hover { background: var(--laranja-esc); }
.cookie-btn-no {
  background: transparent; color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.2); padding: 9px 20px;
  border-radius: var(--r); font-size: 0.82rem; font-weight: 600;
  transition: all 0.2s;
}
.cookie-btn-no:hover { background: rgba(255,255,255,0.06); color: #fff; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visivel { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .tracos-grid { grid-template-columns: repeat(3,1fr); }
  .explica-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; }
  .hero-photo { min-height: 320px; }
  .hero-body { padding: 48px 32px; }
  .hero-nums { grid-template-columns: repeat(2,1fr); gap: 16px; }
  .hnum-sep { display: none; }
  .sobre-section { grid-template-columns: 1fr; }
  .sobre-img-col { min-height: 280px; position: relative; }
  .sobre-text-col { padding: 48px 32px; }
  .srv-card { grid-template-columns: 1fr; min-height: auto; }
  .srv-card--alt .srv-img { order: -1; }
  .srv-img { min-height: 240px; }
  .dif-section { grid-template-columns: 1fr; }
  .dif-img-half { min-height: 320px; }
  .dif-content-half { padding: 48px 32px; }
  .contato-inner { grid-template-columns: 1fr; }
  .galeria-showcase { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px; }
  .gal-item--main { grid-row: span 2; }
  .galeria-row2 { grid-template-columns: repeat(3,1fr); height: 150px; }
  .galeria-row2 .gal-item { height: 150px; }
  .dep-grid { grid-template-columns: 1fr; }
  .cta-faixa-inner { flex-direction: column; text-align: center; }
  .main-nav { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: #fff; padding: 20px 24px; border-bottom: 1px solid var(--borda); gap: 16px; box-shadow: var(--sombra); z-index: 800; }
  .main-nav.aberto { display: flex; }
  .nav-toggle { display: flex; }
  .hdr-cta { display: none; }
  .tracos-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 560px) {
  .explica-grid { grid-template-columns: 1fr; }
  .tracos-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .galeria-showcase { grid-template-columns: 1fr 1fr; grid-template-rows: 150px 150px; }
  .galeria-row2 { grid-template-columns: 1fr 1fr; height: 120px; }
  .galeria-row2 .gal-item { height: 120px; }
  .galeria-row2 .gal-item:last-child { display: none; }
  .float-wa span { display: none; }
  .float-wa { padding: 13px; border-radius: 50%; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .cta-wa { justify-content: center; }
}
