/* ==========================================================================
   Vidraçaria Primo's
   ========================================================================== */

/* --------------------------------------------------------------------------
   Fontes locais
   -------------------------------------------------------------------------- */
@font-face {
  font-family: 'Barlow Condensed';
  src: url('../fonts/barlow-condensed-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow Condensed';
  src: url('../fonts/barlow-condensed-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow Condensed';
  src: url('../fonts/barlow-condensed-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('../fonts/manrope-variable.woff2') format('woff2-variations');
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'JetBrains Mono';
  src: url('../fonts/jetbrains-mono-variable.woff2') format('woff2-variations');
  font-weight: 100 800;
  font-style: normal;
  font-display: swap;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', system-ui, sans-serif;
  color: #262b31;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: #1670c9;
  text-decoration: none;
}

a:hover {
  color: #0f4b8f;
}

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

ul,
ol {
  list-style: none;
}

::selection {
  background: #1670c9;
  color: #fff;
}

:focus-visible {
  outline: 2px solid #1670c9;
  outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   Animações
   -------------------------------------------------------------------------- */
@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}
@keyframes lineUp {
  from { transform: translateY(105%); }
  to   { transform: translateY(0); }
}
@keyframes kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.07); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes popIn {
  from { opacity: 0; transform: scale(.96); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes waPulse {
  0%, 86%, 100% { box-shadow: 0 10px 26px -8px rgba(37, 211, 102, .6); }
  93%           { box-shadow: 0 0 0 13px rgba(37, 211, 102, 0); }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(100%); }
  to   { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
  html { scroll-behavior: auto; }
}

/* --------------------------------------------------------------------------
   Botões
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .6px;
  font-size: 16px;
  padding: 11px 20px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background .25s ease, gap .25s ease, border-color .25s ease;
}

.btn-primary {
  background: #1670c9;
  color: #fff;
}

.btn-primary:hover {
  background: #0f4b8f;
  color: #fff;
  gap: 16px;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .6);
}

.btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .12);
  color: #fff;
}

.btn-lg {
  gap: 11px;
  font-size: clamp(17px, 1.5vw, 20px);
  padding: 16px 28px;
}

.btn-outline.btn-lg {
  gap: 10px;
  padding: 16px 26px;
}

.btn-block {
  justify-content: center;
  width: 100%;
}

/* --------------------------------------------------------------------------
   Cabeçalho
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 11px clamp(16px, 3.5vw, 44px);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}

/* estado aplicado por js/main.js depois de 60px de rolagem */
.site-header.is-solid {
  background: rgba(255, 255, 255, .94);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom-color: #e2e6ea;
  box-shadow: 0 4px 18px -10px rgba(20, 24, 28, .18);
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.logo-img {
  display: block;
  height: 44px;
  width: auto;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  width: 26px;
  height: 2px;
  background: #262b31;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 32px);
}

.main-nav > a:not(.icon-link):not(.btn) {
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: #262b31;
  font-weight: 600;
  font-size: 16px;
  padding-bottom: 3px;
  background-image: linear-gradient(#1670c9, #1670c9);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0 2px;
  transition: background-size .3s ease;
}

.main-nav > a:not(.icon-link):not(.btn):hover {
  color: #262b31;
  background-size: 100% 2px;
}

.icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid #c9d0d8;
  color: #262b31;
}

.icon-link:hover {
  color: #1670c9;
  border-color: #1670c9;
}

/* --------------------------------------------------------------------------
   Menu mobile
   -------------------------------------------------------------------------- */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 59;
  background: rgba(20, 24, 28, .55);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav nav {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(84vw, 340px);
  background: #fff;
  border-left: 1px solid #e2e6ea;
  padding: 80px 26px 26px;
  display: flex;
  flex-direction: column;
}

.mobile-nav nav > a {
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: .6px;
  padding: 16px 4px;
  font-size: 20px;
  font-weight: 600;
  color: #262b31;
  border-bottom: 1px solid #e2e6ea;
}

.mobile-nav .mobile-instagram {
  text-transform: none;
  font-size: 13px;
  font-weight: 500;
  color: #1670c9;
  border-bottom: none;
}

.mobile-nav .btn {
  margin-top: 16px;
  font-size: 19px;
  padding: 15px;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 88svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #14181c;
  padding: clamp(32px, 5vh, 56px) clamp(16px, 3.5vw, 44px) clamp(56px, 8vh, 96px);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  animation: kenburns 22s ease-in-out infinite alternate;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 55%;
}

/* as duas camadas de escurecimento do design */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero::before {
  background: linear-gradient(100deg,
    rgba(13, 16, 19, .9) 0%,
    rgba(13, 16, 19, .72) 24%,
    rgba(13, 16, 19, .44) 46%,
    rgba(13, 16, 19, .3) 68%,
    rgba(13, 16, 19, .26) 100%);
}

.hero::after {
  background: radial-gradient(120% 95% at 100% 100%,
    rgba(13, 16, 19, .5) 0%,
    rgba(13, 16, 19, .26) 34%,
    rgba(13, 16, 19, 0) 62%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

.hero-content > * {
  max-width: 620px;
}

.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(42px, 6.2vw, 84px);
  line-height: 1.04;
  letter-spacing: -1px;
  color: #fff;
  text-shadow: 0 2px 24px rgba(20, 24, 28, .35);
  animation: rise .7s ease both;
}

.hero-line {
  display: block;
  overflow: hidden;
  padding-bottom: 2px;
  white-space: nowrap;
  animation: lineUp .7s cubic-bezier(.2, .7, .3, 1) both;
}

.hero-line:nth-child(2) { animation-delay: .08s; }
.hero-line:nth-child(3) { animation-delay: .16s; }

.hero-line--accent {
  color: #5aa2e8;
}

.hero-text {
  margin-top: 22px;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  color: rgba(255, 255, 255, .86);
  max-width: 58ch;
  text-shadow: 0 1px 14px rgba(20, 24, 28, .4);
  animation: rise .7s ease .1s both;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 30px;
  animation: rise .7s ease .2s both;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
  animation: rise .7s ease .3s both;
}

.hero-badges span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .5px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .45);
  padding: 7px 11px;
}

/* --------------------------------------------------------------------------
   Barra de números
   -------------------------------------------------------------------------- */
.stats {
  position: relative;
  background: #14181c;
  padding: 0 clamp(16px, 3.5vw, 44px);
}

.stats-list {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.stat {
  padding: clamp(36px, 4.5vw, 52px) 26px;
  border-left: 1px solid rgba(255, 255, 255, .1);
}

.stat-value {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(52px, 6vw, 74px);
  line-height: .85;
  color: #fff;
}

.stat-unit {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #1670c9;
}

.stat-label {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, .55);
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   Blocos de seção
   -------------------------------------------------------------------------- */
.section-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.section-rule {
  width: 48px;
  height: 2px;
  background: #1670c9;
  margin-bottom: 20px;
}

main h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: .96;
  letter-spacing: -.6px;
  color: #262b31;
}

/* cabeçalho de seção com texto de apoio à direita */
.section-head {
  margin-bottom: 48px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.section-head .section-rule {
  margin-bottom: 16px;
}

.section-lead {
  max-width: 360px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(38, 43, 49, .68);
}

/* --------------------------------------------------------------------------
   Sobre
   -------------------------------------------------------------------------- */
.sobre {
  padding: clamp(64px, 9vw, 120px) clamp(16px, 3.5vw, 44px);
  background: #fff;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px;
  align-items: stretch;
}

.sobre-media {
  order: 2;
  position: relative;
  border: 1px solid #c9d0d8;
  overflow: hidden;
  min-height: 320px;
}

.sobre-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sobre-content {
  order: 1;
  align-self: center;
}

.sobre-content > p {
  margin-top: 16px;
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.65;
  color: rgba(38, 43, 49, .72);
  max-width: 58ch;
}

.sobre-content > p:first-of-type {
  margin-top: 22px;
}

.diffs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  margin-top: 30px;
  background: #c9d0d8;
  border: 1px solid #c9d0d8;
}

.diffs-grid li {
  padding: 20px;
  background: #fff;
}

.diffs-grid h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16.5px;
  color: #262b31;
  line-height: 1.2;
}

.diffs-grid p {
  margin-top: 8px;
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(38, 43, 49, .68);
}

/* --------------------------------------------------------------------------
   Serviços
   -------------------------------------------------------------------------- */
.servicos {
  padding: clamp(64px, 9vw, 120px) clamp(16px, 3.5vw, 44px);
  background: #f4f6f8;
}

.servico-list {
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.servico {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px;
  align-items: stretch;
  background: #fff;
  border: 1px solid #c9d0d8;
  padding: clamp(24px, 3vw, 40px);
}

.servico-media {
  order: 1;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border: 1px solid #c9d0d8;
}

.servico-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* alterna o lado da imagem a cada bloco, como no design */
.servico:nth-child(even) .servico-media { order: 2; }
.servico:nth-child(even) .servico-body  { order: 1; }

.servico-tag {
  position: absolute;
  top: 0;
  right: 0;
  background: #262b31;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .8px;
  padding: 7px 12px;
}

.servico-body {
  order: 2;
}

.servico-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(26px, 3vw, 40px);
  line-height: .98;
  letter-spacing: -.4px;
  color: #262b31;
}

.servico-body > p {
  margin-top: 14px;
  font-size: clamp(15px, 1.2vw, 16.5px);
  line-height: 1.6;
  color: rgba(38, 43, 49, .72);
  max-width: 58ch;
}

.servico-specs {
  margin-top: 22px;
  border-top: 1px solid #e2e6ea;
}

.servico-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid #e2e6ea;
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(38, 43, 49, .78);
  line-height: 1.4;
}

.servico-bullets li::before {
  content: '';
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  margin-top: 2px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231670c9' stroke-width='3'%3E%3Cpath d='M4 12l5 5L20 6'/%3E%3C/svg%3E") no-repeat center / contain;
}

.servico-prazo {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .5px;
}

.servico-prazo-label {
  color: #262b31;
  text-transform: uppercase;
}

.servico-prazo-value {
  color: #7b8794;
}

.servico-cta {
  margin-top: 24px;
  font-size: 17px;
  padding: 12px 22px;
}

/* --------------------------------------------------------------------------
   Faixa rolante
   -------------------------------------------------------------------------- */
.marquee {
  overflow: hidden;
  background: #fff;
  border-top: 1px solid #e2e6ea;
  border-bottom: 1px solid #e2e6ea;
}

.marquee-track {
  display: inline-flex;
  white-space: nowrap;
  padding: 18px 0;
  animation: marquee 28s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-track span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(34px, 5vw, 64px);
  letter-spacing: .5px;
  color: rgba(38, 43, 49, .13);
}

/* --------------------------------------------------------------------------
   O que vem no orçamento
   -------------------------------------------------------------------------- */
.orcamento {
  padding: clamp(64px, 9vw, 120px) clamp(16px, 3.5vw, 44px);
  background: #14181c;
}

.orcamento-head {
  margin-bottom: 32px;
}

.orcamento-head .section-rule {
  margin-bottom: 16px;
}

.orcamento-head h2 {
  color: #fff;
  line-height: .94;
  max-width: 820px;
}

.orcamento-head p {
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, .6);
  max-width: 70ch;
}

.orcamento-list {
  border: 1px solid rgba(255, 255, 255, .16);
}

.orcamento-list li {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px 20px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, .9);
  line-height: 1.4;
}

