/* ============================================================
   CN CASA NOVA – style.css
   Paleta: Azul #0d2d5c | Azul Accent #2563eb | Branco #fff
   Fonte display: Playfair Display | Corpo: Barlow
   ============================================================ */

:root {
  --navy:      #0d2152;
  --navy-mid:  #0f2a66;
  --navy-dark: #091840;
  --accent:    #0d8fc9;
  --accent-dark: #0a75a8;
  --accent-light: #1ab3e8;
  --accent-bg: rgba(13,143,201,.08);
  --white:     #ffffff;
  --off-white: #f4f7fb;
  --gray:      #64748b;
  --light:     #e2e8f0;

  --font-display: 'Playfair Display SC', Georgia, serif;
  --font-body:    'Barlow', system-ui, sans-serif;
  --font-inter:   'Inter', system-ui, sans-serif;
  --font-merriweather: 'Merriweather', Georgia, serif;

  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 16px;

  --shadow-sm: 0 2px 10px rgba(15,29,51,.08);
  --shadow:    0 8px 32px rgba(15,29,51,.12);
  --shadow-lg: 0 20px 60px rgba(15,29,51,.18);

  --transition: .3s ease;
}

.merriweather- {
  font-family: "Merriweather", serif;
  font-weight: 400;
  font-style: normal;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--navy-dark);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ---- CONTAINER ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .5px;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(13,143,201,.35);
}
.btn-primary:hover { background: var(--accent-dark); box-shadow: 0 6px 28px rgba(13,143,201,.45); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline:hover { border-color: var(--accent-light); color: var(--accent-light); }

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  padding: 10px 20px;
  font-size: 14px;
}
.btn-whatsapp:hover { background: #1dbd5a; }

.btn-card {
  background: var(--accent);
  color: var(--white);
  padding: 11px 24px;
  font-size: 14px;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition);
}
.btn-card:hover { background: var(--accent-dark); transform: translateY(-2px); }

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

/* ============================================================
   SECTION HELPERS
   ============================================================ */
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--accent); }
.section-desc { color: var(--gray); font-size: 17px; max-width: 560px; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-desc { margin: 0 auto; }

/* Light variants */
.section-header.light .section-eyebrow { color: var(--accent-light); }
.section-header.light .section-title  { color: var(--white); }
.section-header.light .section-title em { color: var(--accent-light); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(9,24,64,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: box-shadow var(--transition), background var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow); background: rgba(9,24,64,.98); }

/* Logo image */
.logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-cn {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  color: var(--accent-light);
  line-height: 1;
}
.logo-cn.small { font-size: 22px; color: var(--white); }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--white);
}
.logo-name.small { font-size: 14px; }
.logo-sub {
  font-size: 9px;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  letter-spacing: .5px;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent-light);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

/* Mobile toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #091840 0%, #0d2152 30%, #112a6a 60%, #0f2a66 100%);
  overflow: hidden;
}

.hero-topo-img {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 62%;
  object-fit: cover;
  object-position: 60% center;
  mask-image: linear-gradient(to right, black 0%, black 55%, rgba(0,0,0,0.5) 75%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, black 0%, black 55%, rgba(0,0,0,0.5) 75%, transparent 100%);
}

/* Subtle geometric overlay */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 25%, rgba(13,143,201,.14) 0%, transparent 50%),
    radial-gradient(circle at 25% 75%, rgba(13,143,201,.07) 0%, transparent 50%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 80px,
      rgba(255,255,255,.02) 80px,
      rgba(255,255,255,.02) 81px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 80px,
      rgba(255,255,255,.02) 80px,
      rgba(255,255,255,.02) 81px
    );
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(to right, transparent 20%, rgba(9,24,64,0.2) 55%, rgba(9,24,64,0.85) 78%, rgba(9,24,64,0.98) 100%),
    radial-gradient(ellipse at 30% 50%, rgba(13,143,201,.07) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 160px;
  padding-bottom: 140px;
  max-width: 800px;
  margin: 0 0 0 auto;
  text-align: center;
  animation: heroIn .9s ease both;
}

.hero-content--centered {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  color: var(--accent-light);
  margin-bottom: 24px;
  animation: heroIn .9s ease .1s both;
}

