@charset "UTF-8";

/* ======================================================
   LODGE -- PREMIUM CSS DESIGN SYSTEM v3.0
   TEMA: Azul Ceu - Light Coastal Luxury
   ====================================================== */

/* -- TOKENS --------------------------------------------- */
:root {
  --primary:     #1a7b96;
  --secondary:   #005f73;
  --accent:      #e9c46a;
  --beach-light: #f8f5eb;
  --beach-dark:  #e6dfcf;
  --text-dark:   #333333;
  --text-light:  #666666;
  --navy:        #005f73;
  --navy-mid:    #1a7b96;
  --gold:        #e9c46a;
  
  /* Fallback for old variables mapped to new */
  --sky-base:    var(--beach-light);
  --sky-light:   white;
  --sky-mid:     var(--beach-dark);
  --gold-light:  #e9c46a;
  --font-serif:  'Playfair Display', serif;
  --font-display:'Montserrat', sans-serif;
  --font-sans:   'Roboto', 'Inter', system-ui, sans-serif;
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
}

/* -- RESET ---------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background-color: var(--beach-light);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: var(--primary); transition: all 0.3s ease; }
img { display: block; max-width: 100%; }
button { border: none; background: none; cursor: pointer; font-family: var(--font-sans); }

/* -- PRELOADER ------------------------------------------ */
#preloader {
  position: fixed; inset: 0;
  background-color: #E8F4FB;
  z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  opacity: 1;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.pl-mark {
  font-size: 2.5rem; color: #b87a30;
  animation: plPulse 1.5s ease-in-out infinite;
  display: block; line-height: 1;
}
.pl-name {
  font-family: var(--font-sans);
  font-size: 2.5rem; font-weight: 700;
  color: #0d1e30; letter-spacing: 0.1em; margin: 0.5rem 0;
  opacity: 0;
  animation: plFadeIn 0.8s 0.3s var(--ease-out) forwards;
}
.pl-line {
  height: 1px; background: #b87a30;
  width: 0; margin: 0 auto;
  animation: plLine 1s 0.6s var(--ease-out) forwards;
}
@keyframes plPulse { 0%,100%{opacity:.4;transform:scale(.9)} 50%{opacity:1;transform:scale(1.1)} }
@keyframes plFadeIn { to { opacity: 1; } }
@keyframes plLine   { to { width: 120px; } }

/* -- FLOATING WHATSAPP ---------------------------------- */
#wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 9000;
  background-color: #25d366; color: white;
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  text-decoration: none;
  will-change: transform;
}
#wa-float:hover { transform: scale(1.12); box-shadow: 0 8px 30px rgba(37,211,102,0.55); }
#wa-float svg { width: 26px !important; height: 26px !important; flex-shrink: 0; }
.wa-tooltip {
  position: absolute; right: 70px;
  background: #0d1e30; color: #E8F4FB;
  font-size: 0.75rem; padding: 0.4rem 0.8rem; border-radius: 4px;
  white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
#wa-float:hover .wa-tooltip { opacity: 1; }
/* Removido waPulse pois anima box-shadow a 60fps, causando jank no mobile/scroll */

/* -- NAVBAR --------------------------------------------- */
#navbar {
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 1000; padding: 1.5rem 0;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
#navbar.scrolled {
  background: rgba(232,244,251,0.97);
  padding: 1rem 0;
  box-shadow: 0 2px 24px rgba(13,30,48,0.08);
  border-bottom: 1px solid rgba(13,30,48,0.06);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 0.6rem; }