/* faixa azul de fundo de cada linha */
.orcamento-list li::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(22, 112, 201, .16);
  transform-origin: left;
  pointer-events: none;
}

.orcamento-list li > span {
  position: relative;
}

.orcamento-list li::after {
  content: '';
  position: relative;
  order: -1;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231670c9' stroke-width='3'%3E%3Cpath d='M4 12l5 5L20 6'/%3E%3C/svg%3E") no-repeat center / contain;
}

.orcamento-foot {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  align-items: center;
}

.orcamento-foot p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, .6);
  border-left: 2px solid #1670c9;
  padding-left: 18px;
}

.orcamento-foot > div {
  display: flex;
  justify-content: flex-start;
}

.orcamento-cta {
  gap: 10px;
  font-size: 18px;
  padding: 15px 26px;
}

/* --------------------------------------------------------------------------
   Do contato à instalação, em 5 passos
   -------------------------------------------------------------------------- */
.passos {
  padding: clamp(64px, 9vw, 120px) clamp(16px, 3.5vw, 44px);
  background: #fff;
}

.passos-track {
  position: relative;
}

/* linha que conecta os marcadores, na altura do centro dos quadrados */
.passos-track::before {
  content: '';
  position: absolute;
  top: 19px;
  left: 0;
  right: 0;
  height: 1px;
  background: #1670c9;
  transform-origin: left;
}

