/* ============================================================================
   VISTA MAR GUARAPARI — Aluguel por temporada (Praia do Morro)
   Paleta da marca: azul-mar + laranja-sol + coral (guarda-sol) + areia clara.
   Tipografia: Poppins (display) + Manrope (corpo).
   Você não precisa editar este arquivo — o conteúdo vem do config.js.
   ========================================================================== */

:root {
  /* Cores — extraídas da logo VistaMar */
  --bg:          #f1f6fa;   /* azul-areia bem claro */
  --surface:     #ffffff;
  --ink:         #14304a;   /* azul-marinho (texto) */
  --ink-soft:    #5c6f80;   /* texto secundário */
  --brand:       #0e6ba8;   /* azul-mar (botões, seções) */
  --brand-deep:  #0a5286;
  --accent:      #f5921e;   /* laranja-sol — acento principal */
  --accent-deep: #db7d0d;
  --coral:       #e0432e;   /* vermelho do guarda-sol (alertas) */
  --line:        rgba(14, 107, 168, 0.14);
  --line-soft:   rgba(14, 107, 168, 0.08);

  /* Escala de cantos: botões = pílula | cards = 18px | inputs = 12px */
  --r-card: 18px;
  --r-input: 12px;

  /* Tipografia */
  --font-display: "Poppins", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, -apple-system, sans-serif;

  /* Sombra tingida no azul da marca */
  --shadow-sm: 0 1px 2px rgba(10, 50, 80, 0.06);
  --shadow-md: 0 14px 40px rgba(10, 50, 80, 0.10);
  --shadow-lg: 0 30px 70px rgba(10, 50, 80, 0.16);

  --maxw: 1240px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== RESET LEVE ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ===== UTILITÁRIOS ======================================================== */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(20px, 5vw, 56px); }
.section { padding-block: clamp(64px, 10vw, 130px); }

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent-deep);
  margin-bottom: 18px;
}
.h-display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.01em;
  font-size: clamp(2.1rem, 5.2vw, 3.7rem);
  color: var(--ink);
}
.lead { color: var(--ink-soft); font-size: 1.07rem; max-width: 56ch; }

/* ===== BOTÕES ============================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px; border-radius: 999px;
  font-weight: 600; font-size: 0.97rem; letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}
.btn i { font-size: 1.2em; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: rgba(20,48,40,0.05); transform: translateY(-2px); }
/* Variante pra usar sobre fotos / fundo escuro */
.btn-on-dark { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.35); backdrop-filter: blur(6px); }
.btn-on-dark:hover { background: rgba(255,255,255,0.22); transform: translateY(-2px); }

/* ===== NAVBAR ============================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  height: 72px; display: flex; align-items: center;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-brand {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 600;
  color: #fff; letter-spacing: 0.01em; transition: color 0.35s var(--ease);
}
.nav-links { display: flex; align-items: center; gap: 34px; list-style: none; }
.nav-links a {
  font-size: 0.92rem; font-weight: 500; color: rgba(255,255,255,0.92);
  position: relative; transition: color 0.25s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 1.5px; width: 100%;
  background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-wa {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 999px; font-size: 0.88rem; font-weight: 600;
  background: rgba(255,255,255,0.14); color: #fff; border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(6px); transition: all 0.25s var(--ease);
}
.nav-wa:hover { background: #fff; color: var(--brand); }

/* Estado "scrolled": navbar sólida clara */
.nav.scrolled { background: var(--surface); box-shadow: 0 1px 0 var(--line), var(--shadow-sm); height: 64px; }
.nav.scrolled .nav-brand { color: var(--brand); }
.nav.scrolled .nav-links a { color: var(--ink); }
.nav.scrolled .nav-wa { background: var(--accent); border-color: var(--accent); color: #fff; }
.nav.scrolled .nav-wa:hover { background: var(--accent-deep); }

.nav-burger { display: none; background: none; border: 0; color: #fff; font-size: 1.7rem; line-height: 1; }
.nav.scrolled .nav-burger { color: var(--ink); }

/* ===== HERO =============================================================== */
.hero { position: relative; min-height: 100dvh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2;
  transform-origin: 55% 45%;
  animation: kenburns 32s ease-in-out infinite alternate;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(13,50,43,0.45) 0%, rgba(13,50,43,0.12) 35%, rgba(13,50,43,0.72) 100%);
}
.hero-content { color: #fff; padding-bottom: clamp(56px, 9vw, 110px); max-width: 760px; will-change: transform, opacity; }
.hero h1 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.6rem, 7vw, 5rem); line-height: 1.02; letter-spacing: -0.015em;
  text-shadow: 0 2px 30px rgba(0,0,0,0.25);
  animation: heroUp 1.1s var(--ease) both; animation-delay: 0.25s;
}
.hero p {
  margin-top: 22px; font-size: clamp(1.05rem, 2vw, 1.3rem); color: rgba(255,255,255,0.92); max-width: 50ch;
  animation: heroUp 1.1s var(--ease) both; animation-delay: 0.45s;
}
.hero-actions {
  margin-top: 38px; display: flex; flex-wrap: wrap; gap: 14px;
  animation: heroUp 1.1s var(--ease) both; animation-delay: 0.65s;
}