.logo-mark { color: #b87a30; font-size: 1.1rem; }
.logo-text {
  font-family: var(--font-sans); font-size: 1.5rem;
  font-weight: 700; letter-spacing: 0.05em; color: white;
}
#navbar.scrolled .logo-text { color: #0d1e30; }
.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.85);
  transition: color 0.3s; position: relative;
}
#navbar.scrolled .nav-links a { color: rgba(13,30,48,0.7); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: #b87a30;
  transition: width 0.3s var(--ease-out);
}
.nav-links a:hover { color: #b87a30; }
#navbar.scrolled .nav-links a:hover { color: #b87a30; }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background-color: #b87a30 !important; color: white !important;
  padding: 0.55rem 1.4rem !important; border-radius: 2px; font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background-color: #d4974a !important; color: white !important; }
.burger { display: none; flex-direction: column; gap: 5px; }
.burger span { display: block; width: 24px; height: 1px; background: white; transition: 0.3s; }
#navbar.scrolled .burger span { background: #0d1e30; }
.mobile-menu {
  display: none; flex-direction: column;
  padding: 1.5rem 2rem; gap: 1.2rem;
  background: rgba(232,244,251,0.98);
  border-top: 1px solid rgba(13,30,48,0.06);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.1rem; font-family: var(--font-sans); color: #0d1e30; }

/* -- HERO (full photo -- keep dark overlay + white text) -- */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  overflow: hidden; display: flex; align-items: flex-end;
  background-color: #1a3349;
}
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; will-change: opacity;
  transition: opacity 1.4s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to top, rgba(0,95,115,0.7) 0%, rgba(0,95,115,0.2) 60%, rgba(0,95,115,0) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 2rem 6rem;
  max-width: 1280px; margin: 0 auto; width: 100%;
}
.hero-eyebrow {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 1.2rem;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.8s 0.5s var(--ease-out), transform 0.8s 0.5s var(--ease-out);
}
.hero-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 1.1; color: var(--white); margin-bottom: 1.5rem;
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.9s 0.7s var(--ease-out), transform 0.9s 0.7s var(--ease-out);
}
.hero-title em { color: var(--accent); font-style: normal; }
.hero-sub {
  font-family: var(--font-sans);
  font-size: 1.1rem; font-weight: 400; line-height: 1.6;
  color: rgba(255,255,255,0.9); max-width: 500px; margin-bottom: 2.5rem;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.8s 0.9s var(--ease-out), transform 0.8s 0.9s var(--ease-out);
}
.body-loaded .hero-eyebrow,
.body-loaded .hero-title,
.body-loaded .hero-sub { opacity: 1; transform: none; }
.hero-slide-dots {
  position: absolute; bottom: 2rem; right: 2rem; z-index: 3; display: flex; gap: 0.5rem;
}
.slide-dot {
  width: 24px; height: 2px; background: rgba(255,255,255,0.35);
  border-radius: 2px; cursor: pointer;
  transition: width 0.4s, background 0.4s; border: none;
}
.slide-dot.active { width: 40px; background: #e8c080; }
.hero-scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.scroll-text { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.scroll-track { width: 1px; height: 50px; background: rgba(255,255,255,.2); position: relative; overflow: hidden; }
.scroll-thumb {
  position: absolute; top: 0; left: 0; width: 100%; height: 50%;
  background: #e8c080;
  will-change: transform;
  animation: scrollThumbY 2s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}
@keyframes scrollThumbY {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(200%); }
}

/* -- BUTTONS -------------------------------------------- */
.btn-outline {
  display: inline-block;
  border: 2px solid var(--primary); color: var(--primary);
  padding: 0.75rem 1.5rem; font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.05em; border-radius: 8px;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.8s 1.1s var(--ease-out), transform 0.8s 1.1s var(--ease-out), background-color 0.3s, color 0.3s;
}
.body-loaded .btn-outline { opacity: 1; transform: none; }
.btn-outline:hover { background-color: var(--primary); color: white; }
.btn-primary {
  display: inline-block; background-color: var(--primary); color: white;
  padding: 0.75rem 1.5rem; font-size: 0.85rem; font-weight: 500;
  border-radius: 8px; border: none; text-align: center;
  transition: background-color 0.3s, transform 0.2s;
  cursor: pointer;
}
.btn-primary:hover { background-color: var(--secondary); color: white; transform: translateY(-2px); }
.btn-primary-outline {
  display: inline-block; border: 2px solid var(--primary); color: var(--primary);
  padding: 0.75rem 1.5rem; font-size: 0.85rem; font-weight: 500;
  border-radius: 8px; text-align: center;
  transition: background-color 0.3s, color 0.3s, transform 0.2s;
  cursor: pointer;
}
.btn-primary-outline:hover { background-color: var(--primary); color: white; transform: translateY(-2px); }

/* -- NUMBERS STRIP -------------------------------------- */
.numbers-strip {
  background-color: var(--white);
  border-top: 1px solid var(--beach-dark);
  border-bottom: 1px solid var(--beach-dark);
  display: flex; align-items: center; justify-content: center;
  padding: 3rem 2rem; flex-wrap: wrap;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  position: relative; z-index: 5;
}
.num-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 0 3.5rem; text-align: center;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.num-item.visible { opacity: 1; transform: none; }
.num-top { display: flex; align-items: flex-start; justify-content: center; }
.num-val {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--primary); line-height: 1;
}
.num-suffix { font-family: var(--font-display); font-weight: 700; font-size: 2rem; color: var(--primary); margin-top: 0.2rem; margin-left: 0.1rem; }
.num-label { font-size: 0.75rem; letter-spacing: 0.1em; font-weight: 600; text-transform: uppercase; color: var(--text-light); margin-top: 0.5rem; }
.num-divider { width: 1px; height: 40px; background: var(--beach-dark); flex-shrink: 0; }

