/* =========================================================
   PG METAL CORTE E DOBRA — styles.css
   Tema CLARO (fundo branco/#F8F8F8, texto escuro).
   Charcoal #393E46 só em faixas/rodapé. Vermelho #EB3137 = acento/CTA.
   Selos: vermelho (seções da home) e cinza (heros de página).
   Fontes: Bebas Neue / Archivo / Montserrat.
   Importa os tokens exatos do site original.
   ========================================================= */
@import url("tokens.css");

:root {
  --container: 1200px;
  --radius: 8px;
  --radius-lg: 14px;
  --gap: 24px;
  --shadow-sm: 0 4px 14px rgba(34, 40, 49, .08);
  --shadow-md: 0 14px 40px rgba(34, 40, 49, .12);
  --header-h: 84px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --section-pad: clamp(56px, 8vw, 100px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background-color: var(--bg-page);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: var(--t-body-size);
  line-height: var(--t-body-lh);
  letter-spacing: var(--t-body-ls);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, picture, video, iframe, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, button { font: inherit; color: inherit; }

/* ---------- Tipografia ---------- */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 500; color: var(--text-main); }
h1 { font-size: var(--t-h1-size); line-height: var(--t-h1-lh); letter-spacing: var(--t-h1-ls); font-weight: var(--t-h1-weight); }
h2 { font-family: var(--font-display); font-size: var(--t-h2-size); line-height: var(--t-h2-lh); letter-spacing: var(--t-h2-ls); font-weight: var(--t-h2-weight); }
h3 { font-size: var(--t-h3-size); line-height: var(--t-h3-lh); letter-spacing: var(--t-h3-ls); }
h4 { font-size: var(--t-h4-size); line-height: var(--t-h4-lh); }
p { color: var(--color-gray-2); }
strong { color: var(--text-main); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding-block: var(--section-pad); }
.section--light { background: var(--bg-section-alt); }
.section--dark { background: var(--bg-dark); color: var(--text-on-dark); }
.section--dark p { color: var(--color-white-80); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.text-center { text-align: center; }

/* Eyebrow / selo — no site real é um "badge" (retângulo com texto branco).
   Vermelho nas seções da home; cinza nos heros de página. */
.eyebrow {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 1px;
  font-weight: 500;
  color: #fff;
  background: var(--color-red);
  display: inline-block;
  padding: 8px 14px;
  border-radius: 3px;
  margin: 0 0 18px;
}
.eyebrow.gray { background: var(--color-gray); }
.eyebrow.center { display: block; width: max-content; margin-inline: auto; }

.section-head { max-width: 760px; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 14px; }
.lead { font-size: 1.05rem; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-heading);
  text-transform: var(--t-btn-transform);
  font-size: var(--t-btn-size); letter-spacing: var(--t-btn-ls); font-weight: 500;
  padding: 15px 32px; border-radius: var(--radius);
  transition: transform .2s var(--ease), background .2s, color .2s, border-color .2s;
  line-height: 1; cursor: pointer;
}
.btn svg { width: 18px; height: 18px; }
.btn--red { background: var(--color-red); color: #fff; }
.btn--red:hover { background: #c81f26; transform: translateY(-2px); }
.btn--dark { background: var(--color-dark); color: #fff; }
.btn--dark:hover { background: #2c313a; transform: translateY(-2px); }
.btn--outline { border: 2px solid var(--color-dark); color: var(--color-dark); }
.btn--outline:hover { background: var(--color-dark); color: #fff; }
.btn--light { border: 2px solid rgba(255,255,255,.6); color: #fff; }
.btn--light:hover { background: #fff; color: var(--color-dark); border-color: #fff; }
.btn--block { width: 100%; justify-content: center; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--color-dark);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: var(--header-h); }
.brand img { height: 58px; width: auto; }

.primary-nav { display: flex; align-items: center; gap: 28px; }
.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-list > li { position: relative; }
.nav-list a, .submenu-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-heading); font-weight: 500;
  font-size: 15px; letter-spacing: .3px; color: #fff;
  padding: 10px 12px; border-radius: 6px; transition: color .2s;
}
.nav-list a:hover, .submenu-toggle:hover { color: var(--color-red); }
.nav-list a[aria-current="page"] { color: var(--color-red); }
.submenu-toggle svg { width: 14px; height: 14px; transition: transform .25s; }

.has-submenu > .submenu {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 250px;
  background: rgba(30,34,41,.72); backdrop-filter: blur(18px) saturate(160%); -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius); box-shadow: 0 18px 44px rgba(0,0,0,.4);
  padding: 8px; opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .2s, transform .2s, visibility .2s;
}
.has-submenu:hover > .submenu, .has-submenu:focus-within > .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu a { display: block; padding: 11px 14px; font-size: 14px; border-radius: 6px; color: #fff; }
.submenu a:hover { background: rgba(255,255,255,.12); color: var(--color-red); }

.header-phone {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-heading); font-weight: 600; font-size: 16px; color: #fff;
  padding: 10px 18px; border-radius: 6px; background: rgba(255,255,255,.1);
  transition: background .2s, color .2s; white-space: nowrap;
}
.header-phone svg { width: 17px; height: 17px; color: #fff; }
.header-phone:hover { background: var(--color-red); color: #fff; }
.header-phone:hover svg { color: #fff; }

.nav-toggle {
  display: none; width: 46px; height: 46px; border-radius: 6px;
  background: rgba(255,255,255,.1); position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 22px; height: 2px; background: #fff;
  transform: translate(-50%, -50%); transition: transform .3s var(--ease), opacity .2s;
}
.nav-toggle span::before { transform: translate(-50%, -7px); }
.nav-toggle span::after { transform: translate(-50%, 6px); }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translate(-50%, 0) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translate(-50%, 0) rotate(-45deg); }

/* ============================================================
   HERO (home)
   ============================================================ */
.hero {
  position: relative; display: flex; align-items: center;
  min-height: min(86vh, 720px); color: #fff; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(34,40,49,.88) 0%, rgba(34,40,49,.72) 45%, rgba(34,40,49,.45) 100%); }
.hero__inner { max-width: 720px; padding-block: 80px; }
.hero__eyebrow {
  display: inline-block; font-family: var(--font-heading); font-weight: 500;
  font-size: 13px; line-height: 1; letter-spacing: 1px; text-transform: uppercase;
  color: #fff; background: var(--color-gray); padding: 8px 14px; border-radius: 3px;
  margin-bottom: 22px;
}
.hero__title { color: #fff; margin-bottom: 22px; }
.hero__text { color: rgba(255,255,255,.9); max-width: 560px; margin-bottom: 34px; }

/* ============================================================
   SOBRE
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.about-media { position: relative; }
.about-media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.about-copy p + p { margin-top: 14px; }

/* Selo "2004 / Confiança desde o primeiro corte" sobre a foto */
.about-badge {
  position: absolute; top: 24px; right: 24px; background: var(--color-red); color: #fff;
  border-radius: var(--radius); padding: 22px 28px; text-align: center;
  min-width: 176px; max-width: 224px;
  box-shadow: var(--shadow-md);
}
.about-badge .num { display: block; font-family: var(--font-display); font-size: 46px; line-height: 1; letter-spacing: 1px; }
.about-badge .label { display: block; font-size: 12px; line-height: 1.45; letter-spacing: .3px;
  margin-top: 10px; padding-top: 10px; border-top: 1px solid rgba(255,255,255,.28); color: rgba(255,255,255,.92); }

/* Abas Qualidade / Expertise / Resultado */
.tabs { margin-top: 30px; }
.tabs__nav { display: flex; gap: 4px; border-bottom: 1px solid var(--color-light-2); }
.tabs__btn {
  font-family: var(--font-heading); font-weight: 500; font-size: 15px; color: var(--color-gray);
  padding: 12px 20px; border-bottom: 2px solid transparent; margin-bottom: -1px; transition: color .2s, border-color .2s;
}
.tabs__btn:hover { color: var(--text-main); }
.tabs__btn[aria-selected="true"] { color: var(--color-red); border-bottom-color: var(--color-red); }
.tabs__panel { display: none; padding: 22px 4px 0; }
.tabs__panel[data-active] { display: block; }
.tabs__panel p { font-size: 15px; }

/* ============================================================
   GALERIA (teaser home)
   ============================================================ */
.gallery-teaser { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-teaser a { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 1/1; background: var(--color-light-2); }
.gallery-teaser img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery-teaser a:hover img { transform: scale(1.08); }

/* ============================================================
   SERVIÇOS — cards (imagem com faixa escura sobre o produto)
   ============================================================ */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ---- Cards escuros (texto/botão sobre a imagem) ---- */
.services-home { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.services-home .intro { align-self: center; padding-right: 8px; }
.services-home .intro h2 { margin-bottom: 16px; }
.services-home .intro p { font-size: 15px; }
.svc-card {
  position: relative; display: block; overflow: hidden; border-radius: var(--radius-lg);
  aspect-ratio: 4/3; box-shadow: var(--shadow-sm);
}
.svc-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.svc-card::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,23,28,.05) 30%, rgba(20,23,28,.55) 68%, rgba(20,23,28,.86) 100%); }
.svc-card:hover img { transform: scale(1.06); }
.svc-card__label { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 22px 24px; color: #fff; }
.svc-card__label h3 { color: #fff; font-size: var(--t-h4-size); line-height: 1.2; margin-bottom: 4px; }
.svc-card__label .more {
  font-family: var(--font-heading); text-transform: uppercase; letter-spacing: .5px; font-size: 12px;
  color: rgba(255,255,255,.85); display: inline-flex; align-items: center; gap: 6px; transition: gap .2s;
}
.svc-card__label .more svg { width: 15px; height: 15px; }
.svc-card:hover .svc-card__label .more { gap: 11px; color: #fff; }

/* Blocos alternados imagem/texto (usados nas subpáginas de serviço) */
.infra-block { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.infra-block + .infra-block { margin-top: clamp(40px, 6vw, 72px); }
.infra-block:nth-child(even) .infra-block__media { order: -1; }
.infra-block__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.infra-block h3 { margin-bottom: 14px; }

/* ============================================================
   INFRAESTRUTURA — slider (texto + imagem por slide, home)
   ============================================================ */
.infra-slider { position: relative; }
.infra-track {
  display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  gap: 0; -ms-overflow-style: none; scrollbar-width: none;
}
.infra-track::-webkit-scrollbar { display: none; }
.infra-slide { flex: 0 0 100%; scroll-snap-align: start;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
  background: var(--bg-section-alt); }
.infra-slide__text p { color: var(--color-gray-2); }
.infra-slide__text .caption { display: block; font-family: var(--font-heading); font-weight: 500;
  color: var(--color-red); text-transform: uppercase; letter-spacing: .5px; font-size: 14px;
  margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--color-gray-3); }
.infra-slide__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.infra-nav { display: flex; align-items: center; gap: 16px; margin-top: 34px; }
.infra-dots { display: flex; gap: 8px; }
.infra-dots button { width: 10px; height: 10px; border-radius: 50%; background: var(--color-gray-3); transition: background .2s, width .2s; }
.infra-dots button[aria-current="true"] { background: var(--color-red); width: 26px; border-radius: 6px; }
.infra-arrows { display: flex; gap: 10px; margin-left: auto; }
.infra-arrows button { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--color-light-2);
  background: #fff; color: var(--text-main); display: flex; align-items: center; justify-content: center; transition: background .2s, color .2s, border-color .2s; }
.infra-arrows button:hover { background: var(--color-red); color: #fff; border-color: var(--color-red); }
.infra-arrows svg { width: 20px; height: 20px; }

/* ============================================================
   VÍDEOS
   ============================================================ */
.videos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.video-embed { position: relative; aspect-ratio: 16/9; border-radius: var(--radius-lg); overflow: hidden; background: #000; box-shadow: var(--shadow-sm); }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band { position: relative; overflow: hidden; color: #fff; }
.cta-band__bg { position: absolute; inset: 0; z-index: -2; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(34,40,49,.86); }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; padding-block: 64px; }
.cta-band h2 { color: #fff; max-width: 640px; }
.cta-band p { color: rgba(255,255,255,.85); margin-top: 8px; }

/* ============================================================
   PAGE HERO (subpáginas)
   ============================================================ */
.page-hero { position: relative; color: #fff; min-height: 80vh; display: flex; align-items: center; padding-block: clamp(64px, 10vw, 120px); overflow: hidden; }
.page-hero .container { width: 100%; }
.page-hero__bg { position: absolute; inset: 0; z-index: -2; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(34,40,49,.82); }
.page-hero .eyebrow { background: var(--color-gray); }
.page-hero h1 { color: #fff; max-width: 900px; }
.page-hero p { color: rgba(255,255,255,.9); margin-top: 16px; max-width: 640px; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,.7); margin-bottom: 20px; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { margin-inline: 8px; opacity: .5; }

/* ============================================================
   SUBPÁGINA DE SERVIÇO
   ============================================================ */
.service-detail { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: start; }
.service-detail__media { position: sticky; top: calc(var(--header-h) + 20px); display: grid; gap: 20px; }
.service-detail__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.service-block + .service-block { margin-top: 34px; }
.service-block h2 { font-size: var(--t-h2b-size); line-height: var(--t-h2b-lh); margin-bottom: 14px; }
.service-block p + p { margin-top: 12px; }
.extra-note { margin-top: 30px; padding: 26px 28px; background: var(--color-dark); color: #fff; border-radius: var(--radius-lg); }
.extra-note h2 { color: #fff; font-size: var(--t-h3-size); line-height: 1.25; }

/* Botões de compartilhar (subpáginas de serviço) */
.share-buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 26px; }
.share-btn { display: inline-flex; align-items: center; gap: 10px; color: #fff;
  font-family: var(--font-heading); font-weight: 500; font-size: 15px; padding: 12px 24px;
  border-radius: var(--radius); transition: transform .2s var(--ease), filter .2s; }
.share-btn svg { width: 20px; height: 20px; }
.share-btn:hover { transform: translateY(-2px); filter: brightness(1.07); }
.share-btn--fb { background: #3b5998; }
.share-btn--wa { background: #25d366; }

/* FAQ — accordion */
.faq { margin-top: 44px; display: grid; gap: 12px; }
.faq > h2 { margin-bottom: 6px; }
.faq__item { border: 1px solid var(--color-light-2); border-radius: var(--radius); overflow: hidden; background: #fff; }
.accordion-trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  text-align: left; padding: 20px 22px; font-family: var(--font-heading); font-weight: 500; font-size: 17px; color: var(--text-main); }
.accordion-trigger svg { flex-shrink: 0; width: 22px; height: 22px; color: var(--color-red); transition: transform .3s var(--ease); }
.accordion-trigger[aria-expanded="true"] svg { transform: rotate(45deg); }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.accordion-panel > div { padding: 0 22px 22px; color: var(--color-gray-2); font-size: 15px; }

/* ============================================================
   GALERIA — grid + lightbox
   ============================================================ */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-grid button { padding: 0; background: var(--color-light-2); border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; cursor: zoom-in; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery-grid button:hover img { transform: scale(1.07); }

.lightbox { position: fixed; inset: 0; z-index: 1000; background: rgba(20,23,28,.94);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; visibility: hidden; transition: opacity .25s; }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 92vw; max-height: 84vh; border-radius: var(--radius); }
.lightbox__close, .lightbox__nav {
  position: absolute; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: #fff; width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.6rem; transition: background .2s; }
.lightbox__close:hover, .lightbox__nav:hover { background: var(--color-red); }
.lightbox__close { top: 22px; right: 22px; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav.prev { left: 22px; } .lightbox__nav.next { right: 22px; }

/* ============================================================
   CONTATO
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 48px; align-items: start; }
.contact-list { display: grid; gap: 18px; margin-top: 28px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-list .ico { flex-shrink: 0; width: 46px; height: 46px; border-radius: 10px; background: var(--bg-section-alt);
  display: flex; align-items: center; justify-content: center; color: var(--color-red); }
.contact-list .ico svg { width: 20px; height: 20px; }
.contact-list b { display: block; font-family: var(--font-heading); font-weight: 600; color: var(--text-main); margin-bottom: 2px; }
.contact-list a:hover { color: var(--color-red); }

.form-card { background: #fff; border: 1px solid var(--color-light-2); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 16px; }
.field label.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.field input, .field textarea {
  width: 100%; background: var(--bg-section-alt); border: 1px solid var(--color-light-2);
  border-radius: var(--radius); padding: 15px 16px; color: var(--text-main); transition: border-color .2s, box-shadow .2s; }
.field input::placeholder, .field textarea::placeholder { color: var(--color-gray); }
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--color-red); box-shadow: 0 0 0 3px rgba(235,49,55,.12); background: #fff; }
.field input.invalid, .field textarea.invalid { border-color: var(--color-red); }
.field .error { display: none; color: var(--color-red); font-size: 13px; margin-top: 6px; }
.field .error.show { display: block; }
.consent { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 20px; font-size: 14px; color: var(--color-gray-2); }
.consent input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--color-red); flex-shrink: 0; }
.consent a { color: var(--color-red); text-decoration: underline; }
.consent .error { flex-basis: 100%; }
.hp { position: absolute; left: -9999px; opacity: 0; }
.form-status { display: none; padding: 14px 18px; border-radius: var(--radius); margin-bottom: 18px; font-size: 15px; }
.form-status.show { display: block; }
.form-status.ok { background: #e9f9ee; border: 1px solid #9dd8b0; color: #1c7a3e; }
.form-status.err { background: #fdeaea; border: 1px solid #f0a9ac; color: #b3262b; }

.map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--color-light-2); }
.map-wrap iframe { width: 100%; height: 440px; border: 0; display: block; }

/* ============================================================
   PROSE (privacidade)
   ============================================================ */
.prose { max-width: 820px; }
.prose h2 { font-size: var(--t-h3-size); margin-top: 36px; margin-bottom: 12px; }
.prose h3 { font-size: var(--t-h4-size); margin-top: 24px; margin-bottom: 8px; }
.prose p + p { margin-top: 12px; }
.prose ul { list-style: disc; padding-left: 22px; margin-top: 10px; }
.prose li { margin-bottom: 8px; color: var(--color-gray-2); }
.prose a { color: var(--color-red); text-decoration: underline; }

/* ============================================================
   FOOTER (charcoal)
   ============================================================ */
.site-footer { background: var(--color-dark); color: var(--color-white-80); padding-top: 68px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 40px; }
.footer-brand img { height: 50px; margin-bottom: 18px; }
.footer-brand p { color: var(--color-white-80); font-size: 15px; max-width: 320px; }
.footer-col h6 { font-family: var(--font-heading); text-transform: uppercase; letter-spacing: 1px; font-size: 15px; color: #fff; margin-top: 30px; margin-bottom: 14px; }
.footer-col h6:first-child { margin-top: 0; }
.footer-col ul { display: grid; gap: 9px; }
.footer-col a, .footer-col li, .footer-col p { color: var(--color-white-80); font-size: 14px; }
.footer-col a:hover { color: var(--color-red); }
.footer-col ul li, .footer-col .ico-line { display: flex; align-items: flex-start; gap: 8px; }
.footer-col ul li svg, .footer-col .ico-line svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 4px; color: var(--color-white-80); }
.footer-social { display: flex; gap: 12px; margin-top: 4px; }
.footer-social a { width: 44px; height: 44px; border-radius: 10px; background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center; color: #fff; transition: background .2s, transform .2s; }
.footer-social a:hover { background: var(--color-red); color: #fff; transform: translateY(-2px); }
.footer-social svg { width: 20px; height: 20px; }
.footer-bottom { margin-top: 52px; border-top: 1px solid rgba(255,255,255,.12); padding-block: 22px;
  display: flex; justify-content: center; align-items: center; text-align: center; gap: 6px; flex-wrap: wrap; color: var(--color-white-80); font-size: 13px; }
.footer-bottom a { color: #fff; display: inline-flex; align-items: center; gap: 6px; }
.footer-bottom a strong { color: inherit; }
.footer-bottom a img { display: inline-block; height: 15px; width: auto; }

/* ============================================================
   WHATSAPP FLUTUANTE
   ============================================================ */
.wa-float { position: fixed; left: 22px; bottom: 22px; z-index: 200; width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(0,0,0,.28); transition: transform .25s var(--ease); }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 34px; height: 34px; }
.wa-float::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25d366; animation: waPulse 2.4s infinite; pointer-events: none; }
@keyframes waPulse { 0% { transform: scale(1); opacity: .7; } 70% { transform: scale(1.5); opacity: 0; } 100% { opacity: 0; } }

/* ============================================================
   COOKIES / LGPD
   ============================================================ */
.cookie-bar { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 210; max-width: 540px; margin-inline: auto;
  background: #fff; border: 1px solid var(--color-light-2); border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  padding: 22px; display: none; }
.cookie-bar.show { display: block; }
.cookie-bar h3 { font-size: 18px; margin-bottom: 8px; }
.cookie-bar p { font-size: 14px; margin-bottom: 14px; }
.cookie-bar p a { color: var(--color-red); text-decoration: underline; }
.cookie-bar .actions { display: flex; gap: 10px; }

/* Reveal (só esconde quando há JS; sem JS o conteúdo aparece normalmente) */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; transition: none; } }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1024px) {
  :root { --t-h1-size: 42px; --t-h1-lh: 50px; --t-h2-size: 32px; --t-h2-lh: 40px; }
  .cards-grid, .videos-grid { grid-template-columns: repeat(2, 1fr); }
  .services-home { grid-template-columns: repeat(2, 1fr); }
  .services-home .intro { grid-column: 1 / -1; }
  .about-grid, .infra-slide, .infra-block, .service-detail, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .infra-block:nth-child(even) .infra-block__media { order: 0; }
  .service-detail__media { position: static; }
  .gallery-teaser { grid-template-columns: repeat(2, 1fr); }
  .about-badge { top: 16px; right: 16px; padding: 16px 20px; min-width: 140px; }
  .about-badge .num { font-size: 38px; }

  .nav-toggle { display: block; order: 3; }
  .primary-nav {
    position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--color-dark); border-bottom: 1px solid rgba(255,255,255,.1); padding: 12px 24px 24px;
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
    transform: translateY(-120%); transition: transform .35s var(--ease); box-shadow: var(--shadow-md); }
  .primary-nav.open { transform: translateY(0); }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-list > li { border-bottom: 1px solid rgba(255,255,255,.1); }
  .nav-list a, .submenu-toggle { padding: 15px 6px; font-size: 16px; width: 100%; justify-content: space-between; }
  .has-submenu { display: flex; flex-wrap: wrap; align-items: center; }
  .has-submenu > a { flex: 1; width: auto; }
  .submenu-toggle { padding: 15px; width: auto; flex-shrink: 0; }
  .has-submenu > .submenu {
    flex: 1 0 100%; position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    border: none; background: rgba(0,0,0,.18); border-radius: 10px;
    padding: 6px; margin: 0 0 12px; display: none; min-width: 0; }
  .has-submenu > .submenu a { display: block; padding: 11px 14px; font-size: 14px; border-radius: 6px; color: rgba(255,255,255,.8); text-shadow: none; }
  .has-submenu > .submenu a:hover { background: rgba(255,255,255,.08); color: var(--color-red); }
  .has-submenu.open > .submenu { display: block; }
  .has-submenu.open .submenu-toggle svg { transform: rotate(180deg); }
  .header-phone { margin-top: 16px; justify-content: center; }
}
@media (max-width: 620px) {
  :root { --t-h1-size: 34px; --t-h1-lh: 42px; --t-h2-size: 28px; --t-h2-lh: 36px; --t-hero-size: 34px; }
  .cards-grid, .videos-grid, .gallery-grid, .services-home { grid-template-columns: 1fr; }
  .services-home .intro { grid-column: auto; }
  .gallery-grid, .gallery-teaser { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
}
