/* =========================================================
   FONSECA POUBEL — Serviços de Construção Civil
   Folha de estilo do site institucional
   ========================================================= */

:root {
  --fp-orange: #ef8537;
  --fp-heading: #9e5424;
  --fp-accent-mid: #c96a2e;
  --fp-gray: #737373;
  --fp-text: #262626;
  --fp-bg-box: #f7f3ef;
  --fp-bg-zebra: #f4f0ec;
  --fp-border: #e3ddd6;
  --fp-black: #141414;
  --fp-black-soft: #1d1d1d;
  --fp-white: #ffffff;

  --container: 1200px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 10px rgba(20, 20, 20, 0.06);
  --shadow-md: 0 12px 32px rgba(20, 20, 20, 0.12);
  --shadow-lg: 0 24px 60px rgba(20, 20, 20, 0.18);

  --font-head: "Poppins", "Segoe UI", Arial, sans-serif;
  --font-body: "Work Sans", "Segoe UI", Arial, sans-serif;

  scroll-behavior: smooth;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  color: var(--fp-text);
  background: var(--fp-white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  margin: 0;
  color: var(--fp-text);
  line-height: 1.2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fp-accent-mid);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: var(--fp-orange);
  display: inline-block;
}

.section-head {
  max-width: 680px;
  margin-bottom: 48px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.6vw, 40px); }
.section-head p { color: var(--fp-gray); font-size: 17px; margin-top: 14px; }

