/* Urban Incorporações — CSS Compartilhado
   ─────────────────────────────────────────────────────────── */

:root {
  --gold:        #F39200;
  --gold-alt:    #E6A420;
  --preto:       #1A1A1A;
  --heading:     #000000;
  --links-nav:   #808080;
  --body:        #000000;
  --branco:      #FFFFFF;
  --section-alt: #F1F1F1;
  --border:      #E0E0E0;
  --border-dark: #000000;
  --separator:   #CCCCCC;
  --font: 'Onest', sans-serif;
  --s1:8px; --s2:16px; --s3:24px; --s4:32px;
  --s5:48px; --s6:64px; --s7:80px; --s8:120px;
  --r-none:0px; --r-btn:50px; --r-pill:9999px; --r-sm:4px;
  --ease: 0.3s ease-in-out;
  --nav-h: 90px;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: #fff; color: var(--body); -webkit-font-smoothing: antialiased; line-height: 1.5; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: var(--font); border: none; }
.img-cover { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.img-fill  { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Layout ─────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 80px 48px; }

/* ── Botões ─────────────────────────────────────────────── */
.btn-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  background: transparent; color: var(--heading);
  border: 1.5px solid var(--heading); border-radius: 50px;
  padding: 13px 28px; font-size: 12px; font-weight: 500;
  font-family: var(--font); letter-spacing: .5px; text-transform: uppercase;
  transition: all var(--ease);
}
.btn-cta:hover { background: var(--heading); color: var(--branco); }
.btn-cta-gold {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  background: transparent; color: var(--gold);
  border: 1.5px solid var(--gold); border-radius: 50px;
  padding: 13px 28px; font-size: 12px; font-weight: 500;
  font-family: var(--font); letter-spacing: .5px; text-transform: uppercase;
  transition: all var(--ease);
}
.btn-cta-gold:hover { background: var(--gold); color: var(--branco); }
.btn-enviar {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gold); color: var(--branco); border-radius: 0;
  padding: 14px 48px; font-size: 13px; font-weight: 700;
  font-family: var(--font); letter-spacing: 1.5px; text-transform: uppercase;
  transition: all var(--ease); border: none;
}
.btn-enviar:hover { filter: brightness(1.1); }

/* ── Formulário ─────────────────────────────────────────── */
.field { display: flex; flex-direction: column; gap: 4px; }
.lbl-dark { font-size: 10px; font-weight: 600; color: rgba(255,255,255,.4); letter-spacing: 1px; text-transform: uppercase; }
.inp {
  background: #343232; border: 1.5px solid var(--gold);
  padding: 13px 14px; font-family: var(--font); font-size: 13px;
  color: var(--branco); outline: none; width: 100%;
  transition: border-color var(--ease);
}
.inp::placeholder { color: rgba(255,255,255,.2); }
.inp:focus { border-color: var(--branco); }