/* ===== SOBRE (split) ====================================================== */
.about-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.about-text h2 { margin-bottom: 24px; }
.about-text p { color: var(--ink-soft); margin-bottom: 18px; }
.about-img { position: relative; overflow: hidden; border-radius: var(--r-card); }
.about-img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--r-card); box-shadow: var(--shadow-md); transform: scale(1.18); transition: transform 1.3s var(--ease); }
.about-img.in img { transform: scale(1); }
.about-stats { display: flex; gap: clamp(20px, 4vw, 44px); margin-top: 36px; flex-wrap: wrap; }
.stat .stat-num { font-family: var(--font-display); font-size: 2.6rem; font-weight: 600; color: var(--brand); line-height: 1; }
.stat .stat-label { font-size: 0.86rem; color: var(--ink-soft); margin-top: 6px; }
/* SOBRE sem foto: texto centralizado */
.about-solo { max-width: 780px; margin-inline: auto; text-align: center; }
.about-solo .about-stats { justify-content: center; }

/* ===== ACOMODAÇÕES ======================================================== */
.rooms-head { max-width: 620px; margin-bottom: clamp(40px, 5vw, 64px); }
.rooms-head h2 { margin-bottom: 18px; }

/* grade de cards (modo pousada) */
.rooms-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.room-card {
  background: var(--surface); border-radius: var(--r-card); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line-soft);
  display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.room-card-img { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.room-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.room-card:hover .room-card-img img { transform: scale(1.06); }
.room-price {
  position: absolute; bottom: 14px; left: 14px;
  background: rgba(255,253,248,0.94); color: var(--brand); backdrop-filter: blur(4px);
  padding: 7px 14px; border-radius: 999px; font-size: 0.82rem; font-weight: 700;
}
.room-price small { font-weight: 500; color: var(--ink-soft); }
.room-body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.room-body h3 { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; }
.room-cap { font-size: 0.84rem; color: var(--accent-deep); font-weight: 600; margin-top: 4px; }
.room-body p { color: var(--ink-soft); font-size: 0.96rem; margin-top: 12px; }
.room-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; margin-bottom: 22px; }
.room-tag { font-size: 0.76rem; color: var(--ink-soft); background: rgba(20,70,61,0.06); padding: 6px 12px; border-radius: 999px; }
.room-body .btn { margin-top: auto; align-self: flex-start; }

/* modo casa (1 unidade) = destaque grande */
.house-feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.house-feature .house-img { overflow: hidden; border-radius: var(--r-card); }
.house-feature .house-img img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: var(--r-card); box-shadow: var(--shadow-md); transform: scale(1.18); transition: transform 1.3s var(--ease); }
.house-feature.in .house-img img { transform: scale(1); }
.house-feature h3 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; line-height: 1.05; }
.house-feature .room-cap { font-size: 1rem; margin-top: 10px; }
.house-feature p { color: var(--ink-soft); margin-top: 18px; font-size: 1.05rem; }