/* -- PROP SECTION INTRO --------------------------------- */
.propriedades { padding: 6rem 0 0; background-color: var(--beach-light); }
.prop-intro { max-width: 1280px; margin: 0 auto; padding: 0 2rem 4rem; }

/* -- SECTION UTILS -------------------------------------- */
.section-tag {
  display: inline-block; font-size: 0.8rem; font-weight: 600; color: var(--primary);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem;
  text-align: center; width: 100%;
}
.section-title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2rem, 4vw, 2.5rem);
  text-align: center; color: var(--secondary); margin-bottom: 2.5rem;
  position: relative; padding-bottom: 1rem;
}
.section-title::after {
  content: ""; position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%); width: 80px; height: 3px;
  background-color: var(--accent);
}
.section-title em { font-style: normal; color: var(--primary); }

/* -- WHITE PROPERTY CARDS (MARESIAS STYLE) -- */
.prop-card-cinema {
  background: white; border-radius: 8px; box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
  height: auto; min-height: 0; position: relative;
  margin-bottom: 3rem; max-width: 1280px; margin-left: auto; margin-right: auto;
}
.prop-card-cinema:hover {
  transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.pcc-bg {
  position: relative; height: 400px; background-size: cover; background-position: center;
}
.pcc-overlay { display: none; }
.pcc-content {
  padding: 2.5rem; display: flex; justify-content: space-between; align-items: flex-end; width: 100%; position: relative; background: white;
}
.pcc-location { color: var(--text-light); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.75rem; margin-bottom: 0.5rem; font-weight: 500; }
.pcc-name {
  font-family: var(--font-display); font-weight: 600; font-size: 2.2rem; color: var(--secondary); line-height: 1.2;
}
.pcc-name em { font-style: normal; color: var(--primary); }
.pcc-specs { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 1rem; }
.pcc-specs span {
  font-size: 0.75rem; color: var(--primary); background: var(--beach-light);
  padding: 0.4rem 0.8rem; border-radius: 4px; font-weight: 500; border: none; letter-spacing: 0; text-transform: none;
}
.pcc-right { display: flex; flex-direction: column; align-items: flex-end; gap: 1.5rem; flex-shrink: 0; }
.pcc-price { text-align: right; }
.pcc-from { font-size: 0.75rem; color: var(--text-light); display: block; margin-bottom: 0.2rem; letter-spacing: 0; }
.pcc-val { font-family: var(--font-display); font-size: 1.8rem; font-weight: 600; color: var(--secondary); line-height: 1; }
.pcc-val small { font-size: 0.9rem; color: var(--text-light); font-weight: 400; }
.btn-cinema {
  background: var(--primary); color: white; padding: 0.85rem 1.8rem; border-radius: 8px; font-weight: 500; transition: all 0.3s;
  text-transform: none; letter-spacing: 0; font-size: 0.9rem; border: none;
  opacity: 1; transform: none; display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-cinema:hover { background: var(--secondary); color: white; transform: translateY(-2px); border-color: transparent; }
.pcc-num { display: none; }

/* -- REVIEWS -------------------------------------------- */
.reviews-section { padding: 7rem 0 5rem; background-color: var(--white); overflow: hidden; }
.reviews-section .container { max-width: 1280px; margin: 0 auto; padding: 0 2rem 3rem; }
.reviews-track {
  display: flex; gap: 2rem;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding: 1rem 2rem 2rem;
  scrollbar-width: none;
}
.reviews-track::-webkit-scrollbar { display: none; }
.review-card {
  flex: 0 0 380px; scroll-snap-align: start;
  background: white;
  border: none;
  border-radius: 8px; padding: 2.5rem;
  display: flex; flex-direction: column; gap: 1.2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 8px 25px rgba(0,0,0,0.12); }
.rv-stars { color: var(--accent); font-size: 1.2rem; letter-spacing: 0.1em; }
.rv-text { font-size: 1rem; line-height: 1.8; color: var(--text-light); font-style: italic; flex: 1; }
.rv-author { display: flex; align-items: center; gap: 1rem; }
.rv-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background-color: #C0DCED;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 1.1rem; color: #0d1e30; flex-shrink: 0;
}
.rv-avatar-img {
  width: 38px; height: 38px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  border: 1px solid rgba(13,30,48,0.1);
}
.rv-author strong { display: block; font-size: 0.88rem; color: #0d1e30; }
.rv-author span { font-size: 0.72rem; color: rgba(13,30,48,0.5); }
.reviews-nav { display: flex; align-items: center; justify-content: center; gap: 1.5rem; padding-top: 2rem; }
.rv-btn {
  width: 42px; height: 42px;
  border: 1px solid rgba(184,122,48,0.35);
  border-radius: 50%; font-size: 1.3rem; color: #b87a30;
  display: flex; align-items: center; justify-content: center;
  transition: background-color 0.3s, border-color 0.3s; cursor: pointer;
}
.rv-btn:hover { background-color: #b87a30; color: white; border-color: #b87a30; }
.rv-dots { display: flex; gap: 0.4rem; }
.rv-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(13,30,48,0.15); transition: background 0.3s, transform 0.3s; cursor: pointer; }
.rv-dot.active { background: #b87a30; transform: scale(1.4); }

/* -- DIFERENCIAIS (has photo bg -- keep dark overlay) --- */
.diferenciais { position: relative; padding: 8rem 0; overflow: hidden; background-color: var(--beach-light); }
.dif-bg { display: none; }
.dif-overlay { display: none; }
.dif-container {
  position: relative; z-index: 2; max-width: 1280px; margin: 0 auto;
  padding: 0 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.dif-title-col .section-tag { color: var(--primary); text-align: left; }
.dif-title-col .section-title { color: var(--secondary) !important; text-align: left; }
.dif-title-col .section-title::after { left: 0; transform: none; width: 60px; }
.dif-title-col .section-title em { color: var(--primary); font-style: normal; }
.dif-cards-col { display: flex; flex-direction: column; gap: 1.5rem; }
.dif-card {
  display: flex; gap: 1.2rem; align-items: flex-start;
  background: white;
  border: none;
  border-radius: 8px; padding: 2rem; box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  opacity: 0; transform: translateX(15px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out), box-shadow 0.3s;
}
.dif-card.visible { opacity: 1; transform: none; }
.dif-card:hover { transform: translateY(-4px); box-shadow: 0 8px 25px rgba(0,0,0,0.1); }
.dif-icon { font-size: 2rem; flex-shrink: 0; line-height: 1; }
.dif-card h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--secondary); margin-bottom: 0.5rem; }
.dif-card p { font-size: 0.95rem; color: var(--text-light); line-height: 1.6; }

/* -- CTA FINAL (has photo bg -- keep dark overlay) ------ */
.cta-final {
  position: relative; height: 60vh; min-height: 400px;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
  background-color: var(--navy);
}
.cta-final-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.05); }
.cta-final-overlay { position: absolute; inset: 0; background: rgba(0,95,115,0.7); }
.cta-final-content { position: relative; z-index: 2; text-align: center; padding: 0 2rem; }
.cta-final-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 4.5rem); color: var(--white); line-height: 1.2; margin: 1rem 0 2.5rem;
}
.cta-final-title em { color: var(--accent); font-style: normal; }
.cta-final-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* -- FOOTER --------------------------------------------- */
.footer { background-color: #0d1e30; padding: 5rem 0 2rem; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,.45); line-height: 1.8; max-width: 280px; }
.footer-col h4 { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: #b87a30; margin-bottom: 1.2rem; }
.footer-col { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a { font-size: 0.88rem; color: rgba(255,255,255,.45); transition: color 0.3s; }
.footer-col a:hover { color: #e8c080; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 2rem; text-align: center; }
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.25); letter-spacing: 0.05em; }
.whatsapp-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background-color: #25d366; color: white;
  padding: 0.55rem 1.2rem; border-radius: 30px;
  font-size: 0.8rem; font-weight: 500;
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.35); }

