/* ============================================================
   Barbearia Trindade — Landing Page
   Identidade: azul royal + ciano · Saira Condensed / Poppins
   ============================================================ */

:root {
  --navy-900: #04243F;
  --navy-800: #063C68;
  --navy-700: #0A5183;
  --navy-600: #1D527C;
  --cyan: #0599D5;
  --cyan-300: #2FACE8;
  --white: #FFFFFF;
  --silver: #C7DCEC;
  --silver-dim: #9DB9CE;

  --maxw: 1200px;
  --pad: 24px;
  --header-h: 88px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--white);
  background: var(--navy-800);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 17px 36px;
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.btn-primary {
  background: var(--cyan);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(5,153,213,.35);
}
.btn-primary:hover { background: var(--cyan-300); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.45);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-sm { padding: 11px 22px; font-size: 16px; }

/* ---------- Header ---------- */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 100;
  display: flex;
  align-items: center;
  background: var(--navy-900);
  transition: background .3s ease, box-shadow .3s ease, height .3s ease;
}
#header.scrolled {
  height: 70px;
  background: var(--navy-900);
  box-shadow: 0 6px 24px rgba(0,0,0,.35);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--white); }
.brand-mark { width: 40px; height: 26px; color: var(--white); flex-shrink: 0; }
.brand-name {
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;
}
.brand-name b { color: var(--cyan-300); font-weight: 800; }

.nav { display: flex; gap: 30px; }
.nav a {
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
  position: relative;
  padding: 4px 0;
  transition: color .2s ease;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--cyan); transition: width .25s ease;
}
.nav a:hover { color: var(--white); }
.nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 18px; }
.header-phone {
  display: flex; align-items: center; gap: 8px;
  font-weight: 500; font-size: 15px; color: var(--white);
}
.header-phone svg { color: var(--cyan-300); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.menu-toggle span {
  width: 26px; height: 2px; background: var(--white); border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 78% 30%, rgba(47,172,232,.20), transparent 45%),
    radial-gradient(circle at 12% 85%, rgba(5,153,213,.16), transparent 40%),
    linear-gradient(135deg, #04243F 0%, #063C68 45%, #0A5183 100%);
}
/* textura sutil de listras tipo barbearia */
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -45deg, rgba(255,255,255,.025) 0 2px, transparent 2px 14px);
  mix-blend-mode: overlay;
}
.hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 78% center;
  z-index: 1;
}
.hero-inner .kicker,
.hero-title,
.hero-sub,
.hero-proof { text-shadow: 0 2px 20px rgba(2,16,30,.62); }
.hero-overlay {
  position: absolute; inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg,
      rgba(4,36,63,.92) 0%,
      rgba(4,36,63,.70) 26%,
      rgba(4,36,63,.32) 48%,
      rgba(4,36,63,.10) 70%,
      rgba(4,36,63,.04) 100%),
    linear-gradient(0deg, rgba(4,36,63,.45) 0%, transparent 32%);
}
.hero-side {
  position: absolute;
  left: 22px; top: 50%;
  transform: rotate(180deg) translateY(50%);
  writing-mode: vertical-rl;
  font-family: 'Saira Condensed', sans-serif;
  font-size: 13px; letter-spacing: 5px; text-transform: uppercase;
  color: rgba(255,255,255,.45);
  z-index: 3;
}
.hero-inner { position: relative; z-index: 3; padding-top: var(--header-h); }

.kicker {
  display: flex; align-items: center; gap: 16px;
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 600; font-size: 18px; letter-spacing: 4px;
  text-transform: uppercase; color: var(--cyan-300);
  margin-bottom: 26px;
}
.kicker-line { width: 46px; height: 2px; background: var(--cyan); display: inline-block; }

.hero-title {
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(58px, 8vw, 116px);
  line-height: .9;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 6px 30px rgba(0,0,0,.4);
}
.hero-title .accent {
  font-style: italic;
  font-weight: 700;
  color: var(--cyan-300);
}
.hero-sub {
  margin: 30px 0 38px;
  max-width: 560px;
  font-size: 19px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--silver);
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-proof {
  display: flex; align-items: center; gap: 28px;
  margin-top: 48px; flex-wrap: wrap;
}
.proof-item { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--silver); }
.proof-item b { color: var(--white); font-weight: 600; }
.stars { color: #F2B400; letter-spacing: 2px; font-size: 17px; }
.proof-divider { width: 1px; height: 26px; background: rgba(255,255,255,.2); }

.scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.4);
  border-radius: 14px; z-index: 3;
}
.scroll-hint span {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; background: var(--cyan-300); border-radius: 2px;
  animation: scrollDot 1.6s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { opacity: 0; top: 8px; }
  40% { opacity: 1; }
  100% { opacity: 0; top: 22px; }
}

