:root{
  --bg:#f4efe9;          /* champagne claro */
  --bg2:#efe6dd;         /* champagne escuro */
  --surface:#ffffff;     /* cartões */
  --surface2:#f7f2ec;    /* cartões 2 */
  --text:#2b1c1c;        /* vinho escuro texto */
  --muted:#6b5b5b;
  --brand:#c9a45c;       /* dourado elegante */
  --brand2:#e6c27a;
  --accent:#a67c52;
  --ok:#2dd4bf;
  --shadow: 0 10px 25px rgba(0,0,0,.08);
  --radius: 18px;
  --max: 1120px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", "Noto Sans", "Liberation Sans", sans-serif;
  background: linear-gradient(180deg, var(--bg), var(--bg2));
  color:var(--text);
  line-height:1.55;
}
a{color:inherit;text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 18px;}
.chip{
  display:inline-flex; gap:10px; align-items:center;
  padding:8px 12px; border-radius:999px;
  background: rgba(214,162,74,.12);
  border:1px solid rgba(214,162,74,.25);
  color: var(--brand2);
  font-weight:600; font-size:13px;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  color: var(--text);
  box-shadow: var(--shadow);
  cursor:pointer;
  transition: transform .12s ease, border-color .12s ease, background .12s ease;
  font-weight:650;
}
.btn:hover{ transform: translateY(-1px); border-color: rgba(214,162,74,.35); }
.btn.primary{
  background: linear-gradient(180deg, rgba(214,162,74,.95), rgba(214,162,74,.75));
  border-color: rgba(214,162,74,.55);
  color:#141415;
}
.btn.ghost{ box-shadow:none; background:transparent; }
.btn.small{ padding:10px 12px; font-size:14px; border-radius:10px; }
.btn.whatsapp{
  background: linear-gradient(180deg, rgba(45,212,191,.95), rgba(45,212,191,.70));
  border-color: rgba(45,212,191,.55);
  color:#051212;
}

/* Header */
header{
  position:sticky; top:0; z-index:50;
  background: rgba(255,255,255,.85); backdrop-filter: blur(6px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0;
  gap:14px;
}
.brand{
  display:flex; align-items:center; gap:12px; min-width:200px;
}
.brand .logo{
  width:44px; height:44px; border-radius:12px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  display:block; object-fit:cover;
}
.brand .title{ display:flex; flex-direction:column; line-height:1.1; }
.brand .title strong{font-size:14px; letter-spacing:.3px}
.brand .title span{font-size:12px; color:var(--muted)}
nav ul{
  list-style:none; margin:0; padding:0;
  display:flex; gap:14px; align-items:center;
}
nav a{
  padding:10px 10px;
  border-radius:10px;
  color: var(--muted);
  font-weight:600;
  font-size:14px;
  transition: background .12s ease, color .12s ease;
}
nav a:hover{ background: rgba(255,255,255,.06); color: var(--text); }
.nav-actions{ display:flex; gap:10px; align-items:center; }

/* Mobile menu */
.menu-btn{ display:none; }
.mobile-panel{ display:none; padding:10px 0 16px; }
.mobile-panel a{ display:block; padding:12px 10px; border-radius:10px; }
.mobile-panel a:hover{ background: rgba(255,255,255,.06); }

/* Hero */
.hero{ padding:42px 0 26px; }
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:18px;
  align-items:stretch;
}
.card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-left{ padding:28px; overflow:hidden; position:relative; }
.hero-left:before{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(520px 260px at 20% 0%, rgba(214,162,74,.22), transparent 60%),
              radial-gradient(520px 260px at 90% 10%, rgba(45,212,191,.16), transparent 60%);
  pointer-events:none;
}
.hero-left > *{ position:relative; }
.h1{ font-size: clamp(28px, 3.6vw, 46px); margin:14px 0 8px; letter-spacing:-.3px; }
.lead{ color: var(--muted); font-size: 16px; max-width: 52ch; margin: 0 0 18px; }
.hero-cta{ display:flex; flex-wrap:wrap; gap:10px; margin-top:16px; }
.hero-badges{
  display:flex; flex-wrap:wrap; gap:10px; margin-top:12px;
  color: var(--muted); font-size: 13px;
}
.hero-right{ overflow:hidden; display:flex; flex-direction:column; min-height: 360px; }
.hero-image{
  width:100%;
  height:100%;
  min-height:360px;
  object-fit:cover;
  border-radius: var(--radius);
  display:block;
  filter: contrast(1.05) saturate(1.05);
}