/* ── Badge ──────────────────────────────────────────────── */
.badge { display: inline-flex; align-items: center; gap: 5px; padding: 4px 10px; border-radius: 4px; font-size: 10px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; font-family: var(--font); }
.badge-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.b-lanc     { background: var(--gold); color: var(--branco); }
.b-lanc .badge-dot { background: var(--branco); }
.b-obras    { background: #2E7FC8; color: var(--branco); }
.b-obras .badge-dot { background: var(--branco); }
.b-entregue { background: #808080; color: var(--branco); }
.b-entregue .badge-dot { background: var(--branco); }

/* ── Navbar ─────────────────────────────────────────────── */
.navbar { height: var(--nav-h); background: var(--branco); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
.navbar-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; height: 100%; display: flex; align-items: center; justify-content: space-between; }
.navbar-logo { display: flex; align-items: center; }
.navbar-links { display: flex; gap: 4px; }
.nav-link { font-size: 11px; font-weight: 400; color: var(--links-nav); padding: 6px 14px; text-transform: uppercase; letter-spacing: .8px; transition: color var(--ease); }
.nav-link:hover, .nav-link.active { color: var(--heading); }
.nav-link.active { font-weight: 700; }
.navbar-social { display: flex; gap: 14px; }
.navbar-social a { color: var(--links-nav); display: flex; align-items: center; transition: color var(--ease); }
.navbar-social a:hover { color: var(--heading); }
/* Hamburger — visível só em mobile (definido no @media abaixo) */
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--heading); transition: all 0.3s ease; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero / Slider ──────────────────────────────────────── */
.hero-home {
  position: relative;
  height: calc(78vh + 100px); min-height: 520px; overflow: hidden;
  display: flex; align-items: center; padding: 0;
}
.hero-home-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.55) 0%, rgba(0,0,0,.25) 60%, rgba(0,0,0,.05) 100%); }
.hero-home-content { position: relative; z-index: 2; width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.hero-dots-wrap { position: absolute; bottom: 32px; left: 0; right: 0; z-index: 3; display: flex; justify-content: center; gap: 8px; cursor: pointer; }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(209,178,128,.6); cursor: pointer; }
.hero-dot.active { background: var(--gold); width: 22px; border-radius: 4px; }
.hero-title { font-size: 80px; font-weight: 300; letter-spacing: -2px; color: var(--branco); line-height: 1.0; margin-bottom: 12px; text-transform: uppercase; }
.hero-subtitle { font-size: 16px; font-weight: 400; color: var(--branco); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 500; color: var(--branco); text-transform: uppercase; letter-spacing: .5px; }
.hero-tag-pin { flex-shrink: 0; color: var(--gold); }
/* Slides */
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .9s ease; pointer-events: none; }
.hero-slide.active { opacity: 1; pointer-events: auto; }
.hero-slide .img-cover {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  top: -50px; height: calc(100% + 50px); object-position: top;
}
.hero-slide .hero-home-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.55) 0%, rgba(0,0,0,.25) 60%, rgba(0,0,0,.05) 100%); }
.hero-slide .hero-home-content { position: relative; z-index: 2; width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 48px; display: flex; align-items: center; height: 100%; }
.hero-eyebrow { font-size: 9px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.hero-text { max-width: 560px; display: flex; flex-direction: column; gap: 12px; }
.hero-slide--right .hero-home-content { justify-content: flex-end; }

/* ── Hero split 55/45 (detalhe) ─────────────────────────── */
.hero-split { display: grid; grid-template-columns: 55fr 45fr; min-height: 560px; }
.hero-split-img { position: relative; overflow: hidden; }
.hero-split-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.hero-split-img:hover img { transform: scale(1.04); }
.hero-split-info { padding: 60px 52px; display: flex; flex-direction: column; justify-content: center; gap: 16px; background: var(--branco); }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px; border-radius: 4px; background: var(--gold); color: var(--branco); font-size: 10px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; align-self: flex-start; }
.hero-name { font-size: 56px; font-weight: 400; color: var(--heading); letter-spacing: -1px; line-height: 1.0; }
.hero-subtitle-emp { font-size: 20px; font-weight: 300; color: var(--body); line-height: 1.4; }
.hero-loc { display: inline-flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 500; color: var(--gold); }
.hero-loc-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.hero-specs { font-size: 13px; color: var(--links-nav); line-height: 2; }

/* ── Categorias (home) ──────────────────────────────────── */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.cat-item { display: flex; flex-direction: column; gap: 12px; cursor: pointer; }
.cat-img { aspect-ratio: 3/4; overflow: hidden; background: #ddd; }
.cat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.cat-item:hover .cat-img img { transform: scale(1.04); }
.cat-label { font-size: 14px; font-weight: 400; letter-spacing: 2px; text-transform: uppercase; color: var(--heading); }

/* ── Padrão Urban ───────────────────────────────────────── */
.padrao-section { background: var(--section-alt); }
.padrao-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; display: grid; grid-template-columns: 1fr 1fr; min-height: 400px; }
.padrao-text { padding: var(--s7) 0; display: flex; flex-direction: column; justify-content: center; gap: 20px; }
.padrao-title { font-size: 44px; font-weight: 300; color: var(--heading); line-height: 1.15; }
.padrao-body  { font-size: 15px; font-weight: 400; color: var(--body); line-height: 1.75; max-width: 400px; }
.padrao-photo { position: relative; overflow: hidden; display: flex; align-items: flex-end; justify-content: center; }
.arc { position: absolute; border-radius: 50%; border: 26px solid var(--gold); }
.arc-1 { width: 360px; height: 360px; right: -80px; bottom: -80px; border-left-color: transparent; border-top-color: transparent; }
.arc-2 { width: 240px; height: 240px; right: -44px; bottom: -44px; border-width: 18px; border-left-color: transparent; border-top-color: transparent; opacity: .55; }
.padrao-person { position: relative; z-index: 2; width: 100%; min-height: 340px; overflow: hidden; }