/* -- SCROLL REVEAL overrides (Disabled for performance) -- */
[data-reveal] {
  opacity: 1 !important; transform: none !important; transition: none !important;
}
[data-reveal].revealed { opacity: 1; transform: none; }

/* -- RESPONSIVE ----------------------------------------- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .dif-container { grid-template-columns: 1fr; gap: 2.5rem; }
  .pcc-content { flex-direction: column; align-items: flex-start; }
  .pcc-right { align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 600px) {
  .hero-title { font-size: 3rem; }
  .pcc-name { font-size: 3rem; }
  .review-card { flex: 0 0 300px; }
  .cta-final-btns { flex-direction: column; align-items: center; }
  .num-item { padding: 1rem 1.5rem; }
}

/* -- FLOATING BUTTONS ----------------------------------- */
#wa-float, #ig-float {
  position: fixed; right: 2rem; z-index: 9000;
  width: 56px; height: 56px; border-radius: 50%;
  color: white; display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
#wa-float {
  bottom: 6.5rem; background: #25d366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  animation: waPulse 2.5s ease-in-out infinite;
}
#ig-float {
  bottom: 11rem;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  box-shadow: 0 4px 20px rgba(214, 36, 159, 0.45);
  animation: igPulse 2.5s ease-in-out infinite;
  animation-delay: 1.25s;
}
#wa-float:hover, #ig-float:hover {
  transform: scale(1.12); animation: none;
}
#wa-float:hover { box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55); }
#ig-float:hover { box-shadow: 0 8px 32px rgba(214, 36, 159, 0.55); }

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
  50%       { box-shadow: 0 4px 28px rgba(37,211,102,.7); }
}
@keyframes igPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(214,36,159,.4); }
  50%       { box-shadow: 0 4px 28px rgba(214,36,159,.7); }
}
.wa-tooltip, .ig-tooltip {
  position: absolute; right: 68px; top: 50%;
  transform: translateY(-50%);
  background: #0d1e30; color: white;
  font-size: 0.78rem; font-weight: 500; font-family: var(--font-sans);
  white-space: nowrap; padding: 0.45rem 0.9rem;
  border-radius: 8px; pointer-events: none;
  opacity: 0; transition: opacity 0.25s;
}
.wa-tooltip::after, .ig-tooltip::after {
  content: ''; position: absolute; left: 100%; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #0d1e30;
}
#wa-float:hover .wa-tooltip, #ig-float:hover .ig-tooltip { opacity: 1; }

