/* ===================== DESIGN SYSTEM (LUXO MINIMAL) ===================== */
:root {
  /* Paleta (logo + luxury) */
  --ink: #233241;          /* Azul-petróleo — títulos */
  --ink-600: #304256;
  --muted: #6E7A86;        /* Cinza secundário */
  --bg: #F2F3F5;           /* Cinza-claro de fundo */
  --card: #FFFFFF;
  --line: #E6E9ED;

  /* Dourado luxury */
  --gold: #C6A15B;
  --gold-600: #B8914F;
  --gold-300: #DAC59A;

  /* Tipografia */
  --ff-serif: 'Cormorant Garamond', ui-serif, Georgia, serif;
  --ff-sans: 'Inter', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, 'Noto Sans';

  /* Layout */
  --container: 1180px;
  --radius: 14px;
  --shadow: 0 10px 40px rgba(0, 0, 0, .06);
}

/* ===================== RESET & BASE ===================== */
* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--ff-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: 0.3s ease; }
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ====================== HEADER ====================== */
.lux-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 20;
  background: rgba(242, 243, 245, .6);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.lux-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
/* ===== LOGO (HEADER LUXURY) ===== */
.brand img {
  height: 68px;             /* aumenta a presença visual */
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

@media (max-width: 768px) {
  .brand img {
    height: 54px;           /* proporcional em mobile */
  }
}


.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav__link {
  font-size: .95rem;
  color: var(--ink-600);
  opacity: .9;
}
.nav__link:hover { opacity: 1; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  cursor: pointer;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 500;
  transition: .25s ease;
  white-space: nowrap;
  border: 0;
}
.btn--gold {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .22);
}
.btn--gold:hover { background: var(--gold-600); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--ink); }
.btn--line {
  background: transparent;
  border: 1px solid rgba(255,255,255,.65);
  color: #fff;
}
.btn--line:hover {
  background: rgba(255,255,255,.06);
  border-color: #fff;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}

/* ======================= HERO ======================= */
.hero {
  position: relative;
  padding-top: 76px; /* compensa header fixo */
  overflow: hidden;
}
.lux-hero {
  min-height: 100vh;
  display: grid;
  align-items: flex-end;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  filter: brightness(1.05) contrast(1.1);
  transition: transform 1.2s ease;
}
.hero__media img:hover { transform: scale(1.05); }

/* Overlay escuro cinematográfico */
.hero__veil-dark {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at center,
      rgba(0, 0, 0, 0) 35%,
      rgba(0, 0, 0, .22) 68%,
      rgba(0, 0, 0, .35) 100%
    ),
    linear-gradient(to bottom,
      rgba(0, 0, 0, .30) 0%,
      rgba(0, 0, 0, .44) 45%,
      rgba(0, 0, 0, .58) 100%
    );
}

/* Conteúdo do hero */
.hero--lower {
  text-align: center;
  color: #fff;
  padding-bottom: 12vh;
  position: relative;
  z-index: 1;
}
.headline {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: clamp(2.2rem, 2.4vw + 1rem, 3.6rem);
  line-height: 1.12;
  margin: 0 auto 14px;
  max-width: 22ch;
  text-shadow:
    0 12px 28px rgba(0, 0, 0, .42),
    0 2px 6px rgba(0, 0, 0, .35);
}
.gold-rule {
  width: 100px;
  height: 2px;
  margin: 14px auto 18px;
  background: linear-gradient(90deg, var(--gold-300), var(--gold), var(--gold-300));
  border-radius: 2px;
}
.sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, .92);
  margin-bottom: 26px;
  text-shadow:
    0 8px 20px rgba(0, 0, 0, .35),
    0 1px 2px rgba(0, 0, 0, .28);
  max-width: 60ch;
  margin-inline: auto;
}
.cta {
  display: flex;
  gap: 14px;
  justify-content: center;
}

/* SEO oculto */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  border: 0;
}

/* ===================== RESPONSIVO ===================== */
@media (max-width: 920px) {
  .nav { display: none; }
  .nav-toggle { display: block; }
}
@media (max-width: 600px) {
  .headline { font-size: clamp(1.9rem, 5.2vw + 1rem, 2.6rem); }
  .sub { font-size: 1rem; }
  .hero--lower { padding-bottom: 10vh; }
}

/* ===================== TRANSIÇÕES / SCROLL ===================== */
a, button { transition: all .25s ease; }
html { scroll-behavior: smooth; }

