/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --sand:   #C2EBF5;
  --sand2:  #80C8DC;
  --stone:  #081820;
  --stone2: #102A38;
  --moss:   #1A6E88;
  --sky:    #50C0D4;
  --cream:  #E2F6FB;
  --gold:   #28AEC8;
  --white:  #F0FBFD;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Manrope', sans-serif;
}
html { scroll-behavior: smooth; }
body {
  background: var(--stone);
  color: var(--sand);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

/* ── CUSTOM CURSOR ── */
.cursor {
  width: 10px; height: 10px;
  background: var(--sand);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transition: transform 0.15s ease, background 0.2s;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 0.5px solid rgba(80,192,212,0.4);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.25s ease;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 48px;
  transition: background 0.4s, padding 0.4s;
}
nav.scrolled {
  background: rgba(8,24,32,0.94);
  backdrop-filter: blur(12px);
  padding: 18px 48px;
  border-bottom: 0.5px solid rgba(80,192,212,0.15);
}
.nav-logo {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
}
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242,250,253,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a.active { border-bottom: 0.5px solid var(--sky); padding-bottom: 2px; }
.nav-cta {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  background: var(--sky);
  border: none;
  padding: 10px 24px;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
}
.nav-cta:hover { background: var(--sand); }
.nav-burger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px;
  background: transparent; border: 0.5px solid rgba(80,192,212,0.35);
  cursor: pointer; padding: 0 9px;
}
.nav-burger span {
  display: block; height: 1px; width: 100%;
  background: var(--sand);
  transition: transform 0.25s, opacity 0.25s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(8,24,32,0.98);
  backdrop-filter: blur(12px);
  display: none; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 28px; font-weight: 300;
  color: rgba(242,250,253,0.75);
  text-decoration: none;
  padding: 10px 24px;
  transition: color 0.2s;
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--sky); }
.mobile-menu .mobile-menu-cta {
  margin-top: 20px;
  font-family: var(--sans);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--stone); background: var(--sky);
  padding: 14px 40px;
}

/* ── PAGE HERO (interior pages) ── */
.page-hero {
  min-height: 380px;
  position: relative;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 120px 48px 64px;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(8,24,32,0.45) 0%, rgba(8,24,32,0.75) 100%),
    url('images/barra-beach-house-pousada-vista.jpg') center/cover no-repeat,
    linear-gradient(135deg, #1A6E88 0%, #102A38 40%, #081820 100%);
}
.page-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse 70% 60% at 60% 40%, rgba(80,192,212,0.08) 0%, transparent 70%);
}
.page-hero-content { position: relative; z-index: 2; max-width: 720px; }
.page-breadcrumb {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(194,235,245,0.45);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.page-breadcrumb a { color: inherit; text-decoration: none; transition: color 0.2s; }
.page-breadcrumb a:hover { color: var(--sky); }
.page-breadcrumb span { color: var(--sky); }
.page-title {
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 16px;
}
.page-title em { font-style: italic; color: var(--sand2); }
.page-sub {
  font-size: 14px;
  font-weight: 300;
  color: rgba(242,250,253,0.55);
  max-width: 480px;
  line-height: 1.75;
}

/* ── SECTION BASE ── */
section { padding: 80px 48px; }
.section-eyebrow {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 24px;
}
.section-eyebrow::before {
  content: '';
  width: 28px; height: 0.5px;
  background: var(--gold);
}
.section-eyebrow.dark { color: var(--stone2); }
.section-eyebrow.dark::before { background: var(--stone2); }
.section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
}
.section-title em { font-style: italic; color: var(--sand2); }
.section-title.dark { color: var(--stone); }
.section-desc {
  font-size: 14px;
  color: rgba(194,235,245,0.5);
  line-height: 1.8;
  max-width: 580px;
  margin-bottom: 48px;
}
.section-desc.dark { color: var(--stone2); }

/* ── BUTTONS ── */
.btn-primary {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  background: var(--sky);
  border: none;
  padding: 14px 32px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--sand); }
.btn-ghost {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(242,250,253,0.7);
  background: transparent;
  border: 0.5px solid rgba(80,192,212,0.35);
  padding: 14px 32px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--sky); color: var(--white); }
.text-link {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  transition: gap 0.2s;
}
.text-link::after { content: '→'; font-family: var(--sans); }
.text-link:hover { gap: 16px; }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, #1A6E88 0%, #102A38 100%);
  padding: 80px 48px;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-band h2 em { font-style: italic; color: var(--sky); }
.cta-band p {
  font-size: 14px;
  color: rgba(242,250,253,0.5);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto; margin-right: auto;
  line-height: 1.75;
}
.cta-band .btn-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 200;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }

/* ── FOOTER ── */
footer {
  background: #040E16;
  padding: 80px 48px 40px;
  border-top: 0.5px solid rgba(80,192,212,0.08);
}
.footer-top {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 0.5px solid rgba(80,192,212,0.08);
  margin-bottom: 32px;
}
.footer-brand .logo {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: var(--sand);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}
.footer-brand p { font-size: 13px; color: rgba(194,235,245,0.35); line-height: 1.8; }
.footer-brand .footer-contact { margin-top: 20px; display: flex; flex-direction: column; gap: 6px; }
.footer-brand .footer-contact a {
  font-size: 12px; color: rgba(194,235,245,0.4);
  text-decoration: none; transition: color 0.2s;
}
.footer-brand .footer-contact a:hover { color: var(--sky); }
.footer-col h4 {
  font-size: 9px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col li a {
  font-size: 13px; color: rgba(194,235,245,0.35);
  text-decoration: none; transition: color 0.2s;
}
.footer-col li a:hover { color: var(--sand); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 11px; color: rgba(194,235,245,0.2); }
.footer-bottom a { color: rgba(194,235,245,0.3); font-size: 11px; text-decoration: none; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── TOUCH DEVICES: cursor nativo ── */
@media (hover: none), (pointer: coarse) {
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav, nav.scrolled { padding: 18px 24px; justify-content: flex-start; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-cta { margin-left: auto; margin-right: 14px; }
  section { padding: 60px 24px; }
  .page-hero { padding: 100px 24px 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .cta-band { padding: 60px 24px; }
}