/* Sections */
section{ padding: 30px 0; }
.section-head{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:12px; margin-bottom:14px;
}
.section-head h2{ margin:0; font-size:22px; letter-spacing:-.2px; }
.section-head p{ margin:0; color:var(--muted); font-size:14px; max-width: 62ch; }
.grid-3{ display:grid; gap:12px; grid-template-columns: repeat(3, 1fr); }
.grid-2{ display:grid; gap:12px; grid-template-columns: repeat(2, 1fr); }
.tile{ padding:16px; }
.tile h3{ margin:8px 0 6px; font-size:16px; }
.tile p{ margin:0; color:var(--muted); font-size:14px; }
.icon{
  width:42px; height:42px; border-radius:12px;
  display:grid; place-items:center;
  background: rgba(214,162,74,.14);
  border:1px solid rgba(214,162,74,.22);
  color: var(--brand2);
  font-weight:800;
}

/* Artist */
.artist{ padding:18px; display:flex; gap:14px; align-items:center; }
.avatar{
  width:76px; height:76px; border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  object-fit:cover;
  flex: 0 0 auto;
}
.artist .meta strong{ font-size:16px; display:block; }
.artist .meta span{ color:var(--muted); font-size:13px; display:block; margin-top:2px; }
.artist .meta p{ margin:10px 0 0; color:var(--muted); font-size:14px; }

/* Gallery */
.gallery{ display:grid; gap:10px; grid-template-columns: repeat(4, 1fr); }
.thumb{
  position:relative;
  border-radius: 16px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  cursor:pointer;
  min-height: 140px;
}
.thumb img{
  width:100%; height:100%;
  object-fit:cover; display:block;
  transform: scale(1.01);
  transition: transform .18s ease;
}
.thumb:hover img{ transform: scale(1.06); }
.thumb .label{
  position:absolute; left:10px; bottom:10px;
  background: rgba(11,11,13,.65);
  border:1px solid rgba(255,255,255,.10);
  color: var(--text);
  padding:6px 10px;
  border-radius: 999px;
  font-size: 12px;
  backdrop-filter: blur(8px);
}
.gallery-group{ margin-top: 14px; }
.gallery-group h3{ margin: 0 0 10px; font-size:16px; }
.gallery-group p{ margin: 0 0 12px; color: var(--muted); font-size: 13px; }

/* Coworking callout */
.callout{
  padding:18px;
  display:flex; gap:14px; align-items:flex-start; justify-content:space-between;
}
.callout h3{ margin:0 0 6px; font-size:16px; }
.callout p{ margin:0; color:var(--muted); font-size:14px; }
.callout .actions{ display:flex; gap:10px; flex-wrap:wrap; align-items:center; }

/* Contact */
.contact-grid{
  display:grid; gap:12px;
  grid-template-columns: 1fr 1fr;
  align-items:stretch;
}
.contact-card{ padding:18px; }
.contact-card h3{ margin:0 0 8px; font-size:16px; }
.kv{ margin:0; padding:0; list-style:none; display:grid; gap:10px; color: var(--muted); font-size:14px; }
.kv li strong{ color: var(--text); font-weight:750; }
.map-wrap{
  overflow:hidden;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  height: 360px;
}
iframe{ width:100%; height:100%; border:0; }

