/* ===================================================== */
/* =================== VARIÁVEIS ======================== */
/* ===================================================== */
:root{
  --bg:#0b0c10;
  --panel:#11131a;
  --panel2:#0f1117;
  --text:#f2f4f8;
  --muted:#c2c8d6;
  --line:rgba(255,255,255,.15);
  --accent:#d7c08a;
  --shadow: 0 18px 55px rgba(0,0,0,.35);
  --radius: 18px;
}

/* ===================================================== */
/* =================== RESET / BASE ===================== */
/* ===================================================== */
*{box-sizing:border-box}
html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:linear-gradient(180deg,#1a1f28 0%, #1e2430 40%, #1a2028 100%);
  color:var(--text);
}

a{color:inherit; text-decoration:none}
.container{width:min(1120px,92vw); margin:0 auto}

:focus-visible{
  outline: 2px solid rgba(215,192,138,.6);
  outline-offset: 3px;
  border-radius: 10px;
}

/* ===================================================== */
/* =================== TOPO / NAVEGAÇÃO ================ */
/* ===================================================== */
.topbar{
  position:sticky; top:0; z-index:50;
  background:rgba(20,24,32,.82);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}

.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:18px;
}

.brand{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}

.brand__name{
  font-weight:700;
  letter-spacing:.08em;
}

.brand__sub{
  font-size:12px;
  color:var(--muted);
  margin-top:4px;
}

.nav{
  display:flex;
  gap:18px;
  align-items:center;
}

.nav a{
  font-size:14px;
  color:var(--muted);
}

.nav a:hover{color:var(--text)}
.nav__toggle{display:none}

.nav__mobile{
  display:none;
  border-top:1px solid var(--line);
  padding:10px 0 16px;
}

.nav__mobile a{
  display:block;
  padding:12px 4vw;
  color:var(--muted);
}

.nav__mobile a:hover{color:var(--text)}

/* ===================================================== */
/* =================== HERO ============================ */
/* ===================================================== */
.hero{
  position:relative;
  min-height:78vh;
  display:grid;
  place-items:center;
}

.hero__media{
  position:absolute;
  inset:0;
  overflow:hidden;
}

.hero__slides{
  position:absolute;
  inset:0;
}

.hero__slides img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0;
  transition:opacity 900ms ease;
  transform:scale(1.03);
}

.hero__slides img.is-active{opacity:1}

.hero__overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(1200px 600px at 20% 30%, rgba(0,0,0,.15), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.45) 60%, rgba(0,0,0,.55) 100%);
}

.hero__content{
  position:relative;
  padding:110px 0 70px;
  text-align:left;
}

.kicker{
  color:var(--muted);
  letter-spacing:.14em;
  text-transform:uppercase;
  font-size:12px;
}

h1{
  font-size: clamp(34px, 4.2vw, 58px);
  margin:10px 0 14px;
  line-height:1.05;
}

h2{
  font-size: clamp(24px, 2.5vw, 34px);
  margin:0 0 10px;
}

h3{margin:0 0 10px}

.accent{color:var(--accent)}

.lead{
  max-width:720px;
  font-size: clamp(15px, 1.2vw, 18px);
  color:rgba(242,244,248,.95);
  line-height:1.65;
  text-shadow: 0 10px 40px rgba(0,0,0,.55);
}

.hero__content h1{
  text-shadow: 0 10px 40px rgba(0,0,0,.55);
}

.hero__chips{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:26px;
}

.chip{
  font-size:12px;
  color:rgba(242,244,248,.95);
  border:1px solid rgba(255,255,255,.16);
  background:rgba(0,0,0,.18);
  padding:8px 12px;
  border-radius:999px;
}

/* ===================================================== */
/* =================== BOTÕES ========================== */
/* ===================================================== */
.cta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(215,192,138,.16);
  color:var(--text);
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
  font-weight:600;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.btn:hover{transform:translateY(-1px)}

.btn--ghost{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.18);
  color:var(--text);
}

/* ===================================================== */
/* =================== SECÇÕES / LAYOUT ================ */
/* ===================================================== */
.section{padding:72px 0}

.section--alt{
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
}

.section__head{margin-bottom:24px}

.muted{color:var(--muted)}
.small{font-size:12px}

.grid{display:grid; gap:22px}
.grid--2{grid-template-columns: 1.2fr .8fr}