.hero-title {
  font-family: var(--font-merriweather);
  font-weight: 630;
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  animation: heroIn .9s ease .2s both;
}
.hero-highlight {
  color: var(--accent-light);
  display: inline-block;
}

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,.7);
  margin-bottom: 40px;
  max-width: 540px;
  line-height: 1.7;
  animation: heroIn .9s ease .3s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  animation: heroIn .9s ease .4s both;
}

/* Stats bar pinned at bottom of hero */
.hero-bottom-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,.1);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 24px 0;
  animation: heroIn .9s ease .5s both;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,.65);
  font-weight: 500;
  letter-spacing: .5px;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.2);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.4);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeIn 1s ease 1s both;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation: scrollPulse 1.5s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .4; transform: scaleY(1); }
  50%       { opacity: 1;  transform: scaleY(1.2); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}

/* ============================================================
   FAIXA ANIMADA
   ============================================================ */
.faixa {
  background: var(--accent);
  overflow: hidden;
  padding: 14px 0;
  border-top: none;
  border-bottom: none;
}
.faixa-inner {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: ticker 25s linear infinite;
}
.faixa-inner span {
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  flex-shrink: 0;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   SOBRE
   ============================================================ */
.sobre {
  padding: 100px 0;
  background: var(--white);
}
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sobre-img-wrap {
  position: relative;
}
.sobre-img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 64px rgba(9,24,64,.28), 0 0 0 4px rgba(13,143,201,.2);
}
.sobre-foto {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .6s ease;
}
.sobre-img-placeholder:hover .sobre-foto { transform: scale(1.03); }

.sobre-foto-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(9,24,64,.55) 0%, rgba(9,24,64,.1) 40%, transparent 70%),
    linear-gradient(160deg, rgba(13,143,201,.08) 0%, transparent 60%);
  pointer-events: none;
}
.sobre-tag {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--accent);
  color: var(--white);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1px;
  padding: 12px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.sobre-text .section-eyebrow { margin-bottom: 8px; }
.sobre-text .section-title { margin-bottom: 24px; }
.sobre-text p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
}
.sobre-lista {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}
.sobre-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--navy);
}
.check-icon {
  width: 28px; height: 28px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  flex-shrink: 0;
}

/* ============================================================
   SERVIÇOS
   ============================================================ */
.servicos {
  padding: 100px 0;
  background: var(--off-white);
}
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.servico-card {
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--light);
  background: var(--white);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.servico-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
}
.servico-card.destaque {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.servico-card.destaque h3 { color: var(--accent-light); }
.servico-card.destaque p  { color: rgba(255,255,255,.75); }
.servico-card.destaque .servico-icon { color: var(--accent-light); background: rgba(37,99,235,.15); }

.servico-icon {
  width: 64px; height: 64px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-mid);
  margin-bottom: 20px;
  transition: background var(--transition);
}
.servico-card:hover .servico-icon { background: var(--accent); color: var(--white); }
.servico-card.destaque:hover .servico-icon { background: rgba(37,99,235,.25); }

.servico-card h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.servico-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray);
}

/* ============================================================
   EMPREENDIMENTOS
   ============================================================ */
.empreend {
  padding: 100px 0;
  background: var(--off-white);
}
.empreend-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.empreend-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.empreend-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.empreend-card.destaque { border: 2px solid var(--accent); }

.empreend-img {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--light);
  overflow: hidden;
}
.empreend-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.empreend-card:hover .empreend-img img {
  transform: scale(1.05);
}
.empreend-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--navy-mid);
  opacity: .4;
  font-size: 13px;
}
.empreend-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--navy);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 50px;
  text-transform: uppercase;
}
.empreend-badge.gold { background: var(--accent); color: var(--white); }

.empreend-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.empreend-info h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}
.empreend-info p {
  font-size: 13px;
  color: var(--gray);
}
.empreend-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy-mid);
  background: var(--light);
  padding: 4px 10px;
  border-radius: 50px;
  width: fit-content;
}
.empreend-tag.gold { background: rgba(37,99,235,.1); color: var(--accent-dark); }

.empreend-cta {
  text-align: center;
}
.empreend-cta p {
  color: var(--gray);
  margin-bottom: 20px;
  font-size: 16px;
}

/* ============================================================
   ACABAMENTOS
   ============================================================ */
.acabamentos {
  padding: 100px 0;
  background: var(--off-white);
}

.acabamentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.acabamentos-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.acabamentos-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.acabamentos-item:hover img {
  transform: scale(1.06);
}