.passos-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.passos-list li {
  position: relative;
  padding-top: 40px;
}

/* quadrado branco que "fura" a linha */
.passos-list li::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 0;
  width: 15px;
  height: 15px;
  background: #fff;
  border: 2px solid #1670c9;
}

.passo-n {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #1670c9;
}

.passos-list h3 {
  margin-top: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2px;
  font-size: 19px;
  line-height: 1.05;
  color: #262b31;
}

.passos-list p {
  margin-top: 9px;
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(38, 43, 49, .62);
}

/* --------------------------------------------------------------------------
   Nossas obras
   -------------------------------------------------------------------------- */
.obras {
  padding: clamp(64px, 9vw, 120px) clamp(16px, 3.5vw, 44px);
  background: #f4f6f8;
}

.obras-lead {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(38, 43, 49, .68);
  max-width: 56ch;
}

.obras-filtros {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid #c9d0d8;
  background: #fff;
  color: #262b31;
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: .6px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.chip[aria-pressed="true"] {
  background: #1670c9;
  border-color: #1670c9;
  color: #fff;
}

.obras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.obras-grid li[hidden] {
  display: none;
}

.obra {
  display: block;
  width: 100%;
  padding: 0;
  text-align: left;
  cursor: pointer;
  background: #fff;
  border: 1px solid #c9d0d8;
  font: inherit;
  color: inherit;
  transition: transform .3s ease, border-color .25s ease;
  animation: popIn .5s cubic-bezier(.2, .7, .3, 1) both;
}

.obra:hover {
  border-color: #1670c9;
  transform: translateY(-4px);
}

.obra-media {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-bottom: 1px solid #c9d0d8;
}

.obra-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.obra:hover .obra-media img {
  transform: scale(1.05);
}

.obra-info {
  display: block;
  padding: 12px 14px;
  min-height: 70px;
}

.obra-local {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .8px;
  color: #7b8794;
}

.obra-label {
  display: block;
  margin-top: 3px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .3px;
  font-size: 16px;
  color: #262b31;
  line-height: 1.1;
}

/* --------------------------------------------------------------------------
   Lightbox
   -------------------------------------------------------------------------- */
.lightbox {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  border: none;
  padding: 24px;
  background: transparent;
  overflow: hidden;
}

.lightbox::backdrop {
  background: rgba(20, 24, 28, .9);
  animation: fadeIn .2s ease;
}

.lightbox[open] {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .25);
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.lightbox-close:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .12);
}