/* Footer */
footer{
  padding: 26px 0 40px;
  color: var(--muted);
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: 26px;
}
.foot{ display:flex; justify-content:space-between; gap:10px; flex-wrap:wrap; font-size: 13px; }
.foot a{ color: var(--text); opacity:.9; }

/* Lightbox */
.lightbox{
  position:fixed; inset:0; z-index:100;
  background: rgba(0,0,0,.75);
  display:none;
  align-items:center; justify-content:center;
  padding:18px;
}
.lightbox.open{ display:flex; }
.lightbox-inner{
  max-width: 1100px;
  width: 100%;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: #0b0b0d;
  box-shadow: var(--shadow);
  position:relative;
}
.lightbox-inner img{
  width:100%;
  height: min(78vh, 760px);
  object-fit:contain;
  background: #0b0b0d;
  display:block;
}
.lightbox-bar{
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 12px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: var(--muted);
  font-size: 13px;
  gap:10px;
}
.x{
  border-radius: 10px;
  padding:10px 12px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: var(--text);
  cursor:pointer;
  font-weight:800;
}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-right{ min-height: 260px; }
  .hero-image{ min-height: 260px; }
  .grid-3{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: repeat(2, 1fr); }
  .contact-grid{ grid-template-columns: 1fr; }
  nav ul{ display:none; }
  .menu-btn{ display:inline-flex; }
  .mobile-panel{ display:block; }
  .mobile-panel[hidden]{ display:none; }
}


/* Coworking carousel (ajustado: imagens menores e proporcionais) */
.carousel{
  position:relative;
  margin-top:14px;
  max-width: 980px;
  margin-left:auto;
  margin-right:auto;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(201,164,92,.28);
  border-radius: var(--radius);
  padding: 12px 12px 10px;
  box-shadow: var(--shadow);
}
.car-viewport{
  overflow:hidden;
  border-radius: calc(var(--radius) - 8px);
}
.car-track{
  display:flex;
  gap: 12px;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-behavior: smooth;
  padding-bottom: 4px;
}
.car-track::-webkit-scrollbar{ display:none; }

/* Mostra 1 slide por vez no celular, com um "peek" do próximo */
.car-slide{
  flex: 0 0 88%;
  scroll-snap-align: start;
}

/* Desktop: 3 por vez (fica menor) */
@media (min-width: 900px){
  .car-slide{ flex-basis: 32%; }
}

/* Imagens menores e com recorte proporcional */
.carousel .thumb{
  border-radius: 14px;
  overflow:hidden;
}
.carousel .thumb img{
  width:100%;
  height: 200px;
  object-fit: cover;
  display:block;
}
@media (min-width: 900px){
  .carousel .thumb img{ height: 180px; }
}

.car-btn{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(201,164,92,.35);
  background: rgba(255,255,255,.85);
  color: var(--text);
  font-size: 26px;
  line-height: 1;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  box-shadow: 0 10px 20px rgba(0,0,0,.12);
}
.car-btn:hover{ background: rgba(255,255,255,.95); }
.car-btn.prev{ left: 10px; }
.car-btn.next{ right: 10px; }
@media (max-width: 640px){
  .car-btn{ display:none; } /* swipe no celular */
}

.car-dots{
  display:flex;
  gap: 8px;
  justify-content:center;
  margin-top: 10px;
}
.car-dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(43,28,28,.18);
  border: 1px solid rgba(201,164,92,.25);
  cursor:pointer;
}
.car-dot.is-active{
  width: 22px;
  background: rgba(201,164,92,.75);
}


/* Legal pages typography */
.legal h2{ margin: 18px 0 10px; font-size:18px; }
.legal h3{ margin: 14px 0 8px; font-size:16px; }
.legal p{ margin: 10px 0; color: var(--muted); font-size: 14px; }
.legal ul{ margin: 8px 0 12px 18px; color: var(--muted); font-size:14px; }
.legal li{ margin: 6px 0; }
.legal strong{ color: var(--text); }