.acabamentos-overlay {
  position: absolute;
  inset: 0;
 display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 18px;
  transition: background var(--transition);
}
.acabamentos-item:hover .acabamentos-overlay {
  background: linear-gradient(to top, rgba(9,24,64,.75) 0%, rgba(9,24,64,.15) 45%, transparent 70%);
}

.acabamentos-overlay span {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .5px;
}

.zoom-icon {
  color: var(--white);
  opacity: .6;
  flex-shrink: 0;
  transition: opacity var(--transition), transform var(--transition);
}
.acabamentos-item:hover .zoom-icon {
  opacity: 1;
  transform: scale(1.15);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,.88);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  padding: 24px;
}
.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 40px;
  cursor: pointer;
  line-height: 1;
  transition: transform var(--transition);
}
.lightbox-close:hover {
  transform: scale(1.2);
}
.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  animation: lbZoom .3s ease;
}
@keyframes lbZoom {
  from { transform: scale(.85); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.lightbox-caption {
  color: rgba(255,255,255,.8);
  font-family: var(--font-display);
  font-size: 1rem;
  margin-top: 16px;
  text-align: center;
}

/* ============================================================
   EVOLUÇÃO DAS OBRAS
   ============================================================ */
.evolucao {
  padding: 130px 0;
  background: var(--white);
}

.evolucao-timeline {
  position: relative;
}

/* Horizontal connecting line behind cards */
.evolucao-line {
  position: absolute;
  top: 52px;
  left: 8%;
  right: 8%;
  height: 3px;
  background: var(--light);
  z-index: 0;
}
.evolucao-line::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 60%;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 3px;
  animation: lineGrow 1.5s ease-out both;
}
@keyframes lineGrow {
  from { width: 0; }
  to   { width: 100%; }
}

.evolucao-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  position: relative;
  z-index: 1;
}

.evolucao-card {
  text-align: center;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 1.5px solid var(--light);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.evolucao-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
}

.evolucao-step {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(13,143,201,.4);
  position: relative;
  z-index: 2;
}

.evolucao-img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 22px;
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
}
.evolucao-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.evolucao-card:hover .evolucao-img img {
  transform: scale(1.05);
}

.evolucao-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.evolucao-card p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray);
}

/* ============================================================
   NÚMEROS
   ============================================================ */
.numeros {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.numeros-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
}
.numeros-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(13,143,201,.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(13,143,201,.07) 0%, transparent 40%);
}
.numeros-inner { position: relative; z-index: 1; }

.numeros-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}
.numero-item {
  text-align: center;
  padding: 36px 20px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.04);
  transition: transform var(--transition), border-color var(--transition);
}
.numero-item:hover { transform: translateY(-4px); border-color: rgba(13,143,201,.4); }
.numero-val {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 12px;
}
.numero-label {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  font-weight: 600;
  letter-spacing: .5px;
}

/* ============================================================
   CHAMADA (adeus ao aluguel)
   ============================================================ */
.chamada {
  padding: 100px 0;
  background: var(--white);
}
.chamada-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
}
.chamada-text .section-title { margin-bottom: 20px; }
.chamada-text p { color: var(--gray); line-height: 1.8; margin-bottom: 32px; font-size: 17px; }

.chamada-card {
  width: 280px;
  flex-shrink: 0;
  background: var(--navy-dark);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.chamada-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.chamada-number-label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  margin-bottom: 24px;
  margin-top: 4px;
}
.chamada-divider {
  width: 40px;
  height: 2px;
  background: rgba(255,255,255,.4);
  margin: 0 auto 24px;
}
.chamada-quote {
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(255,255,255,.85);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.chamada-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
}

/* ============================================================
   CONTATO
   ============================================================ */
.contato {
  padding: 100px 0;
  background: var(--white);
}
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contato-info .section-title { margin-bottom: 16px; }
.contato-info > p { color: var(--gray); line-height: 1.7; margin-bottom: 36px; }

.contato-lista { display: flex; flex-direction: column; gap: 16px; }
.contato-mapa {
  margin-top: 24px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.contato-mapa iframe {
  display: block;
}
.contato-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius);
  border: 1.5px solid var(--light);
  transition: border-color var(--transition), box-shadow var(--transition);
}
a.contato-item:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.contato-icon {
  width: 48px; height: 48px;
  background: var(--light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
}
.contato-item div strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .5px;
  margin-bottom: 2px;
}
.contato-item div span {
  font-size: 14px;
  color: var(--gray);
}