/* ===== COMODIDADES ======================================================== */
.amen { background: var(--brand); color: #fff; }
.amen .amen-head { text-align: center; max-width: 600px; margin: 0 auto clamp(40px, 5vw, 60px); }
.amen .amen-head h2 { color: #fff; }
.amen-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; }
.amen-item {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px;
  padding: 34px 18px; border-radius: var(--r-card);
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.amen-item:hover { background: rgba(255,255,255,0.09); transform: translateY(-4px); }
.amen-item i { font-size: 2rem; color: var(--accent); }
.amen-item span { font-size: 0.95rem; font-weight: 500; color: rgba(255,255,255,0.92); }

/* ===== EXPERIÊNCIAS (scroll horizontal) =================================== */
.exp-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 40px; flex-wrap: wrap; }
.exp-head .exp-intro { max-width: 460px; }

/* ===== GALERIA (masonry) ================================================== */
.gallery-head { text-align: center; margin-bottom: clamp(36px, 5vw, 56px); }
.gallery { columns: 3; column-gap: 16px; }
.gallery img {
  width: 100%; margin-bottom: 16px; border-radius: var(--r-card);
  break-inside: avoid; box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); cursor: zoom-in;
}
.gallery img:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }

/* ===== DEPOIMENTOS ======================================================== */
.quotes { background: var(--surface); }
.quotes-head { text-align: center; margin-bottom: clamp(40px, 5vw, 60px); }
.quotes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.quote {
  background: var(--bg); border-radius: var(--r-card); padding: 34px 30px;
  border: 1px solid var(--line-soft); display: flex; flex-direction: column; gap: 18px;
}
.quote-stars { color: var(--accent); font-size: 1rem; letter-spacing: 2px; }
.quote p { font-family: var(--font-display); font-size: 1.32rem; line-height: 1.4; color: var(--ink); font-style: italic; }
.quote-by { margin-top: auto; }
.quote-by strong { display: block; font-size: 0.95rem; font-weight: 700; }
.quote-by span { font-size: 0.83rem; color: var(--ink-soft); }

/* ===== LOCALIZAÇÃO ======================================================== */
.loc-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 0; border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line-soft); }
.loc-info { background: var(--brand); color: #fff; padding: clamp(40px, 5vw, 60px); display: flex; flex-direction: column; justify-content: center; }
.loc-info h2 { color: #fff; margin-bottom: 12px; }
.loc-info .loc-addr { color: rgba(255,255,255,0.8); margin-bottom: 30px; }
.loc-list { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-bottom: 34px; }
.loc-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.97rem; color: rgba(255,255,255,0.92); }
.loc-list i { color: var(--accent); font-size: 1.25rem; flex-shrink: 0; margin-top: 1px; }
.loc-info .btn { align-self: flex-start; }
.loc-map { min-height: 380px; }
.loc-map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ===== BARRA DE RESERVA (card claro flutuante logo abaixo do hero) ======== */
.book-bar-wrap { background: var(--bg); position: relative; z-index: 5; padding-bottom: clamp(12px, 3vw, 32px); }
.book-bar {
  display: grid; gap: 16px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-card); box-shadow: var(--shadow-lg);
  padding: clamp(18px, 3vw, 28px);
  margin-top: clamp(-72px, -6vw, -48px);   /* sobe sobre a borda inferior do hero */
  position: relative; z-index: 5;
}
.book-bar-fields { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
.bb-field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.bb-field label {
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-soft); padding-left: 4px;
}
.bb-field input, .bb-field select {
  background: var(--surface); color: var(--ink); border: 1px solid var(--line);
  border-radius: var(--r-input); padding: 13px 14px; font-family: var(--font-body); font-size: 0.95rem; width: 100%;
}
.bb-field input:focus, .bb-field select:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: var(--brand); }
.bb-submit { width: 100%; }