/* ── Contato ────────────────────────────────────────────── */
.contato-section { background: var(--section-alt); }
.contato-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; }
.contato-left { position: relative; overflow: hidden; padding: 60px 0; display: flex; flex-direction: column; justify-content: flex-start; gap: 16px; }
.contato-lbl { position: relative; z-index: 2; }
.contato-title { font-size: 44px; font-weight: 300; color: var(--heading); margin-bottom: 10px; }
.contato-desc  { font-size: 14px; color: var(--body); opacity: .65; line-height: 1.7; max-width: 320px; }
.contato-person { position: absolute; z-index: 2; bottom: 0; right: 0; width: 55%; overflow: hidden; }
.contato-right { background: var(--preto); padding: 52px 44px; display: flex; flex-direction: column; gap: 18px; }

/* ── Diferenciais ───────────────────────────────────────── */
.dif-list { border-top: 1px solid var(--separator); }
.dif-item { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; border-bottom: 1px solid var(--separator); cursor: pointer; transition: opacity .2s; }
.dif-item:hover { opacity: .6; }
.dif-label { font-size: 14px; font-weight: 400; color: var(--heading); }
.dif-icon { width: 24px; height: 24px; border-radius: 50%; border: 1.5px solid var(--gold); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 14px; flex-shrink: 0; transition: background .2s, color .2s; }
.dif-item:hover .dif-icon { background: var(--gold); color: var(--branco); }

/* ── Plantas / Pills ────────────────────────────────────── */
.planta-pill { padding: 9px 20px; border-radius: 50px; border: 1.5px solid var(--border-dark); background: transparent; font-family: var(--font); font-size: 12px; color: var(--heading); cursor: pointer; transition: all var(--ease); }
.planta-pill:hover, .planta-pill.active { background: var(--heading); color: var(--branco); }

/* ── Galeria ────────────────────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: 300px 300px; gap: 4px; }
.gallery-main { grid-row: 1/3; overflow: hidden; position: relative; }
.gallery-thumb { overflow: hidden; position: relative; }
.gallery-main img, .gallery-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-main:hover img, .gallery-thumb:hover img { transform: scale(1.04); }

/* ── Mapa ───────────────────────────────────────────────── */
.maps-wrap { width: 100%; height: 480px; overflow: hidden; }
.maps-iframe { width: 100%; height: 100%; border: none; display: block; filter: grayscale(100%) contrast(0.82) brightness(1.08); }

/* ── Footer ─────────────────────────────────────────────── */
.footer { background: var(--branco); }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 52px 48px; display: grid; grid-template-columns: 240px 1fr 1fr 1fr; gap: 40px; }
.footer-logo { margin-bottom: 14px; }
.footer-address { font-size: 11px; color: var(--body); line-height: 1.9; }
.footer-col-title { font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--links-nav); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link { font-size: 12px; font-weight: 400; text-transform: uppercase; letter-spacing: .5px; color: var(--heading); transition: color var(--ease); }
.footer-link:hover { color: var(--gold); }
.footer-social { display: flex; gap: 10px; margin-top: 6px; }
.footer-social a { color: var(--gold-alt); display: flex; align-items: center; transition: color var(--ease); }
.footer-social a:hover { color: var(--heading); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding: 16px 48px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; }
.footer-copy { font-size: 10px; color: var(--links-nav); letter-spacing: .3px; }