/* ===== SEÇÃO 2: DESCRIÇÃO ===== */
.desc-section {
  background: var(--bg);
  padding: 100px 0;
  border-top: 1px solid var(--line);
}

.desc-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.desc-head {
  text-align: center;
  max-width: 820px;
  margin-inline: auto;
}

.desc-title {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: clamp(1.8rem, 2.6vw, 2.8rem);
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 10px;
}

.desc-head .gold-rule {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-300), var(--gold), var(--gold-300));
  margin: 0 auto 20px;
  border-radius: 2px;
}

.desc-intro {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.desc-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

.desc-text p {
  color: var(--ink-600);
  font-size: 1rem;
  margin-bottom: 16px;
  text-align: justify;
}

.desc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 30px;
}

.desc-list li {
  position: relative;
  color: var(--ink-600);
  font-size: 0.97rem;
  margin: 6px 0 6px 18px;
}

.desc-list li::before {
  content: '';
  position: absolute;
  left: -16px;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

@media (max-width: 960px) {
  .desc-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .desc-list { columns: 1; }
}

/* ===== SEÇÃO 3: VÍDEO ===== */
.video-section{
  background: var(--card);
  padding: 96px 0;
  border-top: 1px solid var(--line);
}
.video-head{
  text-align: center;
  max-width: 820px;
  margin: 0 auto 28px;
}
.video-title{
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: clamp(1.8rem, 2.6vw, 2.8rem);
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 10px;
}
.video-sub{
  color: var(--muted);
  font-size: 1.05rem;
  margin-top: 10px;
}

.video-frame{
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  background: #000; /* moldura fina e contraste */
  max-width: 1080px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
}
.video-frame iframe{
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.video-fallback{
  text-align: center;
  margin-top: 12px;
  color: var(--muted);
}
.video-fallback a{
  color: var(--ink);
  text-decoration: underline;
}

/* ===== GALERIA FULLSCREEN LUXURY ===== */
.gallery-fullscreen{
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #000; /* garante transição bonita ao carregar */
}

/* container de slides */
.gallery__slides{
  position: relative;
  height: 100%;
  width: 100%;
}

/* cada slide ocupa a tela toda */
.gallery__slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 700ms ease, transform 1200ms ease;
  will-change: opacity, transform;
  background: #0b0b0b;
}
.gallery__slide.is-active{
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

/* imagem */
.gallery__slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* vinheta sutil para dar profundidade ao UI */
.gallery__slide::after{
  content:"";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 75% at 50% 80%, rgba(0,0,0,.0) 35%, rgba(0,0,0,.25) 100%);
  pointer-events: none;
}

/* controles */
.gallery__ctrl{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 56px;
  width: 56px;
  border-radius: 999px;
  border: 1px solid var(--gold, #D2B36A);
  background: rgba(14, 14, 14, .35);
  backdrop-filter: blur(6px);
  color: var(--gold, #D2B36A);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
  z-index: 5;
}
.gallery__ctrl:hover{
  transform: translateY(-50%) scale(1.06);
  background: rgba(14, 14, 14, .55);
}
.gallery__ctrl--prev{ left: max(16px, env(safe-area-inset-left, 16px)); }
.gallery__ctrl--next{ right: max(16px, env(safe-area-inset-right, 16px)); }

.gallery__chev{
  font-size: 28px;
  line-height: 1;
  translate: 0 -1px;
}

/* dots */
.gallery__dots{
  position: absolute;
  left: 50%;
  bottom: clamp(16px, 3vh, 32px);
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}
.gallery__dot{
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  border: 1px solid rgba(255,255,255,.25);
  transition: background .25s ease, transform .25s ease;
  cursor: pointer;
}
.gallery__dot.is-active{
  background: var(--gold, #D2B36A);
  border-color: var(--gold, #D2B36A);
  transform: scale(1.25);
}

/* CTA ver todas */
.gallery__cta{
  position: absolute;
  right: max(18px, env(safe-area-inset-right, 18px));
  bottom: max(18px, env(safe-area-inset-bottom, 18px));
  z-index: 6;
  box-shadow: 0 8px 28px rgba(0,0,0,.24);
}

/* mobile: controles menores */
@media (max-width: 768px){
  .gallery__ctrl{
    height: 44px; width: 44px;
  }
  .gallery__chev{ font-size: 22px; }
}

/* Carrossel ocupa toda a largura, botões fora da imagem */
.gallery { padding: 0 var(--container-pad, 24px); }
.gallery__viewport { position: relative; width: 100%; height: min(78vh, 860px); overflow: hidden; border-radius: 18px; }
.gallery__slides { position: absolute; inset: 0; display: grid; grid-auto-flow: column; grid-auto-columns: 100%; transition: transform .6s ease; }
.gallery__slide { position: relative; width: 100%; height: 100%; }
.gallery__slide img { width: 100%; height: 100%; object-fit: cover; display: block; cursor: zoom-in; }

.gallery__nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 46px; height: 46px; border-radius: 50%; border: none; 
  background: rgba(28, 28, 28, .55); color: #fff; font-size: 26px; 
  display: grid; place-items: center; cursor: pointer; backdrop-filter: blur(3px);
}
.gallery__nav--prev { left: 14px; }
.gallery__nav--next { right: 14px; }
.gallery__nav:hover { background: rgba(28,28,28,.75); }

.gallery__dots { position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%); display: flex; gap: 8px; z-index: 2; }
.gallery__dot { width: 8px; height: 8px; border-radius: 999px; background: rgba(255,255,255,.5); border: 1px solid rgba(0,0,0,.15); }
.gallery__dot.is-active { background: var(--gold, #C9A14A); }

.gallery__actions { display: flex; justify-content: center; margin-top: 14px; }
.btn.btn-gold { background: var(--gold, #C9A14A); color: #111; border: none; padding: 12px 22px; border-radius: 999px; font-weight: 600; }
.btn.btn-gold:hover { filter: brightness(0.95); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(10,10,10,.9); display: none;
  align-items: center; justify-content: center; z-index: 9999; }
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,.6); }

.lightbox__close { position: absolute; top: 18px; right: 24px; font-size: 34px; 
  color: #fff; background: transparent; border: 0; cursor: pointer; }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; 
  border-radius: 50%; border: none; background: rgba(255,255,255,.12); color: #fff; font-size: 30px; cursor: pointer; }
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }
.lightbox__nav:hover { background: rgba(255,255,255,.22); }
.lightbox__counter { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); color: #fff; font-weight: 600; }

/* Foto ocupa o ecrã */
.gallery {
  background: var(--bg, #f4f4f6);
}
.gallery__viewport {
  position: relative;
  width: 100%;
  height: 100vh;               /* ocupa toda a tela */
  overflow: hidden;
}
.gallery__track {
  display: flex;
  height: 100%;
  transition: transform .6s ease;
}
.gallery__slide {
  min-width: 100%;
  height: 100%;
}
.gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Dots */
.gallery__dots {
  position: absolute;
  left: 0; right: 0; bottom: 18px;
  display: flex;
  gap: 10px;
  justify-content: center;
  pointer-events: none;
}
.gallery__dots .dot {
  pointer-events: auto;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(0,0,0,.15);
}
.gallery__dots .dot.is-active {
  background: var(--gold, #C9A14A);
}

/* Setas */
.gallery__viewport .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  border: none; cursor: pointer;
  background: rgba(255,255,255,.85);
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  font-size: 26px; line-height: 0;
}
.gallery__viewport .nav.prev { left: 18px; }
.gallery__viewport .nav.next { right: 18px; }

/* Respiro do botão “Ver todas as fotos” */
.gallery__actions {
  display: flex;
  justify-content: center;
  padding: 100px 0 110px;        /* respiro generoso */
  background: var(--bg, #f4f4f6);
  border-top: 1px solid rgba(0,0,0,.06);
}
.btn.btn-gold {
  background: var(--gold, #C9A14A);
  color: #111;
  border: none;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: .02em;
  box-shadow: 0 12px 36px rgba(0,0,0,.18);
  transition: transform .25s ease, filter .25s ease;
}
.btn.btn-gold:hover {
  transform: translateY(-2px);
  filter: brightness(.95);
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.9);
  display: none; align-items: center; justify-content: center;
  z-index: 9999;
}
.lightbox.is-open { display: flex; }
.lightbox__img {
  max-width: 92vw; max-height: 90vh; object-fit: contain;
}
.lightbox__close {
  position: absolute; top: 20px; right: 26px;
  background: transparent; color: #fff; border: 0;
  font-size: 36px; cursor: pointer;
}
.lightbox__nav {
  position: absolute; top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.85);
  border: 0; width: 48px; height: 48px; border-radius: 50%;
  font-size: 28px; cursor: pointer;
}
.lightbox__nav.prev { left: 24px; }
.lightbox__nav.next { right: 24px; }

/* Viewport ocupa o ecrã inteiro */
.gallery__viewport {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Track e slides */
.gallery__track { display: flex; height: 100%; transition: transform .6s ease; }
.gallery__slide { min-width: 100%; height: 100%; }
.gallery__slide img { width: 100%; height: 100%; object-fit: cover; display: block; cursor: zoom-in; }

/* Dots */
/* Centralizar os pontos no rodapé do slider */
.gallery__viewport { position: relative; } /* garante referência */
.gallery__dots {
  position: absolute;
  left: 50%;
  bottom: 14px;          /* ajusta à tua altura preferida */
  transform: translateX(-50%);
  display: flex;
  gap: 8px;              /* espaço entre pontos */
  align-items: center;
  justify-content: center;
  width: auto;           /* evita pegar 100% e “puxar” para a esquerda */
  margin: 0;
}


/* Setas luxury (com SVG dourado) */
.gallery__viewport .nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(198,161,91,.65);
  background: rgba(20,20,20,.35); backdrop-filter: blur(6px);
  display: grid; place-items: center; cursor: pointer; box-shadow: 0 10px 30px rgba(0,0,0,.18);
}
.gallery__viewport .nav:hover { background: rgba(20,20,20,.55); }
.gallery__viewport .nav.prev { left: 18px; }
.gallery__viewport .nav.next { right: 18px; }

/* Ações (respiro maior) */
.gallery__actions {
  display: flex; justify-content: center; gap: 12px;
  padding: 100px 0 110px;          /* “respiro” pedido */
  background: var(--bg, #f4f4f6);
  border-top: 1px solid rgba(0,0,0,.06);
}
.btn.btn-gold {
  background: var(--gold, #C9A14A); color: #111; border: 0;
  padding: 14px 28px; border-radius: 999px; font-weight: 600; letter-spacing: .02em;
  box-shadow: 0 12px 36px rgba(0,0,0,.18);
}
.btn.btn-gold:hover { transform: translateY(-2px); filter: brightness(.95); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.9); display: none;
  align-items: center; justify-content: center; z-index: 9999; }
.lightbox.is-open { display: flex; }
.lightbox__img { max-width: 92vw; max-height: 90vh; object-fit: contain; }
.lightbox__close {
  position: absolute; top: 20px; right: 26px; background: transparent; color: #fff;
  border: 0; font-size: 36px; cursor: pointer;
}
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.12); border: 0; width: 48px; height: 48px;
  border-radius: 50%; font-size: 28px; cursor: pointer; color:#fff;
}
.lightbox__nav.prev { left: 24px; }
.lightbox__nav.next { right: 24px; }
.lightbox__nav:hover { background: rgba(255,255,255,.22); }

/* --- FIX: garantir que a galeria em faixa usa slides visíveis e em fluxo --- */
.gallery__viewport .gallery__slide {
  position: relative;   /* deixa o flex funcionar */
  opacity: 1;           /* visível por padrão */
  transform: none;      /* sem zoom inicial */
}



/* ===== Localização (padrão luxury) ===== */
.loc-section{
  padding: clamp(56px, 9vw, 96px) 0;
  background: linear-gradient(180deg, #f4f5f6 0%, #f7f8f9 100%); /* cinza suave */
}

.loc-head{
  text-align:center;
  max-width: 920px;
  margin: 0 auto clamp(28px, 4vw, 44px);
}
.loc-title{
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: clamp(28px, 4.4vw, 40px);
  line-height: 1.15;
  color: var(--ink, #0f1a24);
  letter-spacing: .2px;
}
.loc-sub{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  color: #4b5563;
  font-size: clamp(15px, 1.9vw, 17px);
  margin-top: 14px;
}

/* Grid */
.loc-grid{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 5vw, 48px);
  align-items: start;
}
@media (max-width: 980px){
  .loc-grid{ grid-template-columns: 1fr; }
}

.loc-copy{ align-self: center; }

.loc-list{
  margin: 0;
  padding: 0;
  list-style: none;
  column-gap: 28px;
}
.loc-list.two-col{
  columns: 2;
}
@media (max-width: 740px){
  .loc-list.two-col{ columns: 1; }
}
.loc-list.with-dots li{
  break-inside: avoid;
  position: relative;
  padding-left: 18px;
  margin: 10px 0;
  color: #1f2937;
}
.loc-list.with-dots li::before{
  content:"";
  position:absolute; left:0; top:.72em;
  width:8px; height:8px; border-radius:50%;
  background: var(--gold, #C6A15B);
  box-shadow: 0 0 0 2px rgba(198,161,91,.18);
}

.loc-actions{
  display:flex; flex-wrap:wrap; gap:12px;
  margin-top: 18px;
}

/* Mapa */
.loc-mapWrap{ width:100%; }
.map-card{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 10px 30px rgba(15,26,36,.06),
    0 4px 12px rgba(15,26,36,.05);
  background:#fff;
}
.loc-map{
  display:block; width:100%;
  aspect-ratio: 16 / 10; /* responsivo */
  border:0;
}
.map-glow{
  position:absolute; inset:auto -20% -25% -20%;
  height:45%;
  background: radial-gradient(60% 70% at 50% 0%, rgba(198,161,91,.25), transparent 70%);
  pointer-events:none;
}
.map-note{
  margin-top: 10px;
  color:#64748b;
  font-size: 14px;
}

/* Reveal (aproveita o io já existente) */
.loc-section:not(.reveal){
  opacity:0; transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.loc-section.reveal{ opacity:1; transform:none; }

/* === Localização – versão mais clean/leve === */
.loc-section{
  padding: clamp(44px, 7vw, 72px) 0;            /* menos alto */
  background: #f6f7f8;                          /* tira o gradiente para ficar mais leve */
}

/* título menor que a secção 2 */
.loc-title{
  font-size: clamp(24px, 3.6vw, 34px);          /* (antes até 40px) */
  letter-spacing: .1px;
}

/* “regra” dourada mais discreta */
.loc-head .gold-rule{
  width: 44px;                                   /* menor */
  height: 2px;                                   /* mais fina */
  margin: 10px auto 12px;
}

/* subtítulo mais leve e com mais respiro */
.loc-sub{
  font-size: clamp(14px, 1.7vw, 16px);           /* -1px vs secção 2 */
  color: #5b6672;
  line-height: 1.55;
  max-width: 780px;
  margin-inline: auto;
}

/* lista mais “arejada” e com bullets menores/suaves */
.loc-list.two-col{ columns: 2; column-gap: 28px; }
@media (max-width: 1024px){ .loc-list.two-col{ columns: 1; } }  /* quebra mais cedo para aliviar densidade */

.loc-list.with-dots li{
  margin: 8px 0;
  padding-left: 16px;
  color: #2a3540;
}
.loc-list.with-dots li::before{
  width: 6px; height: 6px;                       /* bullet menor */
  background: #c6a15b;
  box-shadow: 0 0 0 1.5px rgba(198,161,91,.14);  /* contorno mais suave */
}

/* botões mais contidos */
.loc-actions{ gap: 10px; margin-top: 14px; }
.loc-actions .btn{ padding: 10px 16px; font-size: 14.5px; }

/* mapa mais “clean” (sombra e glow reduzidos) */
.map-card{
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(15,26,36,.05), 0 2px 8px rgba(15,26,36,.04);
}
.loc-map{ aspect-ratio: 16/10; }
.map-glow{ opacity: .18; height: 38%; }          /* menos brilho / menor área */
.map-note{ font-size: 13px; color:#6b7785; }

/* ===== Ajustes finais — Localização (luxury clean) ===== */

/* título igual às demais seções */
.loc-title{
  font-size: clamp(30px, 4.2vw, 42px);     /* alinhado ao padrão do site */
  font-weight: 700;
  color: var(--ink, #0f1a24);
  letter-spacing: 0;
  margin-bottom: 12px;
}

/* subtítulo / descrição mais clean e leve */
.loc-sub{
  font-size: clamp(13.5px, 1.5vw, 15px);   /* ligeiramente menor */
  line-height: 1.55;
  color: #5b6571;                          /* cinza padrão do site */
  font-weight: 400;
  max-width: 780px;
  margin-inline: auto;
}

/* itens da lista – remove o preto e mantém cinza */
.loc-list.with-dots li{
  color: #5b6571;
  font-size: 15px;
  font-weight: 400;
}
.loc-list.with-dots li span,
.loc-list.with-dots li strong{
  color: #5b6571;
  font-weight: 500;
}

/* bullets discretos */
.loc-list.with-dots li::before{
  width: 6px;
  height: 6px;
  background: #c6a15b;
  box-shadow: 0 0 0 1.5px rgba(198,161,91,.12);
}

/* nota do mapa harmonizada */
.map-note{
  color: #8b94a0;
  font-size: 13.5px;
}

/* ===== Botão Outline Gold (Traçar rota) ===== */
.btn-outline-gold{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-family:inherit;
  font-weight:500;
  font-size:15px;
  padding:10px 20px;
  border-radius:30px;
  border:2px solid var(--gold, #C6A15B);
  color:var(--ink, #0f1a24);
  background:transparent;
  transition:all .3s ease;
  box-shadow:0 3px 6px rgba(15,26,36,.04);
}
.btn-outline-gold:hover{
  background:var(--gold, #C6A15B);
  color:#fff;
  box-shadow:0 6px 12px rgba(198,161,91,.25);
  transform:translateY(-1px);
}

/* ===================== CONTACTO (LUXURY STYLE) ===================== */
.contact-section {
  background: #f7f8f9;
  padding: clamp(64px, 9vw, 110px) 0;
  border-top: 1px solid var(--line);
}

/* Cabeçalho */
.contact-head {
  text-align: center;
  margin-bottom: clamp(42px, 6vw, 64px);
  max-width: 760px;
  margin-inline: auto;
}
.contact-title {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: clamp(28px, 4.2vw, 42px);
  color: var(--ink);
  line-height: 1.15;
}
.contact-sub {
  color: var(--muted);
  font-size: 1.05rem;
  margin-top: 12px;
}

/* Grid de duas colunas */
.contact-cols {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(36px, 6vw, 64px);
  align-items: start;
}
@media (max-width: 960px) {
  .contact-cols { grid-template-columns: 1fr; }
}

/* Formulário */
.contact-form {
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 42px);
  box-shadow: 0 10px 40px rgba(0,0,0,.04);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 12px;
  padding: 14px 16px;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(198,161,91,.18);
  outline: none;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 700px) {
  .form-grid { grid-template-columns: 1fr; }
}
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
  margin-bottom: 12px;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 12px 0 20px;
  font-size: 0.9rem;
  color: var(--muted);
}
.consent a {
  color: var(--ink);
  text-decoration: underline;
}

.btn-lg {
  width: 100%;
  font-size: 1rem;
  padding: 14px 22px;
  border-radius: 999px;
}

/* Card do consultor */
.contact-agent {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 10px 40px rgba(0,0,0,.04);
  overflow: hidden;
}
.agent-photo img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  filter: saturate(0.98) contrast(1.05);
}
.agent-info {
  padding: 26px 26px 30px;
}
.agent-info h3 {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  color: var(--ink);
  margin: 0 0 4px;
}
.agent-info p {
  color: var(--muted);
  margin: 0 0 16px;
}
.agent-info ul {
  margin: 0 0 20px 18px;
  padding: 0;
  list-style: none;
}
.agent-info ul li {
  position: relative;
  margin: 6px 0;
  color: var(--ink-600);
  font-size: 0.95rem;
}
.agent-info ul li::before {
  content: '';
  position: absolute;
  left: -14px;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 2px rgba(198,161,91,.18);
}
.agent-info .btn {
  width: 100%;
  font-size: 0.95rem;
}

/* Ajuste fino de alinhamento do checkbox */
.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--muted);
  margin: 14px 0 22px;
}
.consent input[type="checkbox"] {
  margin-top: 4px;
  accent-color: var(--gold);
  transform: scale(1.1);
}
.consent label {
  line-height: 1.4;
}
.consent a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ====== FOTO DO CONSULTOR (ajuste de preto e centralização) ====== */
.contact-agent .agent-photo {
  aspect-ratio: 16 / 10;
  min-height: 360px;
  background: #000000;                /* preto puro, igual ao fundo da foto */
  border-radius: 16px 16px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.contact-agent .agent-photo img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center center;     /* centraliza o Albino perfeitamente */
  display: block;
  filter: brightness(1.02) contrast(1.03); /* ligeiro reforço para uniformizar tons */
}

/* Versão responsiva — dá mais espaço em mobile */
@media (max-width: 780px) {
  .contact-agent .agent-photo {
    aspect-ratio: auto;
    min-height: 420px;
  }
}


/* Em telas muito pequenas, dá mais altura para a foto respirar */
@media (max-width: 780px){
  .contact-agent .agent-photo{
    aspect-ratio: auto;
    min-height: 420px;
  }
}

/* ====== CONSENTIMENTO: alinhamento perfeito checkbox + texto ====== */
.consent{
  display: grid;
  grid-template-columns: 1.25rem 1fr;  /* coluna do ícone + texto */
  align-items: center;                  /* alinha verticalmente */
  column-gap: 12px;
  font-size: 0.95rem;
  color: var(--muted);
  margin: 14px 0 22px;
}

.consent input[type="checkbox"]{
  margin: 0;                            /* remove salto para baixo */
  accent-color: var(--gold);
  transform: scale(1.06);
}

.consent label{
  margin: 0;
  line-height: 1.4;
}

.consent a{
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===================== FOOTER (luxury clean) ===================== */
/* ===================== FOOTER LUXURY REFINED ===================== */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  color: var(--ink-600);
  padding: 60px 0 32px;
  font-size: 0.9rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: clamp(20px, 3vw, 50px);
  align-items: start;
}

@media (max-width: 980px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .footer__grid { grid-template-columns: 1fr; text-align: center; }
  .footer__social { justify-content: center; }
}

.footer__brand img {
  max-width: 160px;
  margin-bottom: 10px;
}
.footer__tagline {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 14px;
}

/* Social icons */
.footer__social {
  display: flex;
  gap: 16px;
}
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.04);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.footer__social a:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

.footer h4 {
  font-family: var(--ff-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 12px;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.footer a {
  color: var(--ink-600);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer a:hover {
  color: var(--gold);
}

.footer__bottom {
  border-top: 1px solid var(--line);
  margin-top: 40px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--muted);
}
.footer__mini {
  display: flex;
  gap: 12px;
}
.footer__mini a {
  color: var(--ink-600);
}
.footer__mini a:hover {
  color: var(--gold);
}

/* ===================== WHATSAPP FLOAT ===================== */
.wa-float{
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--gold, #C6A15B);
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.wa-float:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0,0,0,.22);
  background: #b8924f; /* gold hover mais profundo */
}

/* Ajuste para não colidir com o cookie no mobile */
@media (max-width: 640px){
  .wa-float{ bottom: 88px; right: 16px; }
}

/* ===================== COOKIES BANNER ===================== */
.cookies{
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 9998;
  display: none; /* aparece via JS */
}
.cookies__content{
  max-width: 980px;
  margin: 0 auto;
  background: var(--panel, #fff);
  color: var(--ink, #0F1B2D);
  border: 1px solid var(--line, rgba(15,27,45,.08));
  box-shadow: 0 12px 40px rgba(0,0,0,.10);
  border-radius: 16px;
  padding: 18px 20px;
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr auto;
  align-items: center;
}
@media (max-width: 720px){
  .cookies__content{ grid-template-columns: 1fr; }
}
.cookies__text{
  font-size: .95rem;
  color: var(--ink-600, #3C4A5A);
  margin: 0;
}
.cookies__text a{
  color: var(--ink, #0F1B2D);
  text-decoration: underline;
}
.cookies__actions{
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
@media (max-width: 720px){
  .cookies__actions{ justify-content: stretch; }
  .cookies__actions .btn{ flex: 1; }
}

/* Botões já seguem o padrão do site (gold e ghost) */
.btn{
  appearance: none;
  border: 0;
  cursor: pointer;
  border-radius: 14px;
  padding: 10px 16px;
  font-weight: 600;
  transition: filter .2s ease, transform .02s ease;
}
.btn:active{ transform: translateY(1px); }
.btn--gold{
  background: var(--gold, #C6A15B);
  color: #fff;
}
.btn--gold:hover{ filter: brightness(0.95); }
.btn--ghost{
  background: transparent;
  color: var(--ink, #0F1B2D);
  border: 1px solid var(--line, rgba(15,27,45,.12));
}
.btn--ghost:hover{ filter: brightness(0.98); }

/* Menu mobile vertical */
@media (max-width: 920px){
  .nav {
    display: none;                 /* fechado por padrão */
  }
  .nav.is-open {
    position: fixed;
    top: 76px; left: 0; right: 0;
    display: flex;
    flex-direction: column;        /* vertical */
    gap: 18px;
    background: rgba(242,243,245,.98);
    backdrop-filter: saturate(160%) blur(8px);
    border-bottom: 1px solid var(--line);
    padding: 18px 20px 22px;
    z-index: 19;
  }
  .nav.is-open .btn--ghost { align-self: stretch; text-align: center; }
}

/* Foto do consultor — ajuste fino no mobile */
@media (max-width: 780px){
  .contact-agent .agent-photo{
    min-height: 360px;              /* um pouco menos alta para equilibrar */
  }
  .contact-agent .agent-photo img{
    width: 100%;                    /* ocupa a largura */
    height: auto;                   /* preserva proporção */
    object-fit: contain;
    object-position: center center; /* centralizado */
  }
}
.footer__brand img{
  max-width: 160px;
  display: block;
  margin: 0 auto 10px;   /* centra sempre */
}
@media (max-width: 640px){
  .footer__grid { text-align: center; }
  .footer__social { justify-content: center; }
}

/* ==================== AJUSTE DA LOGO ==================== */

/* --- Cabeçalho --- */
.lux-header .brand img {
  height: 80px;              /* antes devia estar entre 42–48px */
  width: auto;
  transition: height 0.3s ease;
}

@media (max-width: 920px) {
  .lux-header .brand img {
    height: 56px;            /* um pouco menor para caber no mobile */
  }
}

/* --- Rodapé --- */
.footer__brand img {
  max-width: 200px;          /* aumentei de ~160px para 200px */
  display: block;
  margin: 0 auto 10px;
  transition: transform 0.3s ease;
}

.footer__brand img:hover {
  transform: scale(1.03);    /* leve destaque ao passar o rato */
}

/* ======== BOTÃO "VER FOTOS" – RESTAURAÇÃO DO ESTILO DOURADO ======== */
.btn--line {
  display: inline-block;
  padding: 14px 32px;
  border: 2px solid #C6A15B;       /* contorno dourado */
  border-radius: 8px;
  color: #fff;                     /* texto branco */
  background: transparent;
  font-weight: 500;
  text-decoration: none;
  font-family: 'Poppins', 'Helvetica Neue', sans-serif;
  letter-spacing: 0.4px;
  transition: all 0.3s ease;
}

.btn--line:hover {
  background-color: #C6A15B;       /* fundo dourado ao passar o rato */
  color: #0A0F17;                  /* texto escuro sobre dourado */
}

/* ==================== LAZY YOUTUBE ==================== */

.lazy-video {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  max-width: 1000px;
  margin: 0 auto;
}

.lazy-thumb {
  position: relative;
  background: #000;
}

.lazy-thumb img {
  width: 100%;
  display: block;
  filter: brightness(0.82);
  transition: filter 0.3s ease;
}

.lazy-video:hover img {
  filter: brightness(0.65);
}

.lazy-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lazy-play svg {
  transition: transform 0.25s ease;
}

.lazy-video:hover .lazy-play svg {
  transform: scale(1.12);
}

/* ==================== AJUSTE DO IFRAME DO LAZY VIDEO ==================== */

.lazy-video iframe {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16 / 9;
  display: block;
  border: none;
  border-radius: 16px;
  background: #000;
}

/* ===== AJUSTE DE GALERIA NO MOBILE ===== */
@media (max-width: 768px) {

  /* Reduz a altura da galeria para não ficar gigante */
  .gallery__viewport {
    height: 70vh; /* antes 100vh */
  }

  /* Mantém a imagem bem enquadrada */
  .gallery__slide img {
    object-fit: cover;
    object-position: center;
  }
}

/* ================= EXIT POPUP =================== */
.exit-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.60);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  padding: 20px;
}

.exit-popup.is-open {
  display: flex;
}

.exit-popup__content {
  background: #fff;
  border-radius: 14px;
  width: 95%;
  max-width: 420px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 35px rgba(0,0,0,0.25);
  animation: popupShow .25s ease;
  position: relative;
}

@keyframes popupShow {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.exit-popup__close {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 20px;
  background: none;
  border: none;
  cursor: pointer;
}

.exit-popup__form input,
.exit-popup__form textarea {
  width: 100%;
  margin-bottom: 12px;
  padding: 12px;
  border: 1px solid #CCC;
  border-radius: 8px;
  font-size: 14px;
}

.exit-popup__form textarea {
  resize: none;
  height: 80px;
}