/* ===== RESERVA (CTA final) ================================================ */
.book { position: relative; background: var(--brand-deep); color: #fff; overflow: hidden; }
.book::before {
  content: ""; position: absolute; inset: 0; opacity: 0.16; z-index: 0;
  background: radial-gradient(circle at 80% 20%, var(--accent), transparent 45%),
              radial-gradient(circle at 10% 90%, #2e8a78, transparent 40%);
}
.book .wrap { position: relative; z-index: 1; text-align: center; max-width: 720px; }
.book h2 { color: #fff; margin-bottom: 16px; }
.book p { color: rgba(255,255,255,0.85); margin: 0 auto 38px; max-width: 52ch; }
.book-form {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16);
  padding: 14px; border-radius: 18px; backdrop-filter: blur(8px); text-align: left;
}
.field-wide { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field label { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.7); padding-left: 4px; }
.field input, .field select {
  background: rgba(255,255,255,0.95); color: var(--ink); border: 0; border-radius: var(--r-input);
  padding: 13px 14px; font-family: var(--font-body); font-size: 0.95rem; width: 100%;
}
.field input:focus, .field select:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
.book-form .btn { grid-column: 1 / -1; height: 48px; justify-content: center; }
.book-note { margin-top: 18px; font-size: 0.82rem; color: rgba(255,255,255,0.6); }

/* ===== RODAPÉ ============================================================= */
.foot { background: var(--brand); color: rgba(255,255,255,0.82); padding-block: clamp(48px, 6vw, 72px) 32px; }
.foot-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.foot-brand { font-family: var(--font-display); font-size: 1.9rem; font-weight: 600; color: #fff; margin-bottom: 14px; }
.foot-brand + p { max-width: 34ch; font-size: 0.95rem; }
.foot h4 { color: #fff; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 18px; font-weight: 700; }
.foot ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.foot a, .foot li { font-size: 0.93rem; transition: color 0.2s var(--ease); }
.foot a:hover { color: #fff; }
.foot-contact i { color: var(--accent); margin-right: 9px; }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; gap: 16px; flex-wrap: wrap; font-size: 0.82rem; color: rgba(255,255,255,0.55); }
.foot-social { display: flex; gap: 12px; }
.foot-social a { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,0.1); color: #fff; font-size: 1.2rem; transition: background 0.25s var(--ease); }
.foot-social a:hover { background: var(--accent); }

/* botão flutuante WhatsApp */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%; background: var(--accent); color: #fff;
  display: grid; place-items: center; font-size: 1.7rem; box-shadow: var(--shadow-lg);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.wa-float:hover { transform: scale(1.08); background: var(--accent-deep); }

/* ===== ANIMAÇÕES (keyframes) ============================================= */
@keyframes kenburns { from { transform: scale(1.02); } to { transform: scale(1.12); } }
@keyframes heroUp { from { opacity: 0; transform: translateY(34px); } to { opacity: 1; transform: none; } }
@keyframes revealUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
@keyframes waPulse {
  0%   { box-shadow: 0 0 0 0 rgba(217,121,78,0.5); }
  70%  { box-shadow: 0 0 0 16px rgba(217,121,78,0); }
  100% { box-shadow: 0 0 0 0 rgba(217,121,78,0); }
}

/* ===== REVELAÇÃO NO SCROLL ================================================ */
.reveal { opacity: 0; }
.reveal.in { animation: revealUp 0.85s var(--ease) both; animation-delay: var(--reveal-delay, 0ms); }

/* pulso sutil no botão flutuante (chama atenção pro WhatsApp) */
.wa-float::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%; pointer-events: none;
  animation: waPulse 2.6s var(--ease) infinite;
}

/* ===== RESPONSIVO ========================================================= */
@media (max-width: 980px) {
  .about-grid, .house-feature { grid-template-columns: 1fr; }
  .about-img { order: -1; }
  .house-feature .house-img { order: -1; }
  .loc-grid { grid-template-columns: 1fr; }
  .loc-map { min-height: 320px; }
  .gallery { columns: 2; }
  .foot-top { grid-template-columns: 1fr 1fr; }
  .book-form { grid-template-columns: 1fr 1fr; }
  .book-form .btn { grid-column: 1 / -1; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .nav-links, .nav .nav-wa { display: none; }
  .nav-burger { display: block; }
  .nav.mobile-open { background: var(--surface); box-shadow: var(--shadow-md); }
  .nav.mobile-open .nav-brand { color: var(--brand); }
  .nav.mobile-open .nav-burger { color: var(--ink); }
  .nav.mobile-open .nav-links {
    display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0;
    background: var(--surface); padding: 18px clamp(20px,5vw,56px) 26px; gap: 18px; box-shadow: var(--shadow-md);
  }
  .nav.mobile-open .nav-links a { color: var(--ink); }
  .gallery { columns: 1; }
  .foot-top { grid-template-columns: 1fr; gap: 28px; }
  .book-form { grid-template-columns: 1fr; }
  .book-bar-fields { grid-template-columns: 1fr; }
  .book-bar { margin-top: clamp(-32px, -5vw, -16px); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
}

/* ===== ACESSIBILIDADE: MOVIMENTO REDUZIDO ================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-img { transform: scale(1.04); }              /* foto estática, levemente enquadrada */
  .about-img img, .house-feature .house-img img { transform: none; }
}

/* ============================================================================
   JOÃO DE BARRO — ADIÇÕES: logo, vídeo de fundo, selo de play e modal de vídeo
   ========================================================================== */

/* ----- LOGO na navbar ----------------------------------------------------- */
.nav-brand { display: inline-flex; align-items: center; gap: 11px; }
.nav-logo {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover;
  background: #fff; box-shadow: var(--shadow-sm); flex: none;
}
.nav-brand-text {
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 600;
  color: #fff; letter-spacing: 0.01em; transition: color 0.35s var(--ease);
}
.nav.scrolled .nav-brand-text { color: var(--brand); }
@media (max-width: 600px) { .nav-brand-text { display: none; } }

/* ----- HERO: vídeo de fundo (mudo, em loop) sobre a foto ------------------ */
.hero-media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero-media .hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1;
  opacity: 0; transition: opacity 1.1s var(--ease);
}
.hero-video.is-playing { opacity: 1; }
.hero-scrim { display: none; }
@media (prefers-reduced-motion: reduce) { .hero-video { display: none; } }

/* SLIDESHOW do hero: fotos empilhadas com crossfade */
.hero-slide {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
  opacity: 0; transition: opacity 1.6s var(--ease);
}
.hero-slide.active { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .hero-slide { transition: none; } }

/* ----- SELO DE PLAY nos cards de quarto ----------------------------------- */
.room-card-img {
  display: block; width: 100%; padding: 0; border: 0; background: none;
  position: relative; overflow: hidden; aspect-ratio: 4/3; cursor: pointer;
}
.room-card-img img { transition: transform 0.7s var(--ease), filter 0.3s var(--ease); }
.room-card:hover .room-card-img img { transform: scale(1.06); filter: brightness(0.84); }
.room-play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  display: inline-flex; align-items: center; justify-content: center;
  width: 66px; height: 66px; border-radius: 50%; color: #fff;
  background: rgba(255, 255, 255, 0.16); backdrop-filter: blur(4px);
  border: 1.6px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.28);
  transition: transform 0.35s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.room-play i { font-size: 1.7rem; line-height: 1; margin-left: 3px; }
.room-play--foto i { margin-left: 0; }
.room-play em { display: none; }
.room-card:hover .room-play {
  transform: translate(-50%, -50%) scale(1.09);
  background: var(--accent); border-color: var(--accent);
}
.room-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.room-actions .btn { flex: 1 1 auto; justify-content: center; }

/* ----- MODAL DE MÍDIA DO QUARTO (vídeo / foto em tela cheia) --------------- */
.room-modal {
  position: fixed; inset: 0; z-index: 1000; display: none;
  align-items: center; justify-content: center; padding: clamp(12px, 3vw, 44px);
}
.room-modal.open { display: flex; }
.room-modal-backdrop { position: absolute; inset: 0; background: rgba(15, 30, 24, 0.82); backdrop-filter: blur(6px); }
.room-modal-box {
  position: relative; z-index: 1; display: flex; flex-direction: column;
  width: 100%; max-width: 540px; max-height: 92vh; overflow: hidden;
  background: var(--surface); border-radius: var(--r-card); box-shadow: var(--shadow-lg);
  animation: rmIn 0.4s var(--ease) both;
}
.room-modal-media { background: #000; }
.room-modal-media video, .room-modal-media img {
  width: 100%; max-height: 66vh; object-fit: contain; display: block; background: #000;
}
.room-modal-info { padding: 18px 22px 22px; }
.room-modal-info h3 { font-family: var(--font-display); font-size: clamp(1.4rem, 4vw, 1.8rem); font-weight: 600; }
.rm-cap { color: var(--ink-soft); font-size: 0.95rem; margin: 4px 0 16px; }
.room-modal-info .btn { width: 100%; justify-content: center; }
.room-modal-close {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 42px; height: 42px; border-radius: 50%; border: 0;
  background: rgba(0, 0, 0, 0.5); color: #fff; font-size: 1.35rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s var(--ease);
}
.room-modal-close:hover { background: rgba(0, 0, 0, 0.78); }
@keyframes rmIn { from { opacity: 0; transform: translateY(20px) scale(0.98); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .room-modal-box { animation: none; } }

/* ============================================================================
   VISTA MAR — ajustes de marca + seções novas
   ========================================================================== */

/* Tipografia display (Poppins): títulos mais firmes que o serif */
.h-display { font-weight: 700; letter-spacing: -0.02em; }
.eyebrow { color: var(--accent-deep); }
.eyebrow.on-dark { color: #ffd9a0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(36px, 5vw, 56px); }
.section-head .lead { margin-top: 12px; }

/* LOGO na navbar (horizontal, transparente) */
.nav-brand { display: inline-flex; align-items: center; }
.nav-logo { height: 46px; width: auto; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.25)); }
.nav.scrolled .nav-logo { filter: none; }

/* HERO eyebrow */
.hero-logo {
  display: block; height: clamp(100px, 13vw, 172px); width: auto;
  margin-bottom: 18px; filter: drop-shadow(0 6px 22px rgba(0,0,0,0.45));
}
.hero-eyebrow {
  display: inline-block; color: #fff; font-weight: 600; font-size: 0.8rem;
  letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 16px;
  padding: 6px 14px; border-radius: 999px; background: rgba(255,255,255,0.16);
  backdrop-filter: blur(6px);
}

/* BARRA DE RESERVA — 5 campos */
.book-bar-fields { display: grid; grid-template-columns: repeat(auto-fit, minmax(132px, 1fr)); gap: 14px; }
.bb-field-wide { min-width: 0; }
@media (max-width: 520px) { .book-bar-fields { grid-template-columns: 1fr 1fr; } }

/* ===== HORÁRIOS ========================================================== */
.horarios { background: var(--surface); }
.hor-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 3vw, 26px); }
@media (max-width: 720px) { .hor-grid { grid-template-columns: 1fr; } }
.hor-card {
  background: linear-gradient(160deg, #eaf4fb, #fff6ec); border: 1px solid var(--line);
  border-radius: var(--r-card); padding: clamp(22px, 3vw, 32px); box-shadow: var(--shadow-sm);
}
.hor-card > i { font-size: 2.2rem; color: var(--accent); }
.hor-card h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; margin-top: 10px; }
.hor-desc { color: var(--ink-soft); margin: 6px 0 18px; }
.hor-times { display: flex; gap: 12px; }
.hor-times span { flex: 1; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; display: flex; flex-direction: column; gap: 2px; font-weight: 600; }
.hor-times strong { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-soft); font-weight: 600; }
.hor-times i { color: var(--brand); margin-bottom: 4px; }
.hor-nota { text-align: center; max-width: 760px; margin: clamp(26px,4vw,38px) auto 0; color: var(--ink-soft); background: var(--surface); border: 1px dashed var(--line); border-radius: 14px; padding: 16px 20px; }