/* ══════════════════════════════════════════════════════
   RESPONSIVIDADE — 768px e 480px
══════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  /* Navbar */
  .navbar { height: auto; }
  .navbar-inner { flex-wrap: nowrap; padding: 0 20px; height: var(--nav-h); position: relative; }
  .nav-toggle { display: flex; }
  .navbar-links {
    display: none; flex-direction: column; gap: 0; width: 100%;
    padding: 8px 20px 16px; border-top: 1px solid var(--border);
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--branco); border-bottom: 1px solid var(--border);
    box-shadow: 0 6px 20px rgba(0,0,0,.08); z-index: 999;
  }
  .nav-open .navbar-links { display: flex; }
  .nav-link { padding: 12px 0; border-bottom: 1px solid var(--section-alt); font-size: 12px; }
  .nav-link:last-child { border-bottom: none; }
  .navbar-social {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--branco); padding: 12px 20px 16px;
    border-bottom: 1px solid var(--border); z-index: 998;
  }
  .nav-open .navbar-social { display: flex; }

  /* Hero */
  .hero-home { height: 70vh; min-height: 480px; }
  .hero-slide .hero-home-content { padding: 0 20px; }
  .hero-slide--right .hero-home-content { justify-content: flex-start; }
  .hero-title { font-size: 48px; letter-spacing: -1px; }
  .hero-subtitle { font-size: 13px; }
  .hero-dots-wrap { bottom: 20px; }

  /* Container */
  .container { padding: 48px 20px; }

  /* Categorias */
  .cat-grid { grid-template-columns: 1fr; gap: 24px; }

  /* Padrão Urban */
  .padrao-inner { grid-template-columns: 1fr; min-height: auto; padding: 0 20px; }
  .padrao-text { padding: 48px 0 32px; }
  .padrao-title { font-size: 32px; }
  .padrao-photo { min-height: 320px; }

  /* Contato */
  .contato-inner { grid-template-columns: 1fr; min-height: auto; padding: 0 20px; }
  .contato-left { overflow: visible; padding-bottom: 16px; }
  .contato-left .arc-1, .contato-left .arc-2 { display: none; }
  .contato-title { font-size: 32px; }
  .contato-person { position: static; width: 70%; margin: 24px auto 0; min-height: 0; }
  .contato-right { padding: 32px 20px; }

  /* Hero split */
  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-split-img { height: 52vw; min-height: 260px; }
  .hero-split-info { padding: 32px 20px 40px; }
  .hero-name { font-size: 40px; }

  /* Galeria */
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: 260px 200px 200px; }
  .gallery-main { grid-row: auto; }

  /* Mapa */
  .maps-wrap { height: 320px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 24px; padding: 36px 20px; }
  .footer-bottom { padding: 12px 20px; flex-direction: column; gap: 4px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 36px; }
  .padrao-title, .contato-title { font-size: 28px; }
  .cat-grid { gap: 16px; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero-slide .img-cover {
    object-position: left center;
  }
  .hero-slide:not(.hero-slide--right) .img-cover {
    object-position: right center;
  }
  .hero-slide:not(.hero-slide--right) .hero-text {
    text-align: right;
  }
}

/* ── WhatsApp flutuante ──────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.5); }
@media (max-width: 768px) { .wa-float { bottom: 20px; right: 16px; width: 50px; height: 50px; } }

/* ── Assinatura Innovart no rodapé ───────────────────────── */
.footer-innovart { display: inline-flex; align-items: center; opacity: .4; transition: opacity .25s; }
.footer-innovart:hover { opacity: 1; }
.footer-innovart img { height: 18px; width: auto; display: block; }

/* ── Banner de cookies (LGPD) ────────────────────────────── */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998;
  background: #1A1A1A; color: rgba(255,255,255,.85); padding: 16px 24px;
  display: none; align-items: center; justify-content: center; gap: 20px;
  flex-wrap: wrap; font-size: 13px; line-height: 1.5; box-shadow: 0 -2px 24px rgba(0,0,0,.25); }
.cookie-banner.show { display: flex; }
.cookie-banner span { max-width: 720px; }
.cookie-banner a { color: #F39200; text-decoration: underline; }
.cookie-banner button { background: #F39200; color: #fff; border: none; padding: 11px 30px;
  font-weight: 700; letter-spacing: 1px; text-transform: uppercase; font-size: 11px;
  cursor: pointer; font-family: inherit; white-space: nowrap; transition: background .2s; }
.cookie-banner button:hover { background: #d97f00; }
@media (max-width: 768px) { .cookie-banner { padding: 14px 16px; gap: 12px; font-size: 12px; } }