/* -- AVATAR CIRCLE PHOTO -------------------------------- */
.avatar-circle {
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

/* -- STICKY HOST BOTTOM BAR (PROPERTIES) ---------------- */
.sticky-host-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(13,30,48,0.08);
  padding: 0.8rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  z-index: 1000;
  box-shadow: 0 -4px 24px rgba(13,30,48,0.06);
  transform: translateY(100%);
  animation: slideUpHost 0.8s 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes slideUpHost {
  to { transform: translateY(0); }
}
.shb-left { display: flex; align-items: center; gap: 1rem; }
.shb-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background-size: cover; background-position: center top;
}
.shb-info strong {
  display: block; font-family: var(--font-serif);
  font-size: 1.1rem; color: #0d1e30; line-height: 1.2;
}
.shb-info span {
  display: block; font-size: 0.75rem; color: rgba(13,30,48,0.6);
  letter-spacing: 0.05em; text-transform: uppercase;
}
.shb-btn {
  background: #25d366; color: white;
  padding: 0.6rem 1.2rem; border-radius: 6px;
  font-size: 0.85rem; font-weight: 600; text-decoration: none;
  display: flex; align-items: center; gap: 0.4rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.shb-btn:hover {
  transform: translateY(-2px); box-shadow: 0 4px 12px rgba(37,211,102,0.3);
}
@media (max-width: 600px) {
  .shb-info span { display: none; }
  .sticky-host-bar { padding: 0.8rem 1rem; }
  .shb-avatar { width: 38px; height: 38px; }
  .shb-btn { padding: 0.6rem 0.9rem; }
}

/* ─────────────────────────────────────────────────
   ULTRA-PREMIUM UPGRADES (V29)
───────────────────────────────────────────────── */
@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.12); }
}

.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 0; transform-origin: center center;
}

/* pcc-bg positioning is handled by the Maresias layout section below */

.scarcity-bar {
  background: var(--navy); color: var(--gold-light);
  text-align: center; padding: 0.6rem 1rem; font-size: 0.72rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  font-weight: 500; font-family: var(--sans); z-index: 1001;
  position: absolute; top: 0; left: 0; width: 100%;
  display: flex; justify-content: center; align-items: center; gap: 0.5rem;
}

.footer-contact h4 { margin-bottom: 1.2rem; }
.footer-host { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.f-host-img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(255,255,255,0.1); }
.footer-host strong { display: block; font-family: var(--font-serif); font-size: 1.1rem; margin-bottom: 0.1rem; color: #fff; }
.footer-host span { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.5); }