/* ===================================================== */
/* =================== CARDS / BLOCOS ================== */
/* ===================================================== */
.card{
  background:rgba(255,255,255,.10);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:20px;
}

.card--soft{
  background:rgba(215,192,138,.10);
  border:1px solid rgba(215,192,138,.20);
}

.bullets{
  display:flex;
  flex-direction:column;
  gap:18px;
  padding-left:18px;
}

.bullets li{color:rgba(242,244,248,.95)}

.facts{
  display:grid;
  gap:10px;
  margin-top:12px;
}

.facts div{
  display:flex;
  justify-content:space-between;
  gap:14px;
  padding:10px 0;
  border-bottom:1px solid var(--line);
}

.facts span{color:var(--muted)}

/* ===================================================== */
/* =================== TIPOLOGIAS ====================== */
/* ===================================================== */
.blocks .card{padding:22px}
.table{margin-top:10px; border-top:1px solid var(--line)}

.row{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
  border-bottom:1px solid var(--line);
}

.row--link{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
  border-bottom:1px solid var(--line);
  color:inherit;
  text-decoration:none;
}

.row--link:hover{
  background:rgba(255,255,255,.04);
}

.cell{
  display:flex;
  flex-direction:column;
  gap:4px;
}

.price{
  font-weight:700;
  color:var(--accent);
  white-space:nowrap;
}

.note{
  margin-top:30px;
  padding:14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.14);
}

/* ===================================================== */
/* =================== GALERIA ========================= */
/* ===================================================== */
.gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}

.gallery img{
  width:100%;
  height:240px;
  object-fit:cover;
  border-radius:16px;
  border:1px solid var(--line);
  transition: transform .2s ease, filter .2s ease;
}

.gallery img:hover{
  transform: scale(1.01);
  filter: brightness(1.05);
}

/* ===================================================== */
/* =================== CONTACTO ======================== */
/* ===================================================== */
.contact-center{
  display:flex;
  justify-content:center;
}

.contact-card{
  max-width:520px;
  width:100%;
  text-align:center;
}

.contact-info{
  display:flex;
  flex-direction:column;
  gap:18px;
  margin:22px 0;
}

.contact-item strong{
  display:block;
  margin-top:4px;
  font-size:16px;
}

.contact-buttons{
  justify-content:center;
  margin-top:10px;
}

/* ===================================================== */
/* =================== ACESSOS ========================= */
/* ===================================================== */
.access-map{ text-align:center; }

.access-card{
  margin-top:14px;
  background:rgba(255,255,255,.10);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:18px;
}

.access-grid{
  display:grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap:18px;
  align-items:stretch;
  text-align:left;
}

.map-backdrop{
  position:relative;
  border-radius: calc(var(--radius) - 6px);
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:100%;
}

.map-backdrop::before{
  content:"";
  position:absolute;
  inset:0;
  opacity:.22;
  background:
    radial-gradient(900px 420px at 18% 30%, rgba(215,192,138,.18) 0 2px, transparent 3px),
    radial-gradient(760px 360px at 72% 40%, rgba(255,255,255,.12) 0 2px, transparent 3px),
    radial-gradient(820px 420px at 45% 78%, rgba(255,255,255,.10) 0 2px, transparent 3px),
    linear-gradient(to right, rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size:
    auto, auto, auto,
    34px 34px, 34px 34px;
  pointer-events:none;
}

.map-backdrop::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 500px at 50% 45%, rgba(0,0,0,.08), rgba(0,0,0,.35));
  pointer-events:none;
}

.radial-map{
  position:relative;
  z-index:1;
  width:100%;
  max-width:420px;
  height:auto;
  display:block;
  margin:0;
}

.map-bg-ring{ fill:none; stroke:rgba(255,255,255,.10); stroke-width:2; }
.map-bg-ring2{ fill:none; stroke:rgba(255,255,255,.08); stroke-width:2; }

.map-lines line{
  stroke:rgba(255,255,255,.24);
  stroke-dasharray:4 8;
  stroke-width:2;
}

.map-center{
  fill:rgba(215,192,138,.10);
  stroke:rgba(215,192,138,.55);
  stroke-width:2;
}