.section-pad { padding: 96px 0; }
@media (max-width: 720px) {
  .section-pad { padding: 64px 0; }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary {
  background: var(--fp-orange);
  color: #fff;
  box-shadow: 0 10px 24px rgba(239, 133, 55, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(239, 133, 55, 0.45); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.55);
  color: #fff;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.btn-dark {
  background: var(--fp-black);
  color: #fff;
}
.btn-dark:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost-orange {
  background: transparent;
  border-color: var(--fp-orange);
  color: var(--fp-heading);
}
.btn-ghost-orange:hover { background: var(--fp-orange); color: #fff; transform: translateY(-2px); }

/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  background: #fff;
  box-shadow: 0 2px 24px rgba(0,0,0,0.10);
  padding: 14px 0;
  transition: box-shadow 0.3s ease, padding 0.3s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 4px 28px rgba(0,0,0,0.14);
  padding: 9px 0;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.3s ease;
}
.brand img { height: 50px; width: auto; display: block; transition: height 0.3s ease; }
.site-header.is-scrolled .brand img { height: 40px; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 14.5px;
  color: var(--fp-text);
  padding: 10px 16px;
  border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease;
}
.main-nav a:hover { background: var(--fp-bg-box); color: var(--fp-heading); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-actions .btn-primary { padding: 12px 22px; font-size: 14px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--fp-bg-box);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 600;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: "";
  display: block;
  width: 20px; height: 2px;
  background: var(--fp-text);
  border-radius: 2px;
  transition: all .25s ease;
}
.nav-toggle::before { transform: translateY(-6px); }
.nav-toggle::after { transform: translateY(4px); }
.nav-toggle { position: relative; }
.nav-toggle span { position: absolute; }
.nav-toggle::before, .nav-toggle::after { position: absolute; }

@media (max-width: 980px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-actions .btn-primary span { display: none; }
  .header-actions .btn-primary { padding: 12px 14px; }
}

body.nav-open .nav-toggle { background: rgba(255,255,255,0.15); }
body.nav-open .nav-toggle span { opacity: 0; }
body.nav-open .nav-toggle::before { transform: translateY(0) rotate(45deg); background: #fff; }
body.nav-open .nav-toggle::after { transform: translateY(0) rotate(-45deg); background: #fff; }
body.nav-open .site-header .brand img { filter: none; }

body.nav-open .main-nav {
  display: flex;
  position: fixed;
  inset: 0;
  top: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--fp-black);
  gap: 6px;
  z-index: 400;
}
body.nav-open .main-nav a { color: #fff; font-size: 22px; padding: 14px 24px; }

/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  background: #1a1a1a url("../img/hero.jpg") center 30% / cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.35) 35%, rgba(10,10,10,0.65) 78%, rgba(10,10,10,0.92) 100%);
}
.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 90px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffd9b8;
  background: rgba(239, 133, 55, 0.16);
  border: 1px solid rgba(239, 133, 55, 0.5);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 26px;
}
.hero-tag svg { width: 16px; height: 16px; }

.hero h1 {
  font-size: clamp(34px, 5.4vw, 64px);
  max-width: 820px;
  color: #fff;
  letter-spacing: -0.01em;
}
.hero h1 em {
  font-style: normal;
  color: var(--fp-orange);
}
.hero p.lead {
  margin-top: 22px;
  max-width: 600px;
  font-size: 19px;
  color: rgba(255,255,255,0.86);
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.hero-stats {
  position: relative;
  z-index: 2;
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 0 64px;
  justify-content: start;
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 36px;
}
.hero-stats .stat { padding-right: 20px; }
.hero-stats .stat .num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 38px);
  color: #fff;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.hero-stats .stat .num .plus { color: var(--fp-orange); font-size: 0.6em; }
.hero-stats .stat .num .count-word { font-size: 0.62em; }
.hero-stats .stat .label {
  margin-top: 6px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.02em;
}
@media (max-width: 820px) {
  .hero-stats { grid-template-columns: repeat(2, auto); gap: 0 32px; }
}

/* =========================================================
   MARQUEE / WAVE DIVIDER
   ========================================================= */

.wave-divider { line-height: 0; }
.wave-divider svg { width: 100%; height: 60px; display: block; }

/* =========================================================
   SOBRE / A EMPRESA
   ========================================================= */

.about { background: var(--fp-white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-copy p { color: #4a4a4a; font-size: 16.5px; margin: 0 0 16px; }
.about-copy p:last-child { margin-bottom: 0; }

.about-media { position: relative; }
.about-media .frame-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.about-media .frame-main img { width: 100%; height: 100%; object-fit: cover; }
.about-media .frame-accent {
  position: absolute;
  bottom: -34px; left: -34px;
  width: 58%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid #fff;
  aspect-ratio: 4/3;
}
.about-media .frame-accent img { width: 100%; height: 100%; object-fit: cover; }
.about-media .badge-since {
  position: absolute;
  top: -22px; right: -14px;
  background: var(--fp-black);
  color: #fff;
  border-radius: 50%;
  width: 118px; height: 118px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  font-family: var(--font-head);
  box-shadow: var(--shadow-md);
  border: 4px solid var(--fp-orange);
}
.about-media .badge-since .n { font-size: 28px; font-weight: 700; line-height: 1; }
.about-media .badge-since .t { font-size: 9.5px; letter-spacing: 0.06em; text-transform: uppercase; margin-top: 4px; color: rgba(255,255,255,0.75); }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 90px 0; }
  .about-media { order: -1; margin-bottom: 20px; }
}

.pillars {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pillar {
  background: var(--fp-bg-box);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); background: #fff; }
.pillar .ic {
  width: 46px; height: 46px;
  color: var(--fp-orange);
  margin-bottom: 16px;
}
.pillar .ic svg { width: 100%; height: 100%; }
.pillar h4 { font-size: 17px; }
.pillar p { color: var(--fp-gray); font-size: 14.5px; margin: 8px 0 0; }
@media (max-width: 900px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .pillars { grid-template-columns: 1fr; } }

/* =========================================================
   MISSAO / VISAO / VALORES
   ========================================================= */

.mvv {
  background: var(--fp-black);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.mvv::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 0%, rgba(239,133,55,0.14), transparent 55%);
  pointer-events: none;
}
.mvv .section-head h2 { color: #fff; }
.mvv .section-head p { color: rgba(255,255,255,0.6); }

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.mvv-card {
  background: var(--fp-black-soft);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: transform .25s ease, border-color .25s ease;
}
.mvv-card:hover { transform: translateY(-6px); border-color: var(--fp-orange); }
.mvv-card .ic {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--fp-orange), var(--fp-accent-mid));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 10px 22px rgba(239,133,55,0.3);
}
.mvv-card .ic svg { width: 26px; height: 26px; color: #fff; }
.mvv-card h3 {
  color: #fff; font-size: 20px; text-transform: uppercase; letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.mvv-card p { color: rgba(255,255,255,0.68); font-size: 15px; margin: 0; }

@media (max-width: 900px) { .mvv-grid { grid-template-columns: 1fr; } }

/* =========================================================
   AREAS DE ATUACAO
   ========================================================= */

.areas { background: var(--fp-bg-box); }
.leader-banner {
  display: flex;
  align-items: center;
  gap: 28px;
  background: linear-gradient(120deg, var(--fp-black) 0%, #2a1a10 60%, var(--fp-heading) 130%);
  border-radius: var(--radius-lg);
  padding: 34px 40px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.leader-banner::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 90% 20%, rgba(239,133,55,0.25), transparent 55%);
  pointer-events: none;
}
.leader-badge {
  flex-shrink: 0;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--fp-orange), var(--fp-accent-mid));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 12px 28px rgba(239,133,55,0.4);
  position: relative;
  z-index: 1;
}
.leader-badge svg { width: 30px; height: 30px; margin-bottom: 2px; }
.leader-badge span { font-family: var(--font-head); font-weight: 800; font-size: 19px; letter-spacing: 0.02em; }
.leader-copy { position: relative; z-index: 1; }
.leader-copy h3 { color: #fff; font-size: clamp(19px, 2.4vw, 25px); margin-bottom: 8px; }
.leader-copy p { color: rgba(255,255,255,0.72); font-size: 15px; margin: 0; max-width: 640px; }

@media (max-width: 720px) {
  .leader-banner { flex-direction: column; text-align: center; padding: 30px 26px; }
  .leader-copy p { max-width: none; }
}

.area-card--highlight {
  background: linear-gradient(160deg, #fff 0%, var(--fp-bg-box) 100%);
  border: 1.5px solid var(--fp-orange);
  position: relative;
}
.area-ribbon {
  position: absolute;
  top: -12px; right: 20px;
  background: var(--fp-orange);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.03em;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(239,133,55,0.4);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.area-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.area-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.area-card .ic {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--fp-bg-box);
  display: flex; align-items: center; justify-content: center;
  color: var(--fp-orange);
}
.area-card .ic svg { width: 28px; height: 28px; }
.area-card h4 { font-size: 17px; margin-bottom: 6px; }
.area-card p { font-size: 14px; color: var(--fp-gray); margin: 0; }

@media (max-width: 980px) { .areas-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .areas-grid { grid-template-columns: 1fr; } }

/* =========================================================
   OBRAS / TIMELINE
   ========================================================= */

.obras { background: #fff; }

.obras-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 72px;
}
.obras-gallery figure {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 1/1;
  box-shadow: var(--shadow-sm);
}
.obras-gallery figure:nth-child(1) { grid-column: span 2; grid-row: span 2; aspect-ratio: 1/1; }
.obras-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.obras-gallery figure:hover img { transform: scale(1.08); }
.obras-gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(0deg, rgba(0,0,0,0.72), transparent);
}
@media (max-width: 900px) {
  .obras-gallery { grid-template-columns: repeat(2, 1fr); }
  .obras-gallery figure:nth-child(1) { grid-column: span 2; }
}
@media (max-width: 520px) {
  .obras-gallery { grid-template-columns: 1fr 1fr; }
}

.timeline-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 34px;
}
.timeline-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.timeline-filters button {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13.5px;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--fp-border);
  background: #fff;
  color: var(--fp-gray);
  cursor: pointer;
  transition: all .2s ease;
}
.timeline-filters button:hover { border-color: var(--fp-orange); color: var(--fp-heading); }
.timeline-filters button.active { background: var(--fp-heading); border-color: var(--fp-heading); color: #fff; }

.timeline { position: relative; padding-left: 34px; }
.timeline::before {
  content: "";
  position: absolute; left: 6px; top: 6px; bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, var(--fp-orange), var(--fp-border) 90%);
}
.tl-item {
  position: relative;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--fp-border);
  margin-bottom: 26px;
}
.tl-item:last-child { border-bottom: none; margin-bottom: 0; }
.tl-item::before {
  content: "";
  position: absolute;
  left: -34px; top: 4px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--fp-orange);
}
.tl-item .tl-period {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  color: var(--fp-heading);
  letter-spacing: 0.03em;
  margin-bottom: 6px;
  display: inline-block;
}
.tl-item h4 { font-size: 18px; margin-bottom: 4px; }
.tl-item .tl-meta { font-size: 14px; color: var(--fp-gray); }
.tl-item .tl-meta strong { color: var(--fp-text); font-weight: 600; }