.whatsapp-btn, .instagram-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.65rem 1.2rem; border-radius: 6px; font-weight: 500; text-decoration: none;
  font-size: 0.85rem; transition: transform 0.2s; width: fit-content; margin-bottom: 0.8rem;
}
.whatsapp-btn { background: #25d366; color: white; }
.instagram-btn { background: #e1306c; color: white; }
.whatsapp-btn:hover, .instagram-btn:hover { transform: translateY(-3px); }

.trust-badges {
  display: flex; flex-direction: column; gap: 0.8rem; 
  margin-top: 1.5rem; padding-top: 1.5rem; 
  border-top: 1px dashed rgba(13,30,48,0.15);
}

.trust-badge {
  display: flex; align-items: center; gap: 0.8rem;
  font-size: 0.8rem; color: var(--navy); font-weight: 500;
}

.trust-badge-icon {
  width: 18px; height: 18px; color: var(--gold); border-radius: 50%;
  background: rgba(184,122,48,0.1); font-size: 0.65rem; font-weight: bold;
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
}

/* ═══════════════════════════════════════════════════
   MARESIAS TEMPLATE REBUILD 
   ═══════════════════════════════════════════════════ */

/* 1. Header & Hero */
.header-maresias { position: relative; width: 100%; display: flex; flex-direction: column; }
.hero-maresias { 
  position: relative; height: 75vh; min-height: 500px; 
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-maresias .hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 1;
}
.hm-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 100%);
}
.hero-content-maresias { position: relative; z-index: 3; text-align: center; padding: 0 20px; }
.hero-title-maresias {
  font-family: var(--font-display); font-weight: 700; color: white;
  font-size: clamp(3rem, 6vw, 5rem); margin-bottom: 30px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hero-pills-maresias { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.pill-btn {
  background: rgba(255,255,255,0.2); backdrop-filter: blur(5px);
  color: white; border: 1px solid rgba(255,255,255,0.4);
  padding: 10px 24px; border-radius: 30px; font-weight: 500;
  transition: all 0.3s;
}
.pill-btn:hover { background: white; color: var(--navy); }

/* 2. Navbar Below Hero */
.navbar-maresias {
  background: #1a1a1a !important; color: white; position: sticky !important; top: 0; z-index: 2000 !important;
  padding: 15px 0 !important; border-bottom: 2px solid var(--primary); box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.navbar-maresias .nav-inner { 
  max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 0 2rem;
}
.navbar-maresias .nav-links { display: flex; gap: 30px; list-style: none; }
.navbar-maresias .nav-links a { 
  display: flex; align-items: center; color: rgba(255,255,255,0.85) !important; font-weight: 500; font-size: 0.95rem; text-transform: none; letter-spacing: 0;
}
.navbar-maresias .nav-links a::after { display: none; }
.navbar-maresias .nav-links a:hover { color: var(--gold) !important; }
.nav-cta-maresias {
  background: var(--gold) !important; color: #1a1a1a !important; padding: 10px 24px !important; border-radius: 30px !important;
  font-weight: 700 !important; display: inline-flex; align-items: center;
  transition: transform 0.2s, background 0.3s; border: none !important; margin-left:15px;
}
.nav-cta-maresias:hover { background: #d4974a !important; transform: translateY(-2px); color: #1a1a1a !important; }
.navbar-maresias .burger span { background: white !important; }

/* 3. Bem-vindo Section */
.bemvindo-section { background: var(--beach-light); padding: 80px 0; text-align: center; }
.bv-title { font-family: var(--font-display); font-size: 2.8rem; color: var(--navy); font-weight: 600; margin-bottom: 5px; }
.bv-subtitle { font-family: var(--font-sans); font-size: 1.2rem; color: #529f8d; font-style: italic; margin-bottom: 60px; }
.bv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.bv-card {
  background: white; border-radius: 12px; padding: 40px 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04); transition: transform 0.3s, box-shadow 0.3s;
}
.bv-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.08); }
.bv-icon { font-size: 3rem; margin-bottom: 20px; color: #529f8d; display: flex; justify-content: center; }
.bv-icon svg { width: 48px; height: 48px; }
.bv-card h3 { font-family: var(--font-display); font-size: 1.3rem; color: var(--navy); margin-bottom: 15px; }
.bv-card p { color: var(--text-light); font-size: 0.95rem; line-height: 1.6; }

/* 4. Destaques Grid (Ocean) */
.destaques-section { background: var(--primary); padding: 80px 0; border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); }
.dest-title { text-align: center; color: white; font-family: var(--font-display); font-size: 2.5rem; font-weight: 600; margin-bottom: 50px; }
.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.dest-card { background: rgba(0,0,0,0.15); border-radius: 12px; padding: 30px; text-align: center; transition: background 0.3s; border: 1px solid rgba(255,255,255,0.05); }
.dest-card:hover { background: rgba(0,0,0,0.25); }
.dest-icon { 
  width: 60px; height: 60px; border-radius: 50%; background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
  color: white;
}
.dest-icon svg { width: 30px; height: 30px; }
.dest-card h3 { color: white; font-size: 1.2rem; margin-bottom: 15px; font-weight: 600; font-family: var(--font-display); }
.dest-card p { color: rgba(255,255,255,0.85); font-size: 0.9rem; line-height: 1.6; }

/* 5. Properties — Clean Flex Layout */
#propriedades { padding: 100px 0; background: white; }
.prop-intro { text-align: center; margin-bottom: 2rem; }

.prop-card-cinema {
  display: flex !important;
  flex-direction: row !important;
  gap: 0 !important;
  background: white !important;
  border-radius: 16px !important;
  box-shadow: 0 8px 40px rgba(0,0,0,0.10) !important;
  overflow: hidden !important;
  max-width: 1120px;
  margin: 0 auto 60px !important;
  min-height: 440px;
  align-items: stretch !important;
  transform: none !important;
}
.prop-card-cinema:hover { transform: translateY(-5px) !important; box-shadow: 0 16px 50px rgba(0,0,0,0.15) !important; }

/* Image half */
.pcc-bg {
  position: relative !important;
  flex: 0 0 55% !important;
  height: auto !important;
  min-height: 440px !important;
  width: auto !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background-size: cover !important;
  background-position: center !important;
  animation: none !important;
}

/* Slider buttons and dots stay inside pcc-bg — position absolute relative to pcc-bg */
.pcc-slider-btn {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
}
.pcc-slider-dots { position: absolute !important; bottom: 16px !important; }

/* Content half */
.pcc-content {
  flex: 1 !important;
  background: white !important;
  padding: 48px 40px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  margin: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  position: static !important;
  z-index: auto !important;
}
.pcc-right { display: block !important; margin-top: 30px; text-align: left; }
.pcc-price { text-align: left !important; margin-bottom: 20px; }
.btn-cinema { background: var(--primary) !important; color: white !important; border-radius: 30px !important; font-weight: 600 !important; display: inline-flex !important; }
.btn-cinema:hover { background: var(--secondary) !important; transform: translateY(-2px) !important; }

/* Reverse layout for 2nd property — image on RIGHT */
#propRaizes.prop-card-cinema { flex-direction: row-reverse !important; }
#propRaizes .pcc-bg { order: unset !important; }
#propRaizes .pcc-content { order: unset !important; margin: 0 !important; }

/* 6. Distancias Section */
.distancias-section { background: var(--beach-light); padding: 80px 0 100px; border-top: 1px solid rgba(0,0,0,0.05); }
.dist-title { text-align: center; font-family: var(--font-display); font-size: 2.5rem; color: var(--navy); font-weight: 600; margin-bottom: 40px; }
.dist-grid-container { background: white; border-radius: 16px; padding: 40px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); max-width: 1000px; margin: 0 auto; }
.dist-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 15px; }
.dist-item { background: var(--beach-light); border-radius: 10px; padding: 15px 20px; display: flex; justify-content: space-between; align-items: center; font-size: 0.95rem; border: 1px solid rgba(0,0,0,0.03); }
.dist-item span { color: var(--text-dark); font-weight: 500; }
.dist-item .km { color: var(--primary); font-weight: 700; }