/* Contact social links */
.contato-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.contato-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  border: 1.5px solid var(--light);
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.contato-social-link:hover {
  border-color: var(--accent);
  background: var(--accent-bg);
  transform: translateY(-2px);
}
.contato-social-link svg {
  color: var(--accent);
}

/* Form */
.contato-form-wrap {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--light);
}
.contato-form h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.contato-form > p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 28px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .5px;
}
.form-group input,
.form-group select {
  padding: 13px 16px;
  border: 1.5px solid rgba(13,45,92,.15);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--navy-dark);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus { border-color: var(--accent); }

/* Custom select (sempre abre para baixo) */
.form-group select { display: none; }

.custom-select {
  position: relative;
}
.custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  border: 1.5px solid rgba(13,45,92,.15);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--navy-dark);
  background: var(--white);
  cursor: pointer;
  user-select: none;
  transition: border-color var(--transition);
}
.custom-select-trigger::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--navy);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.custom-select.is-open .custom-select-trigger {
  border-color: var(--accent);
}
.custom-select.is-open .custom-select-trigger::after {
  transform: rotate(180deg);
}
.custom-select-options {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1.5px solid var(--accent);
  border-radius: var(--radius-sm);
  z-index: 200;
  max-height: 220px;
  overflow-y: auto;
  display: none;
  box-shadow: 0 8px 24px rgba(13,33,82,.12);
}
.custom-select.is-open .custom-select-options {
  display: block;
}
.custom-select-options li {
  padding: 11px 16px;
  font-size: 15px;
  color: var(--navy-dark);
  cursor: pointer;
  list-style: none;
  transition: background var(--transition);
}
.custom-select-options li:hover {
  background: var(--light);
}
.custom-select-options li.is-selected {
  font-weight: 600;
  color: var(--accent);
}
.custom-select-trigger.is-placeholder {
  color: #9ca3af;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-dark);
  padding: 60px 0 32px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo-img {
  height: 48px;
  width: auto;
  opacity: 0.9;
}
.footer-slogan {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: rgba(255,255,255,.6);
}
.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent-light); }

/* Footer social */
.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.footer-social a:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-end {
  font-size: 12px;
  color: rgba(255,255,255,.35);
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  width: 100%;
  text-align: center;
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wpp-float {
  position: fixed;
  bottom: 80px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  z-index: 999;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: wppPulse 2s ease infinite;
}
.wpp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.65); }
@keyframes wppPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.5); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,.8); }
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1024px) {
  .servicos-grid   { grid-template-columns: repeat(2, 1fr); }
  .numeros-grid    { grid-template-columns: repeat(2, 1fr); }
  .evolucao-grid   { grid-template-columns: repeat(2, 1fr); }
  .evolucao-line   { display: none; }
}