.timeline-more {
  margin-top: 12px;
}
.tl-hidden { display: none; }

/* =========================================================
   CLIENTES
   ========================================================= */

.clientes { background: var(--fp-bg-box); }
.clientes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cliente-badge {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 22px 16px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 148px;
}
.cliente-badge:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.cliente-badge img {
  max-height: 54px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
  margin: 0 auto 14px;
}
.cliente-badge span {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  color: var(--fp-gray);
  display: block;
  line-height: 1.3;
}

.cliente-badge--wordmark .wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 0 12px;
  margin-bottom: 10px;
  border-bottom: 1px dashed var(--fp-border);
}
.cliente-badge--wordmark .wm-letters {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: 0.04em;
  color: var(--fp-heading);
  line-height: 1;
}
.cliente-badge--dark {
  background: linear-gradient(160deg, #10241a, #0a1710);
}
.cliente-badge--dark span { color: rgba(255,255,255,0.75); }

.cliente-badge--wordmark .wordmark small {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--fp-gray);
  margin-top: 4px;
}
@media (max-width: 900px) { .clientes-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .clientes-grid { grid-template-columns: repeat(2, 1fr); } }

/* =========================================================
   CTA STRIP
   ========================================================= */

.cta-strip {
  background: linear-gradient(120deg, var(--fp-heading), var(--fp-accent-mid) 60%, var(--fp-orange));
  color: #fff;
  padding: 64px 0;
}
.cta-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-strip h3 { color: #fff; font-size: clamp(22px, 3vw, 30px); max-width: 560px; }
.cta-strip p { color: rgba(255,255,255,0.85); margin-top: 8px; }

/* =========================================================
   CONTATO
   ========================================================= */

.contato { background: #fff; }
.contato-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 940px) { .contato-grid { grid-template-columns: 1fr; } }

.primary-contact {
  background: linear-gradient(120deg, var(--fp-heading), var(--fp-accent-mid) 65%, var(--fp-orange));
  border-radius: var(--radius-lg);
  padding: 30px 32px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.primary-contact::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 100% 100%, rgba(255,255,255,0.18), transparent 55%);
  pointer-events: none;
}
.primary-contact-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  position: relative;
  z-index: 1;
}
.primary-contact-label svg { width: 15px; height: 15px; }
.primary-contact-number {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 38px);
  color: #fff;
  margin: 8px 0 20px;
  position: relative;
  z-index: 1;
  letter-spacing: 0.01em;
}
.primary-contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.primary-contact-actions .btn-primary { background: #fff; color: var(--fp-heading); box-shadow: none; }
.primary-contact-actions .btn-primary:hover { background: #fff; opacity: 0.92; }
.primary-contact-actions .btn-dark { background: rgba(0,0,0,0.28); }
.primary-contact-actions .btn-dark:hover { background: rgba(0,0,0,0.4); }

.contact-cards { display: grid; grid-template-columns: 1fr; gap: 14px; }
.contact-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--fp-bg-box);
  border-radius: var(--radius-md);
  padding: 22px 28px;
}
.contact-card p { max-width: 640px; }
.contact-card .ic {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--fp-orange);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.contact-card .ic svg { width: 22px; height: 22px; }
.contact-card h4 { font-size: 15.5px; margin-bottom: 6px; text-transform: uppercase; letter-spacing: .04em; color: var(--fp-heading); }
.contact-card p, .contact-card a { font-size: 15px; color: var(--fp-text); margin: 0; }
.contact-card a.link { color: var(--fp-heading); font-weight: 600; }
.contact-card a.link:hover { text-decoration: underline; }