.lightbox-frame {
  position: relative;
  width: min(92vw, 900px);
  max-height: 86vh;
  aspect-ratio: 16 / 11;
  border: 1px solid rgba(255, 255, 255, .2);
  overflow: hidden;
}

.lightbox-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lightbox-caption {
  position: absolute;
  left: 0;
  top: 0;
  background: #1670c9;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: .8px;
  padding: 6px 12px;
  pointer-events: none;
}

.lightbox-credit {
  position: absolute;
  left: 0;
  bottom: 0;
  background: rgba(20, 24, 28, .72);
  color: rgba(255, 255, 255, .72);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10.5px;
  letter-spacing: .5px;
  padding: 5px 12px;
}

.lightbox-credit:hover {
  color: #fff;
}

.lightbox-credit:empty {
  display: none;
}

/* --------------------------------------------------------------------------
   Aprovação de condomínio
   -------------------------------------------------------------------------- */
.condominio {
  padding: clamp(64px, 9vw, 120px) clamp(16px, 3.5vw, 44px);
  background: #fff;
}

.condominio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px;
  align-items: stretch;
}

.condominio-content {
  order: 1;
}

.condominio-content .section-rule {
  margin-bottom: 20px;
}

.condominio-content h2 {
  line-height: .96;
  letter-spacing: -.5px;
  max-width: none;
}