.map-pin{ fill:rgba(215,192,138,.9); }
.map-pin-dot{ fill:#0b0c10; opacity:.9; }

.map-label-main{
  fill:var(--accent);
  font-size:18px;
  font-weight:700;
  letter-spacing:.02em;
}

.map-label-sub{
  fill:rgba(242,244,248,.8);
  font-size:12px;
}

.node-dot{
  fill:rgba(242,244,248,.98);
  stroke:rgba(215,192,138,.55);
  stroke-width:2;
}

.node-title{
  fill:rgba(242,244,248,.98);
  font-weight:700;
  font-size:14px;
}

.node-meta{
  fill:rgba(242,244,248,.78);
  font-size:12px;
}

.node--highlight .node-dot{
  fill:rgba(215,192,138,.98);
  stroke:rgba(215,192,138,.98);
}

.node--highlight .node-title{ fill:var(--accent); }

.access-copy{
  padding:6px 4px;
}

.poi-list{
  margin:12px 0 0;
  padding-left:18px;
}

.poi-list li{
  margin:10px 0;
  color:rgba(242,244,248,.95);
}

.access-badges{
  display:flex;
  gap:10px;
  justify-content:flex-start;
  flex-wrap:wrap;
  margin:14px 0 6px;
}

.badge{
  font-size:12px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(0,0,0,.14);
  color:rgba(242,244,248,.95);
}

.access-note{ margin:10px 0 0; }

/* ===================================================== */
/* =================== LIGHTBOX ======================== */
/* ===================================================== */
.lightbox{
  position:fixed;
  inset:0;
  display:none;
  place-items:center;
  background:rgba(0,0,0,.82);
  backdrop-filter: blur(6px);
  z-index:9999;
  padding:18px;
}

.lightbox.is-open{ display:grid; }

.lightbox__figure{
  margin:0;
  max-width:min(1100px, 92vw);
  max-height:82vh;
  display:flex;
  flex-direction:column;
  gap:10px;
  align-items:center;
}

.lightbox__figure img{
  max-width:100%;
  max-height:74vh;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.14);
  box-shadow: 0 25px 70px rgba(0,0,0,.55);
}

.lightbox__caption{
  color:rgba(242,244,248,.8);
  font-size:13px;
}

.lightbox__btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.16);
  color:#fff;
  width:46px;
  height:46px;
  border-radius:999px;
  display:grid;
  place-items:center;
  cursor:pointer;
  user-select:none;
}

.lightbox__btn:hover{
  background:rgba(255,255,255,.12);
}

.lightbox__close{
  top:20px;
  right:20px;
  transform:none;
  width:44px;
  height:44px;
}

.lightbox__prev{ left:18px; }
.lightbox__next{ right:18px; }

/* ===================================================== */
/* =================== PÁGINAS DE FRAÇÕES ============== */
/* ===================================================== */
.fraction{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  align-items:start;
}

.fraction__media{
  border-radius:16px;
  overflow:hidden;
  border:1px solid var(--line);
  background:rgba(0,0,0,.12);
}

.fraction__media img{
  width:100%;
  height:100%;
  max-height:520px;
  object-fit:contain;
  display:block;
  padding:10px;
}

.fraction__meta{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  margin:14px 0 8px;
}

.fraction__meta div{
  padding:10px 12px;
  border:1px solid var(--line);
  border-radius:14px;
  background:rgba(255,255,255,.04);
}

/* ===================================================== */
/* =================== RESPONSIVO ======================= */
/* ===================================================== */
@media (max-width: 860px){
  .grid--2{grid-template-columns:1fr}

  .nav{display:none}

  .nav__toggle{
    display:inline-flex;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.12);
    color:var(--text);
    border-radius:12px;
    padding:10px 12px;
  }

  .gallery{grid-template-columns:1fr 1fr}
  .gallery img{height:200px}

  .access-grid{grid-template-columns:1fr}
  .radial-map{max-width:900px; margin:18px auto 10px}

  .fraction{grid-template-columns:1fr}
  .fraction__media img{max-height:440px}
  .fraction__meta{grid-template-columns:1fr}
}

@media (max-width: 640px){
  .hero__content{ padding: 92px 0 54px; }
  .lightbox__prev{ left:10px; }
  .lightbox__next{ right:10px; }
  .lightbox__btn{ width:42px; height:42px; }
}

@media (max-width: 520px){
  .gallery{grid-template-columns:1fr}
}

/* ================= FOOTER (BARRA ESTILO ANTIGO) ================= */

.footer{
  margin:40px 16px 16px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);

  background:linear-gradient(
    90deg,
    rgba(20,30,45,.9),
    rgba(15,25,40,.9)
  );

  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}

.footer__inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
  padding:18px 24px;
}