@media (max-width: 900px) {
  .navbar-maresias .nav-links { display: none; }
  .navbar-maresias .burger { display: flex; }
  .nav-cta-maresias { display: none !important; }
  .bv-grid { grid-template-columns: 1fr !important; padding: 0 1.5rem !important; }
  .dest-grid { grid-template-columns: 1fr 1fr !important; padding: 0 1.5rem !important; }
  
  /* Stack property cards vertically on tablet/mobile */
  .prop-card-cinema { flex-direction: column !important; margin: 0 1.5rem 50px !important; border-radius: 12px !important; }
  #propRaizes.prop-card-cinema { flex-direction: column !important; }
  .pcc-bg { flex: none !important; height: 320px !important; min-height: 320px !important; width: 100% !important; }
  .pcc-content { padding: 30px !important; }
}
@media (max-width: 600px) {
  .dest-grid { grid-template-columns: 1fr !important; }
  .hero-pills-maresias { flex-direction: column; width: 100%; align-items: center; }
  .pill-btn { width: 100%; text-align: center; }
  .dist-grid-container { padding: 20px; margin: 0 1.5rem; }
  .bv-title { font-size: 2rem; }
  .dest-title { font-size: 2rem; }
  .hero-title-maresias { font-size: 2.8rem; }
}