.condominio-content > p {
  margin-top: 18px;
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.65;
  color: rgba(38, 43, 49, .72);
  max-width: 58ch;
}

.normas-list {
  margin-top: 28px;
  border: 1px solid #c9d0d8;
}

.normas-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-bottom: 1px solid #e2e6ea;
}

.normas-list li:last-child {
  border-bottom: none;
}

.normas-list li::before {
  content: '';
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231670c9' stroke-width='3'%3E%3Cpath d='M4 12l5 5L20 6'/%3E%3C/svg%3E") no-repeat center / contain;
}

.norma-code {
  flex-shrink: 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  color: #262b31;
  min-width: 78px;
}

.norma-label {
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(38, 43, 49, .72);
  line-height: 1.35;
}

.condominio-media {
  order: 2;
  position: relative;
  border: 1px solid #c9d0d8;
  overflow: hidden;
  min-height: 320px;
}

.condominio-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.corner {
  position: absolute;
  width: 12px;
  height: 12px;
  pointer-events: none;
}

.corner-tl { top: 10px; left: 10px; border-top: 1px solid #1670c9; border-left: 1px solid #1670c9; }
.corner-tr { top: 10px; right: 10px; border-top: 1px solid #1670c9; border-right: 1px solid #1670c9; }
.corner-bl { bottom: 10px; left: 10px; border-bottom: 1px solid #1670c9; border-left: 1px solid #1670c9; }
.corner-br { bottom: 10px; right: 10px; border-bottom: 1px solid #1670c9; border-right: 1px solid #1670c9; }

/* --------------------------------------------------------------------------
   Depoimentos
   -------------------------------------------------------------------------- */
.depoimentos {
  padding: clamp(64px, 9vw, 120px) clamp(16px, 3.5vw, 44px);
  background: #f4f6f8;
}

.section-head-solo {
  margin-bottom: 48px;
}

.section-head-solo .section-rule {
  margin-bottom: 16px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.trust-card {
  padding: 26px 24px;
  background: #fff;
  border: 1px solid #e2e6ea;
  border-radius: 6px;
  box-shadow: 0 2px 10px -4px rgba(20, 24, 28, .08);
  transition: border-color .25s ease, transform .25s ease;
}

.trust-card:hover {
  border-color: #1670c9;
  transform: translateY(-3px);
}

.trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1.5px solid #1670c9;
  border-radius: 8px;
  color: #1670c9;
  margin-bottom: 16px;
}

.trust-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .4px;
  font-size: 18px;
  color: #262b31;
  line-height: 1.15;
}

.trust-card p {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(38, 43, 49, .62);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.review-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: #fff;
  border: 1px solid #e2e6ea;
  border-radius: 6px;
  box-shadow: 0 2px 10px -4px rgba(20, 24, 28, .08);
}

.review-stars {
  color: #1670c9;
  font-size: 14px;
  letter-spacing: 2px;
}

.review-text {
  flex: 1;
  margin-top: 12px;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(38, 43, 49, .78);
}

.review-author {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid #e2e6ea;
}

.review-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .3px;
  font-size: 15px;
  color: #262b31;
}

.review-meta {
  margin-top: 2px;
  font-size: 12.5px;
  color: rgba(38, 43, 49, .55);
}

.reviews-disclaimer {
  margin-top: 20px;
  font-size: 13px;
  font-style: italic;
  color: rgba(38, 43, 49, .5);
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.faq {
  padding: clamp(64px, 9vw, 120px) clamp(16px, 3.5vw, 44px);
  background: #fff;
}

.faq-inner {
  max-width: 860px;
  margin: 0 auto;
}

.faq-list {
  border-top: 1px solid #c9d0d8;
}

.faq-item {
  border-bottom: 1px solid #c9d0d8;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 4px;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

/* não confia só no comportamento nativo do <details> para esconder o conteúdo */
.faq-item:not([open]) > .faq-a {
  display: none;
}

.faq-q {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .2px;
  font-size: clamp(18px, 1.7vw, 22px);
  color: #262b31;
}

.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  color: #1670c9;
  transition: transform .3s ease;
}

.faq-icon::before {
  content: '+';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 400;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  padding: 0 4px 22px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(38, 43, 49, .7);
  max-width: 680px;
  animation: rise .3s ease both;
}

/* --------------------------------------------------------------------------
   Contato
   -------------------------------------------------------------------------- */
.contato {
  padding: clamp(64px, 9vw, 120px) clamp(16px, 3.5vw, 44px);
  background: #f4f6f8;
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: stretch;
}

.contato-intro .section-rule {
  margin-bottom: 18px;
}

.contato-intro h2 {
  line-height: .94;
  letter-spacing: -.5px;
  max-width: none;
}

.contato-intro p {
  margin-top: 16px;
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.6;
  color: rgba(38, 43, 49, .7);
  max-width: 58ch;
}

.contato-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
  background: #fff;
  border: 1px solid #c9d0d8;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
}

.form-label {
  display: block;
  margin-bottom: 7px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .8px;
  color: #7b8794;
}

.form-field input,
.form-field select {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid #c9d0d8;
  border-radius: 0;
  background: #fff;
  color: #262b31;
  font-size: 15px;
  font-family: inherit;
  outline: none;
}

.form-field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #c9d0d8;
  border-radius: 0;
  background: #fff;
  color: #262b31;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #1670c9;
}

.form-submit {
  font-size: 19px;
  padding: 16px;
}

.contato-info {
  background: #fff;
  border: 1px solid #c9d0d8;
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  color: #262b31;
  border-bottom: 1px solid #e2e6ea;
}

.contato-info > :last-child {
  border-bottom: none;
}

.info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border: 1px solid #c9d0d8;
  color: #1670c9;
}