@media (max-width: 900px) {
  .sobre-grid    { grid-template-columns: 1fr; gap: 48px; }
  .sobre-img-wrap { max-width: 480px; margin: 0 auto; }
  .empreend-grid { grid-template-columns: repeat(2, 1fr); }
  .contato-grid  { grid-template-columns: 1fr; gap: 48px; }
  .chamada-inner { grid-template-columns: 1fr; }
  .chamada-card  { width: 100%; max-width: 340px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .nav-links    { display: none; }
  .btn-whatsapp { display: none; }
  .menu-toggle  { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: rgba(10,22,40,.98);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }

  .hero-stats   { flex-direction: column; gap: 20px; padding: 20px 0; }
  .stat-divider { width: 60px; height: 1px; }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
    padding-bottom: 0;
  }

  .hero-content {
    margin: 0 auto;
    padding-top: calc(65vh + 16px);
    padding-bottom: 24px;
    text-align: center;
    width: 100%;
  }

  .hero-bottom-stats {
    position: relative;
    flex-shrink: 0;
    width: 100%;
  }

  .hero-scroll-hint {
    display: none;
  }

  .hero-overlay {
    background: linear-gradient(
      to bottom,
      transparent 0%,
      rgba(9,24,64,0.5) 55%,
      rgba(9,24,64,0.97) 75%,
      rgba(9,24,64,1) 100%
    );
  }

  .hero-topo-img {
    width: 100%;
    height: 65vh;
    top: 0;
    bottom: auto;
    object-position: center top;
    mask-image: linear-gradient(to top, transparent 0%, black 20%);
    -webkit-mask-image: linear-gradient(to top, transparent 0%, black 20%);
    opacity: 1;
  }

  .servicos-grid  { grid-template-columns: 1fr; }
  .empreend-grid  { grid-template-columns: 1fr; }
  .evolucao-grid  { grid-template-columns: 1fr; }
  .acabamentos-grid { grid-template-columns: 1fr; }
  .acabamentos-item { aspect-ratio: 1/1; }
  .numeros-grid   { grid-template-columns: 1fr 1fr; }

  .contato-form-wrap { padding: 28px 20px; }

  /* Contato mobile */
  .contato { padding: 60px 0; }
  .contato-grid { grid-template-columns: 1fr; gap: 40px; }
  .contato-info > p { margin-bottom: 24px; }
  .contato-social { flex-direction: column; gap: 10px; margin-top: 8px; }
  .contato-social-link { width: 100%; justify-content: center; padding: 12px 16px; }
  .contato-item { padding: 16px; }
  .contato-mapa iframe { height: 180px; }
  .contato-form h3 { font-size: 1.2rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .numeros-grid { grid-template-columns: 1fr; }
  .footer-links { gap: 20px; }
}

/* ============================================================
   BANNER DE COOKIES
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: rgba(20, 20, 20, 0.97);
  color: #ffffff;
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 13px;
  max-width: 320px;
  width: 90%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  z-index: 9999;
  line-height: 1.6;
}
.cookie-banner[hidden] { display: none; }

.cookie-banner__text {
  margin: 0;
}

.cookie-banner__link {
  color: #0d8fc9;
  text-decoration: underline;
}

.cookie-banner__btn {
  display: block;
  margin-top: 10px;
  margin-left: auto;
  background: transparent;
  border: none;
  color: #0d8fc9;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}
.cookie-banner__btn:hover {
  opacity: .75;
}

/* ============================================================
   MODAL POLÍTICA DE PRIVACIDADE
   ============================================================ */
.privacy-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.privacy-modal[hidden] { display: none; }

.privacy-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
  cursor: pointer;
}

.privacy-modal__box {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius);
  width: 100%;
  max-width: 620px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 64px rgba(9,24,64,.3);
  animation: modalIn .3s ease both;
}
@keyframes modalIn {
  from { transform: scale(.92); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

.privacy-modal__close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  line-height: 1;
  color: var(--navy);
  cursor: pointer;
  padding: 0 4px;
  transition: color var(--transition), transform var(--transition);
}
.privacy-modal__close:hover {
  color: var(--accent);
  transform: scale(1.15);
}

.privacy-modal__content {
  padding: 40px 40px 24px;
  overflow-y: auto;
  flex: 1;
}

.privacy-modal__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 4px;
}

.privacy-modal__updated {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 28px;
}

.privacy-modal__content h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 24px;
  margin-bottom: 8px;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

.privacy-modal__content p,
.privacy-modal__content li {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.75;
}

.privacy-modal__content ul {
  padding-left: 20px;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.privacy-modal__footer {
  padding: 20px 40px 28px;
  border-top: 1px solid var(--light);
  display: flex;
  justify-content: flex-end;
}

.privacy-modal__btn-close {
  padding: 12px 32px;
  font-size: 15px;
}

@media (max-width: 480px) {
  .privacy-modal__content { padding: 32px 20px 20px; }
  .privacy-modal__footer  { padding: 16px 20px 24px; }
  .privacy-modal__btn-close { width: 100%; justify-content: center; }
}

/* --- Vídeo play/pause --- */
.video-wrapper {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.video-wrapper video {
  display: block;
  width: 100%;
}
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
  transition: background 0.2s;
  border-radius: inherit;
}
.video-overlay.playing {
  background: transparent;
}
.video-overlay.playing:hover {
  background: rgba(0,0,0,0.15);
}
.video-overlay.playing .video-btn-play {
  opacity: 0;
}
.video-overlay.playing:hover .video-btn-play {
  opacity: 1;
}
.video-btn-play {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(9, 24, 64, 0.8);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.1s, transform 0.2s, background 0.1s;
  pointer-events: none;
}
.video-btn-play:hover {
  background: rgba(13, 143, 201, 1);
  transform: scale(1.08);
}