/* ═══════════════════════════════════════════════════
   MOBILE RESPONSIVENESS — COMPREHENSIVE FIX
   ═══════════════════════════════════════════════════ */

@media (max-width: 768px) {
  /* Scarcity bar */
  .scarcity-bar { font-size: 0.62rem; padding: 0.45rem 0.8rem; }

  /* Navbar */
  #navbar { top: 32px !important; }
  #navbar.scrolled { top: 0 !important; }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero-content { padding: 0 1.25rem 5rem; }
  .hero-title { font-size: clamp(2.4rem, 9vw, 4rem) !important; }
  .hero-sub { font-size: 0.88rem; max-width: 100%; }
  .btn-outline { padding: 0.75rem 1.5rem; font-size: 0.72rem; }

  /* Numbers — 2 colunas */
  .numbers-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 0; padding: 1.5rem 1rem; }
  .num-divider { display: none; }
  .num-item { padding: 1rem; border-bottom: 1px solid rgba(13,30,48,0.08); }
  .num-item:nth-child(odd) { border-right: 1px solid rgba(13,30,48,0.08); }

  /* Cinematic cards */
  .prop-card-cinema { height: 70vh; min-height: 420px; }
  .pcc-content { flex-direction: column; align-items: flex-start; gap: 1rem; padding: 0 1.25rem 2.5rem; }
  .pcc-right { align-items: flex-start; }
  .pcc-name { font-size: clamp(2rem, 7vw, 3.5rem); }
  .btn-cinema { transform: none !important; opacity: 1 !important; } /* always visible, not just on hover */

  /* Reviews */
  .review-card { flex: 0 0 85vw; }
  .reviews-section .container { padding: 0 1.25rem 2rem; }
  .reviews-track { padding: 0.5rem 1.25rem 1rem; }

  /* Diferenciais */
  .dif-container { grid-template-columns: 1fr; gap: 2rem; padding: 0 1.25rem; }

  /* CTA final */
  .cta-final { height: auto; min-height: 55vh; padding: 4rem 0; }
  .cta-final-title { font-size: clamp(1.9rem, 6vw, 3rem); }
  .cta-final-btns { flex-direction: column; align-items: center; gap: 0.8rem; width: 100%; padding: 0 1.5rem; }
  .cta-final-btns .btn-primary,
  .cta-final-btns .btn-primary-outline { width: 100%; max-width: 300px; text-align: center; }

  /* Footer */
  .footer { padding: 3rem 0 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand p { max-width: 100%; }

  /* Floating buttons — menores e mais para cima */
  #wa-float { bottom: 5rem; right: 1rem; width: 48px; height: 48px; }
  #ig-float { bottom: 9rem; right: 1rem; width: 48px; height: 48px; }
  #wa-float svg, #ig-float svg { width: 22px !important; height: 22px !important; }
  .wa-tooltip, .ig-tooltip { display: none; }

  /* Sticky host bar */
  .sticky-host-bar { padding: 0.7rem 1rem; }
  .shb-info span { display: none; }

  /* Headings & sections */
  .section-title { font-size: clamp(1.8rem, 6vw, 2.5rem); }
  .prop-intro { padding: 0 1.25rem 2.5rem; }
  .propriedades { padding: 4rem 0 0; }
  .container { padding: 0 1.25rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.1rem !important; }
  .pcc-val { font-size: 1.8rem; }
  .num-val { font-size: clamp(2rem,8vw,2.8rem); }
  .cta-final-title { font-size: 1.8rem; }

  /* Pagamento — stack columns */
  .page { grid-template-columns: 1fr !important; padding: 24px 16px 60px !important; }
  .right-col { order: -1; }
  .price-card { position: static !important; }
}

 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
     . n a v - a c t i o n s - d e s k t o p   {   d i s p l a y :   n o n e   ! i m p o r t a n t ;   } 
 } 
 . n a v - s e c o n d a r y - b t n : h o v e r   {   b a c k g r o u n d :   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 1 ) ;   } 
  
 