.info-label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10.5px;
  letter-spacing: .8px;
  color: #7b8794;
}

.info-value {
  display: block;
  font-weight: 700;
  font-size: 16px;
}

.info-value--email {
  font-size: 15px;
  word-break: break-all;
}

a.info-row:hover .info-value {
  text-decoration: underline;
}

.info-note {
  display: block;
  margin-top: 4px;
  font-size: 12.5px;
  color: rgba(38, 43, 49, .55);
}

/* --------------------------------------------------------------------------
   Rodapé
   -------------------------------------------------------------------------- */
.site-footer {
  position: relative;
  background: #14181c;
  padding: clamp(52px, 7vw, 80px) clamp(16px, 3.5vw, 44px) 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.footer-brand {
  padding: 32px 26px 32px 0;
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer-col {
  padding: 32px 26px;
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer-col--unidade {
  padding: 32px 0 32px 26px;
  border-right: none;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 16px;
}

.footer-logo-img {
  display: block;
  height: 72px;
  width: auto;
}

.footer-brand p {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .5);
}

.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  color: #fff;
}

.footer-instagram:hover {
  color: #5aa2e8;
}

.footer-col-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #1670c9;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, .6);
  font-size: 14px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-address {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .6);
}

.footer-address-note {
  margin-top: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, .38);
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11.5px;
  letter-spacing: .4px;
  color: rgba(255, 255, 255, .4);
}

.footer-privacy-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11.5px;
  letter-spacing: .4px;
  color: rgba(255, 255, 255, .4);
  text-decoration: underline;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.footer-privacy-link:hover {
  color: rgba(255, 255, 255, .7);
}

/* --------------------------------------------------------------------------
   Botão flutuante do WhatsApp + barra fixa mobile
   -------------------------------------------------------------------------- */