/* ---------- Reveal (animação de entrada) ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-reveal].in-view { opacity: 1; transform: none; }

/* ---------- Títulos de seção ---------- */
.section-title {
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(38px, 5vw, 62px);
  line-height: .94;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.section-title .accent { font-style: italic; font-weight: 700; color: var(--cyan-300); }

/* ---------- Dobra 2 — Sobre ---------- */
.about {
  background: var(--navy-900);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.about-inner {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 70px;
  align-items: center;
}
.about-media { position: relative; }
.about-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 25%, rgba(47,172,232,.22), transparent 55%),
    linear-gradient(150deg, #063C68 0%, #0A5183 60%, #04243F 100%);
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-photo::after {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(-45deg, rgba(255,255,255,.03) 0 2px, transparent 2px 16px);
}
.about-photo.has-video video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.about-photo.has-video::after {
  background-image: linear-gradient(150deg, rgba(6,60,104,.10), rgba(4,36,63,.16));
}
.about-watermark { width: 120px; height: auto; color: rgba(255,255,255,.16); }
.about-photo-tag {
  position: absolute; top: 18px; left: 18px;
  font-family: 'Saira Condensed', sans-serif;
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,.4);
  border: 1px solid rgba(255,255,255,.2);
  padding: 5px 12px; border-radius: 3px;
}
.about-badge {
  position: absolute;
  right: -22px; bottom: 40px;
  background: var(--cyan);
  color: var(--white);
  padding: 22px 26px;
  border-radius: 6px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: 0 16px 40px rgba(5,153,213,.4);
}
.about-badge strong {
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 800; font-size: 56px; line-height: .85;
}
.about-badge span {
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 600; font-size: 16px; letter-spacing: 1.5px;
  text-transform: uppercase; line-height: 1.1;
}

.about-text .kicker { color: var(--cyan-300); }
.about-p {
  font-size: 17px; font-weight: 300; line-height: 1.75;
  color: var(--silver); margin-top: 22px; max-width: 600px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 46px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.stat-num {
  display: block;
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 800; font-size: 44px; line-height: 1;
  color: var(--cyan-300);
}
.stat-label {
  display: block; margin-top: 8px;
  font-family: 'Saira Condensed', sans-serif;
  font-size: 14px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--silver-dim); line-height: 1.25;
}
.about-cta { margin-top: 40px; align-self: flex-start; }

/* ---------- Responsivo ---------- */
/* ---------- Dobra — Serviços ---------- */
.services {
  background: linear-gradient(180deg, #04243F 0%, #0A4D80 100%);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07);
}
.services-head { margin-bottom: 40px; }

.service-panel {
  display: none;
  grid-template-columns: 1fr 1.05fr;
  min-height: 660px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  overflow: hidden;
}
.service-panel.active { display: grid; }

.service-image {
  position: relative;
  min-height: 440px;
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(circle at 35% 30%, rgba(47,172,232,.22), transparent 55%),
    linear-gradient(150deg, #0A5183 0%, #063C68 60%, #04243F 100%);
}
.service-image.alt2 { background: radial-gradient(circle at 40% 35%, rgba(47,172,232,.20), transparent 55%), linear-gradient(150deg, #11608F, #063C68 70%, #021A30); }
.service-image.alt3 { background: radial-gradient(circle at 60% 30%, rgba(47,172,232,.18), transparent 55%), linear-gradient(160deg, #0A5183, #04243F); }
.service-image.alt4 { background: radial-gradient(circle at 45% 40%, rgba(47,172,232,.16), transparent 55%), linear-gradient(150deg, #0E5680, #021A30); }
.service-image::after {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(-45deg, rgba(255,255,255,.03) 0 2px, transparent 2px 16px);
}
.service-image.has-photo { overflow: hidden; }
.service-image.has-photo img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.service-image.alt4.has-photo img {
  object-position: center 30%;
  transform: scale(1.28); transform-origin: 42% 34%;
  filter: saturate(.83) brightness(1.02) contrast(1.02);
}
.service-image.alt4.has-photo::after {
  background-image: linear-gradient(150deg, rgba(6,60,104,.30), rgba(4,36,63,.40));
}
.service-image.has-photo::after {
  background-image: linear-gradient(150deg, rgba(6,60,104,.22), rgba(4,36,63,.34));
}
.svc-watermark { width: 96px; height: 96px; color: rgba(255,255,255,.20); position: relative; z-index: 1; }
.svc-imgtag {
  position: absolute; top: 18px; left: 18px; z-index: 2;
  font-family: 'Saira Condensed', sans-serif;
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,.5);
  border: 1px solid rgba(255,255,255,.2); padding: 5px 12px; border-radius: 3px;
}

.service-detail { padding: 46px 44px; }
.svc-counter {
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 600; font-size: 16px; letter-spacing: 5px; color: var(--cyan-300);
  margin-bottom: 14px;
}
.svc-title {
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 800; font-size: clamp(30px, 3.4vw, 46px); line-height: .96;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px;
}
.svc-desc { font-size: 17px; font-weight: 300; line-height: 1.65; color: var(--silver); margin-bottom: 24px; }
.svc-list { list-style: none; margin-bottom: 32px; }
.svc-list li {
  display: flex; align-items: center; gap: 12px;
  padding: 9px 0; font-size: 16px; color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.svc-list li svg { color: var(--cyan-300); flex-shrink: 0; }

.svc-tabs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 26px; }
.service-tab {
  display: flex; flex-direction: column; align-items: flex-start; gap: 12px;
  padding: 20px; border-radius: 10px; cursor: pointer; text-align: left;
  border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.02);
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 600; font-size: 16px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--silver); transition: all .2s ease;
}
.svc-tab-icon {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan-300); border: 1px solid rgba(47,172,232,.35);
  background: rgba(5,153,213,.08);
}
.service-tab:hover { border-color: var(--cyan); color: var(--white); }
.service-tab.active { border-color: var(--cyan); background: rgba(5,153,213,.12); color: var(--white); }
.service-tab.active .svc-tab-icon { background: var(--cyan); color: var(--white); border-color: var(--cyan); }

/* ---------- Dobra 3 — Galeria ---------- */
.gallery {
  background: linear-gradient(180deg, #0A4D80 0%, #04243F 100%);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.gallery-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 48px;
}
.gallery-ig {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 600; font-size: 17px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--cyan-300); white-space: nowrap; padding-bottom: 8px;
  transition: gap .2s ease, color .2s ease;
}
.gallery-ig:hover { gap: 16px; color: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.1fr;
  grid-template-rows: 240px 170px 240px;
  grid-template-areas:
    "a b c"
    "a d c"
    "e f c";
  gap: 16px;
}
.g-a { grid-area: a; } .g-b { grid-area: b; } .g-c { grid-area: c; }
.g-d { grid-area: d; } .g-e { grid-area: e; } .g-f { grid-area: f; }

.g-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.07);
  margin: 0;
  transition: transform .3s ease, box-shadow .3s ease;
}
.g-item::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(-45deg, rgba(255,255,255,.03) 0 2px, transparent 2px 16px);
}
.g-item::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 42%, rgba(47,172,232,.16), transparent 60%);
}
.g-a { background: linear-gradient(150deg, #0A5183, #063C68 60%, #04243F); }
.g-b { background: linear-gradient(150deg, #11608F, #0A5183); }
.g-c { background: linear-gradient(160deg, #0A5183, #04243F); }
.g-d { background: linear-gradient(150deg, #063C68, #021A30); }
.g-e { background: linear-gradient(150deg, #0E5680, #063C68); }
.g-f { background: linear-gradient(150deg, #08456F, #04243F); }
.g-item:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0,0,0,.4); }
.g-tag {
  position: absolute; left: 16px; bottom: 14px; z-index: 2;
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 600; font-size: 14px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.72);
}
.g-tag::before {
  content: "Foto"; display: block;
  font-size: 11px; letter-spacing: 3px; color: var(--cyan-300); margin-bottom: 2px;
}
/* fotos reais na galeria */
.g-item.has-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.g-item.has-photo::before { display: none; }
.g-item.has-photo::after { display: none; }
.g-d.has-photo img { object-position: center 55%; }
.gallery-cta { text-align: center; margin-top: 44px; }

/* ---------- Dobra 4 — Unidades / Localização ---------- */
.location {
  background: var(--navy-900);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07);
}
/* #5 — glows de ciano pontuais + camadas (conteúdo acima do brilho) */
.about > .container,
.services > .container,
.gallery > .container,
.location > .container { position: relative; z-index: 1; }

.about::before,
.services::before,
.gallery::before,
.location::before {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  width: 70vw; height: 70vw;
  max-width: 880px; max-height: 880px;
  border-radius: 50%;
}
.about::before    { top: -14%;  right: -8%;  background: radial-gradient(circle, rgba(47,172,232,.16), transparent 60%); }
.services::before { top: -10%;  right: -6%;  background: radial-gradient(circle, rgba(47,172,232,.14), transparent 62%); }
.gallery::before  { bottom: -16%; left: -10%; background: radial-gradient(circle, rgba(5,153,213,.16), transparent 62%); }
.location::before { top: 14%;   right: -12%; background: radial-gradient(circle, rgba(47,172,232,.13), transparent 62%); }

.location-head { margin-bottom: 34px; }

/* cross-links entre unidades */
.nav-unit {
  color: var(--cyan-300) !important;
  border: 1px solid rgba(47,172,232,.45);
  border-radius: 999px;
  padding: 7px 16px !important;
  font-weight: 600;
}
.nav-unit:hover { background: rgba(47,172,232,.12); }
.unit-crosslink {
  margin-top: 30px;
  font-size: 16px;
  color: var(--silver);
}
.unit-crosslink a {
  color: var(--cyan-300);
  font-weight: 600;
  border-bottom: 1px solid rgba(47,172,232,.4);
}
.unit-crosslink a:hover { color: var(--white); }
.footer-col h5 a:hover { color: var(--cyan-300); }
.location-tabs { display: flex; gap: 12px; margin-bottom: 38px; flex-wrap: wrap; }
.loc-tab {
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 600; font-size: 17px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--silver); background: transparent;
  border: 1px solid rgba(255,255,255,.18);
  padding: 12px 24px; border-radius: 4px; cursor: pointer;
  transition: all .2s ease;
}
.loc-tab:hover { border-color: var(--cyan); color: var(--white); }
.loc-tab.active { background: var(--cyan); border-color: var(--cyan); color: var(--white); }

.unit-panel { display: none; grid-template-columns: 1fr 1.15fr; gap: 50px; align-items: stretch; }
.unit-panel.active { display: grid; }

.unit-info { display: flex; flex-direction: column; }
.unit-block { display: flex; gap: 16px; margin-bottom: 30px; }
.unit-icon {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan-300); border: 1px solid rgba(47,172,232,.4);
  background: rgba(5,153,213,.08);
}
.unit-block h4 {
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 600; font-size: 14px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--silver-dim); margin-bottom: 8px;
}
.unit-block p { font-size: 18px; font-weight: 400; line-height: 1.5; color: var(--white); }
.unit-hours-wrap { flex: 1; }
.unit-hours { list-style: none; max-width: 380px; }
.unit-hours li {
  display: flex; justify-content: space-between;
  padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 16px; color: var(--silver);
}
.unit-hours li span:first-child { font-weight: 500; color: var(--white); }
.unit-hours li.closed span:last-child { color: var(--silver-dim); }
.unit-hours li.is-today { border-bottom-color: rgba(47,172,232,.4); }
.unit-hours li.is-today span { color: var(--cyan-300); font-weight: 600; }
.unit-actions { display: flex; gap: 14px; margin-top: 14px; flex-wrap: wrap; }
.unit-actions .btn { font-size: 17px; padding: 15px 26px; }
.unit-phone { margin-top: 18px; font-size: 14px; color: var(--silver-dim); }

.unit-map {
  border-radius: 8px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  min-height: 440px;
  background: #0A5183;
}
.unit-map iframe { width: 100%; height: 100%; min-height: 440px; border: 0; display: block; filter: grayscale(.15); }

/* ---------- Dobra 5 — CTA final ---------- */
.cta {
  position: relative;
  overflow: hidden;
  padding: 130px 0;
  text-align: center;
  background: linear-gradient(135deg, #0599D5 0%, #0A5183 55%, #063C68 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}
.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-bg::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 35%, rgba(255,255,255,.18), transparent 55%);
}
.cta-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(-45deg, rgba(255,255,255,.05) 0 2px, transparent 2px 18px);
}
.cta-watermark {
  position: absolute; right: -40px; bottom: -50px;
  width: 420px; height: auto; color: rgba(255,255,255,.07);
}
.cta-inner { position: relative; z-index: 2; max-width: 760px; }
.kicker-center { justify-content: center; color: rgba(255,255,255,.92); }
.kicker-center .kicker-line { background: rgba(255,255,255,.6); }
.cta-title {
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 7vw, 88px);
  line-height: .9;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 18px 0 24px;
  text-shadow: 0 6px 26px rgba(2,28,52,.35);
}
.cta-title .accent { font-style: italic; font-weight: 700; color: var(--navy-900); }
.cta-copy {
  font-size: 19px; font-weight: 300; line-height: 1.6;
  color: rgba(255,255,255,.92); max-width: 600px; margin: 0 auto 38px;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-light {
  background: #FFFFFF; color: #0779A8; gap: 12px;
  box-shadow: 0 12px 34px rgba(2,28,52,.25);
}
.btn-light:hover { background: #EAF6FD; transform: translateY(-2px); }
.cta-online {
  margin-top: 28px; font-size: 15px; color: rgba(255,255,255,.85);
}
.cta-online a { color: #FFFFFF; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.cta-online span { margin: 0 8px; opacity: .6; }

/* ---------- Rodapé ---------- */
.site-footer { background: #021A30; padding: 70px 0 34px; }
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1.2fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .brand { margin-bottom: 18px; }
.footer-tagline { font-size: 15px; line-height: 1.6; color: var(--silver-dim); max-width: 330px; margin-bottom: 18px; }
.footer-social {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 500; color: var(--cyan-300);
}
.footer-social:hover { color: var(--white); }
.footer-col h5 {
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 600; font-size: 15px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--white); margin-bottom: 18px;
}
.footer-col a, .footer-col p {
  display: block; font-size: 15px; line-height: 1.5;
  color: var(--silver-dim); margin-bottom: 10px;
}
.footer-col a { transition: color .2s ease; }
.footer-col a:hover { color: var(--cyan-300); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap; padding-top: 26px;
  font-size: 14px; color: var(--silver-dim);
}
.footer-credit a { color: var(--white); font-weight: 600; }
.footer-credit a:hover { color: var(--cyan-300); }

@media (max-width: 980px) {
  .nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: rgba(4,36,63,.98);
    backdrop-filter: blur(10px);
    padding: 14px var(--pad) 22px;
    border-top: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 22px 44px rgba(0,0,0,.45);
    display: none;
  }
  .nav.open { display: flex; }
  .nav a { font-size: 19px; padding: 13px 0; width: 100%; }
  .nav a::after { display: none; }
  .header-phone { display: none; }
  .menu-toggle { display: flex; }
  .hero-side { display: none; }

  /* ícone vira X quando aberto */
  body.menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  body.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 900px) {
  .about { padding: 80px 0; }
  .about-inner { grid-template-columns: 1fr; gap: 56px; }
  .about-media { max-width: 440px; }
  .about-badge { right: 20px; }

  .services { padding: 80px 0; }
  .service-panel.active { grid-template-columns: 1fr; }
  .service-panel { min-height: 0; }
  .service-image { min-height: 280px; }
  .service-detail { padding: 36px 28px; }
  .svc-tabs { grid-template-columns: 1fr 1fr; }

  .gallery-head { flex-direction: column; align-items: flex-start; gap: 18px; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
    grid-template-areas:
      "a b"
      "a d"
      "e f";
  }
  .g-c { display: none; }

  .location { padding: 80px 0; }
  .unit-panel.active { grid-template-columns: 1fr; gap: 32px; }
  .unit-map { min-height: 340px; order: -1; }
  .unit-map iframe { min-height: 340px; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  :root { --pad: 20px; }
  .brand-name { font-size: 18px; }
  .hero-sub { font-size: 17px; }
  .hero-cta { gap: 12px; }
  .hero-cta .btn { flex: 1; min-width: 0; padding: 16px 18px; }
  .hero-proof { gap: 16px; margin-top: 36px; }
  .proof-divider { display: none; }
  .about-stats { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
  .stat-num { font-size: 38px; }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 220px);
    grid-template-areas: "a" "b" "d" "e" "f";
  }
  .svc-tabs { grid-template-columns: 1fr; gap: 10px; }
  .service-tab { flex-direction: row; align-items: center; gap: 14px; padding: 16px 18px; }
  .cta { padding: 90px 0; }
  .cta-title { font-size: clamp(40px, 13vw, 64px); }
}

@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (min-width: 1200px) {
  :root { --pad: 48px; }
}