/* ===== UNIDADES (card com a LOGO) ======================================= */
.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 28px); }
@media (max-width: 940px) { .rooms-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .rooms-grid { grid-template-columns: 1fr; } }
.unit-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.unit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.unit-media {
  position: relative; display: flex; align-items: center; justify-content: center;
  width: 100%; border: 0; cursor: pointer;
  aspect-ratio: 16/11; padding: clamp(18px, 4vw, 30px);
  background: linear-gradient(150deg, #e7f3fb 0%, #fff 55%, #fff1df 100%);
  overflow: hidden;
}
/* logos vêm "justas" (margem cortada no processamento). Altura fixa deixa
   todas no mesmo tamanho visual, com a do Studio 305 como referência. */
.unit-logo { width: auto; height: 50%; max-width: 90%; object-fit: contain; transition: transform 0.5s var(--ease); }
.unit-card:hover .unit-logo { transform: scale(1.05); }
.unit-nome { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.unit-play {
  position: absolute; right: 16px; bottom: 16px; width: 52px; height: 52px; border-radius: 50%;
  background: var(--brand); color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(14,107,168,0.4); transition: transform 0.3s var(--ease), background 0.25s;
}
.unit-play i { font-size: 1.35rem; margin-left: 2px; }
.unit-card:hover .unit-play { transform: scale(1.12); background: var(--accent); }
.unit-badge {
  position: absolute; left: 16px; top: 16px; display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,0.92); color: var(--ink); font-weight: 700; font-size: 0.85rem;
  padding: 6px 12px; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.unit-badge i { color: var(--accent); }
.unit-body { padding: clamp(18px, 2.4vw, 24px); display: flex; flex-direction: column; flex: 1; }
.unit-meta { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 6px; align-items: center; margin-bottom: 10px; }
.unit-ed { font-weight: 600; color: var(--brand); font-size: 0.9rem; display: inline-flex; align-items: center; gap: 6px; }
.unit-cap { font-size: 0.85rem; color: var(--ink-soft); font-weight: 600; }
.unit-desc { color: var(--ink-soft); font-size: 0.96rem; line-height: 1.55; }
.unit-tags { display: flex; flex-wrap: wrap; gap: 7px; margin: 14px 0; }
.unit-tag { font-size: 0.78rem; font-weight: 600; color: var(--brand-deep); background: #eaf4fb; border-radius: 999px; padding: 5px 11px; }
.unit-obs { font-size: 0.85rem; color: var(--ink-soft); display: flex; gap: 6px; align-items: flex-start; margin-bottom: 14px; }
.unit-obs i { color: var(--accent); margin-top: 2px; }
.unit-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: auto; }
.unit-actions .btn { flex: 1 1 auto; justify-content: center; }

/* MODAL DE VÍDEO DA UNIDADE */
.unit-modal { position: fixed; inset: 0; z-index: 1000; display: none; align-items: center; justify-content: center; padding: clamp(12px, 3vw, 44px); }
.unit-modal.open { display: flex; }
.unit-modal-backdrop { position: absolute; inset: 0; background: rgba(8, 28, 46, 0.84); backdrop-filter: blur(6px); }
.unit-modal-box { position: relative; z-index: 1; display: flex; flex-direction: column; width: 100%; max-width: 520px; max-height: 92vh; overflow: hidden; background: var(--surface); border-radius: var(--r-card); box-shadow: var(--shadow-lg); animation: rmIn 0.4s var(--ease) both; }
.unit-modal-media { background: #000; }
.unit-modal-media video, .unit-modal-media img { width: 100%; max-height: 64vh; object-fit: contain; display: block; background: #000; }
.unit-modal-info { padding: 18px 22px 22px; text-align: center; }
.um-logo { height: 64px; width: auto; margin: 0 auto 6px; display: block; }
.um-meta { display: flex; justify-content: center; gap: 16px; color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 16px; }
.um-ed { color: var(--brand); font-weight: 600; display: inline-flex; align-items: center; gap: 5px; }
.unit-modal-info .btn { width: 100%; justify-content: center; }
.unit-modal-close { position: absolute; top: 12px; right: 12px; z-index: 2; width: 42px; height: 42px; border-radius: 50%; border: 0; background: rgba(0,0,0,0.5); color: #fff; font-size: 1.35rem; display: flex; align-items: center; justify-content: center; transition: background 0.2s var(--ease); }
.unit-modal-close:hover { background: rgba(0,0,0,0.78); }

/* COMODIDADES nota */
.amen-nota { text-align: center; max-width: 820px; margin: clamp(28px,4vw,40px) auto 0; color: var(--ink-soft); }

/* ===== EDIFÍCIOS ======================================================== */
.edificios { background: var(--surface); }
.ed-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(18px, 2.6vw, 28px); }
@media (max-width: 760px) { .ed-grid { grid-template-columns: 1fr; } }
.ed-card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-card); padding: clamp(24px, 3vw, 34px); }
.ed-card-head { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 12px; }
.ed-card-head h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; }
.ed-tag { font-size: 0.74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: #fff; background: var(--accent); border-radius: 999px; padding: 5px 12px; }
.ed-card p { color: var(--ink-soft); }
.ed-addr { display: flex; gap: 7px; align-items: flex-start; font-weight: 600; color: var(--ink); margin: 14px 0; }
.ed-addr i { color: var(--coral); margin-top: 3px; }
.ed-amen { display: flex; flex-wrap: wrap; gap: 8px 16px; }
.ed-amen span { display: inline-flex; align-items: center; gap: 6px; font-size: 0.9rem; font-weight: 600; color: var(--brand-deep); }
.ed-amen i { color: var(--brand); }
.ed-map { margin-top: 20px; border-radius: 12px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.ed-map iframe { width: 100%; height: 230px; border: 0; display: block; }

/* Como chegar — vídeo da anfitriã abaixo do mapa */
.ed-como-chegar { margin-top: 18px; }
.ed-chegar-titulo {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.03em;
  text-transform: uppercase; color: var(--brand);
  margin-bottom: 10px;
}
.ed-chegar-titulo i { font-size: 1rem; }
.ed-chegar-titulo span { font-weight: 500; text-transform: none; color: var(--ink-soft); }
.ed-chegar-video {
  width: 100%; border-radius: 12px; display: block;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  background: #000; max-height: 340px; object-fit: cover;
}

/* ===== SEGURANÇA / ANTI-GOLPE (destaque) ================================ */
.seg { background: linear-gradient(165deg, #0b2740 0%, #0a3a5c 100%); color: #fff; }
.seg-head { text-align: center; max-width: 780px; margin: 0 auto clamp(34px,4vw,48px); }
.seg-head .h-display { color: #fff; }
.seg-alerta { margin-top: 18px; color: #d9e8f3; font-size: 1.05rem; line-height: 1.6; }
.seg-body { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(24px, 3.5vw, 48px); align-items: start; }
@media (max-width: 880px) { .seg-body { grid-template-columns: 1fr; } }
.seg-video-frame { position: relative; aspect-ratio: 16/9; border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-lg); background: #000; }
.seg-video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.seg-video-cap { margin-top: 14px; color: #aecbe0; font-size: 0.92rem; display: flex; align-items: center; gap: 8px; justify-content: center; }
.seg-video-cap::before { content: "\25B6"; color: var(--coral); }
.seg-pilares { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 480px) { .seg-pilares { grid-template-columns: 1fr; } }
.seg-pilar { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 14px; padding: 18px; display: flex; gap: 12px; }
.seg-pilar i { font-size: 1.6rem; color: var(--accent); flex: none; }
.seg-pilar h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.seg-pilar p { font-size: 0.88rem; color: #c5d8e6; line-height: 1.5; }

/* ===== COMO RESERVAR ==================================================== */
.cr-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.4vw, 26px); counter-reset: step; }
@media (max-width: 760px) { .cr-grid { grid-template-columns: 1fr; } }
.cr-step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card); padding: clamp(24px, 3vw, 32px); box-shadow: var(--shadow-sm); }
.cr-num { width: 46px; height: 46px; border-radius: 50%; background: var(--brand); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.cr-step h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.cr-step p { color: var(--ink-soft); font-size: 0.95rem; }

/* ===== EXPERIÊNCIAS (passeios) ========================================== */
.exp-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 2.4vw, 24px); margin-top: clamp(28px,4vw,40px); }
@media (max-width: 640px) { .exp-grid { grid-template-columns: 1fr; } }
.exp-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.exp-img { aspect-ratio: 1/1; overflow: hidden; }
.exp-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s var(--ease); }
.exp-card:hover .exp-img img { transform: scale(1.04); }
.exp-btn { position: relative; z-index: 1; margin: 16px; justify-content: center; }

/* ===== FAQ (accordion) ================================================== */
.faq { background: var(--surface); }
.faq-wrap { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 30px; }
.faq-tema { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--brand); margin-bottom: 10px; padding-bottom: 8px; border-bottom: 2px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; background: none; border: 0; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 16px 0; font-family: var(--font-body); font-size: 1.02rem; font-weight: 600; color: var(--ink); }
.faq-q i { flex: none; color: var(--accent); font-size: 1.1rem; transition: transform 0.3s var(--ease); }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.35s var(--ease); }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a-inner p { color: var(--ink-soft); line-height: 1.6; padding-bottom: 18px; }

/* RODAPÉ — logo + redes */
.foot-logo { height: 84px; width: auto; margin-bottom: 16px; filter: drop-shadow(0 3px 10px rgba(0,0,0,0.28)); }

@media (prefers-reduced-motion: reduce) {
  .unit-modal-box { animation: none; }
  .faq-a { transition: none; }
  .unit-card, .unit-logo { transition: none; }
}

/* LOCALIZAÇÃO — dois mapas (um embaixo do outro) */
.loc-maps { background: var(--surface); padding: clamp(18px, 2.5vw, 26px); display: flex; flex-direction: column; gap: 18px; justify-content: center; }
.loc-map-label { display: flex; align-items: center; gap: 8px; margin-bottom: 9px; font-size: 0.96rem; color: var(--ink); }
.loc-map-label i { color: var(--coral); font-size: 1.15rem; }
.loc-map-label strong { font-weight: 700; }
.loc-map-label span { color: var(--ink-soft); font-weight: 500; margin-left: 4px; }
.loc-maps .loc-map { min-height: 0; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.loc-maps .loc-map iframe { width: 100%; height: 215px; border: 0; display: block; }