.legal-line {
  margin-top: 22px;
  font-size: 13.5px;
  color: var(--fp-gray);
  border-top: 1px solid var(--fp-border);
  padding-top: 18px;
}

.maps-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}
.maps-wrap .map-tabs { display: flex; }
.maps-wrap .map-tabs button {
  flex: 1;
  padding: 16px;
  border: none;
  background: var(--fp-bg-box);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--fp-gray);
  cursor: pointer;
  border-bottom: 3px solid transparent;
}
.maps-wrap .map-tabs button.active { background: #fff; color: var(--fp-heading); border-color: var(--fp-orange); }
.map-pane { display: none; }
.map-pane.active { display: block; }

.map-visual {
  position: relative;
  aspect-ratio: 7 / 5;
  max-height: 460px;
  min-height: 300px;
  overflow: hidden;
}
.map-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; filter: saturate(0.85) brightness(0.55); }
.map-visual-overlay {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 40px;
  color: #fff;
  background: linear-gradient(120deg, rgba(20,20,20,0.75) 30%, rgba(20,20,20,0.25));
}
.map-visual-overlay svg { width: 34px; height: 34px; color: var(--fp-orange); margin-bottom: 14px; }
.map-visual-overlay h4 { color: #fff; font-size: 21px; margin-bottom: 8px; }
.map-visual-overlay p { color: rgba(255,255,255,0.8); font-size: 14.5px; max-width: 280px; margin: 0 0 22px; }

.direct-actions {
  margin-bottom: 22px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  background: var(--fp-black);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img { height: 44px; filter: brightness(0) invert(1); margin-bottom: 18px; }
.footer-brand p { font-size: 14.5px; max-width: 300px; color: rgba(255,255,255,0.55); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  transition: all .2s ease;
}
.footer-social a:hover { background: var(--fp-orange); border-color: var(--fp-orange); }
.footer-social svg { width: 16px; height: 16px; color: #fff; }

.footer-col h5 {
  font-family: var(--font-head);
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 11px; }
.footer-col a, .footer-col p { font-size: 14.5px; color: rgba(255,255,255,0.6); }
.footer-col a:hover { color: var(--fp-orange); }
.footer-col .contato-item { display: flex; align-items: center; gap: 9px; margin-bottom: 13px; }
.footer-col .contato-item svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--fp-orange); }
.footer-col .contato-item p { margin: 0; }

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   WHATSAPP FLOAT
   ========================================================= */

.wa-float {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 400;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(0,0,0,0.25);
  transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; color: #fff; }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* back to top */
.back-top {
  position: fixed;
  right: 24px; bottom: 92px;
  z-index: 400;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--fp-border);
  box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease, transform .2s ease;
  cursor: pointer;
}
.back-top.show { opacity: 1; pointer-events: auto; }
.back-top:hover { transform: translateY(-3px); }
.back-top svg { width: 18px; height: 18px; color: var(--fp-heading); }