.wa-float {
  position: fixed;
  right: clamp(16px, 3vw, 26px);
  bottom: clamp(16px, 3vw, 26px);
  z-index: 70;
  width: 60px;
  height: 60px;
  border-radius: 2px;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px -8px rgba(37, 211, 102, .6);
  transition: transform .2s ease;
  animation: waPulse 5s ease-in-out infinite;
}

.wa-float:hover {
  transform: scale(1.06);
}

.mobile-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #c9d0d8;
  border-top: 1px solid #c9d0d8;
  box-shadow: 0 -6px 20px -12px rgba(20, 24, 28, .4);
  padding-bottom: env(safe-area-inset-bottom);
}

.mobile-bar-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 56px;
  background: #fff;
  color: #262b31;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: 17px;
}

.mobile-bar-item--wa {
  background: #25d366;
  color: #fff;
}

/* --------------------------------------------------------------------------
   Banner de cookies
   -------------------------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  padding: 14px clamp(14px, 3vw, 26px);
  background: #14181c;
  border-top: 1px solid rgba(255, 255, 255, .14);
  animation: slideUp .35s ease both;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.cookie-inner p {
  flex: 1;
  min-width: 240px;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, .7);
  margin: 0;
}

.cookie-link {
  color: #5aa2e8;
  text-decoration: underline;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

.cookie-accept {
  flex-shrink: 0;
  min-height: 44px;
  padding: 0 24px;
}

/* --------------------------------------------------------------------------
   Modal de política de privacidade
   -------------------------------------------------------------------------- */
.privacy-modal {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  border: none;
  padding: clamp(12px, 4vw, 40px);
  background: transparent;
  overflow: hidden;
}

.privacy-modal::backdrop {
  background: rgba(20, 24, 28, .7);
  animation: fadeIn .2s ease;
}

.privacy-modal[open] {
  display: flex;
  align-items: center;
  justify-content: center;
}

.privacy-frame {
  width: min(760px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #c9d0d8;
  padding: clamp(24px, 4vw, 44px);
}

.privacy-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.privacy-head .section-rule {
  margin-bottom: 14px;
}

.privacy-head h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1;
  letter-spacing: -.4px;
  max-width: none;
}

.privacy-close {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid #c9d0d8;
  cursor: pointer;
  color: #262b31;
}

.privacy-close:hover {
  border-color: #1670c9;
  color: #1670c9;
}

.privacy-date {
  margin-top: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .5px;
  color: #7b8794;
}

.privacy-body {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.privacy-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 19px;
  color: #262b31;
}

.privacy-body p {
  margin-top: 7px;
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(38, 43, 49, .72);
}

/* --------------------------------------------------------------------------
   Responsivo
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
  }

  .main-nav {
    display: none;
  }

  .sobre-media {
    order: 1;
    min-height: 0;
    height: 260px;
  }

  .sobre-content {
    order: 2;
  }

  /* no mobile a imagem do serviço fica sempre acima do texto */
  .servico:nth-child(even) .servico-media { order: 1; }
  .servico:nth-child(even) .servico-body  { order: 2; }

  .condominio-media {
    order: 1;
    min-height: 0;
    height: 260px;
  }

  .condominio-content {
    order: 2;
  }

  /* a barra fixa substitui o botão flutuante e precisa de espaço reservado */
  .wa-float {
    display: none;
  }

  .mobile-bar {
    display: grid;
  }

  body {
    padding-bottom: 57px;
  }

  .cookie-banner {
    bottom: 57px;
  }
}

@media (min-width: 901px) {
  .contato-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr auto;
    gap: 48px;
  }

  .contato-intro { grid-column: 1; grid-row: 1; }
  .contato-form  { grid-column: 2; grid-row: 1 / span 3; }
  .contato-info  { grid-column: 1; grid-row: 3; }
}

@media (max-width: 768px) {
  .hero {
    align-items: flex-end;
    padding-top: 32px;
  }

  .hero::before {
    background: linear-gradient(to top,
      rgba(13, 16, 19, .88) 0%,
      rgba(13, 16, 19, .62) 20%,
      rgba(13, 16, 19, .3) 42%,
      rgba(13, 16, 19, .12) 65%,
      rgba(13, 16, 19, .04) 100%);
  }
}
