/* ═══════════════════════════════════════════════
   DANYMAR – Premium Beach Apartment
   Design System: Luxury Boutique Hotel
   ═══════════════════════════════════════════════ */

/* ── Tokens ── */
:root {
  --ocean:      #0a3d62;
  --ocean-mid:  #1a5276;
  --petrol:     #1a4a5e;
  --seafoam:    #2e86ab;
  --seafoam-lt: #5dade2;
  --sea-green:  #a8d5ba;
  --sand:       #f5f0e8;
  --sand-dark:  #e8dfc9;
  --cream:      #fafaf7;
  --white:      #ffffff;
  --gold:       #c9a84c;
  --gold-lt:    #e8c96b;
  --text:       #1a1a2e;
  --text-md:    #4a4a6a;
  --text-lt:    #7a7a9a;
  --border:     rgba(10,61,98,.12);

  --font-serif:  'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;

  --r-sm:  .5rem;
  --r-md:  1rem;
  --r-lg:  1.5rem;
  --r-xl:  2rem;
  --r-pill: 999px;

  --sh-card:  0 4px 24px rgba(10,61,98,.1);
  --sh-lift:  0 12px 48px rgba(10,61,98,.18);
  --sh-gold:  0 4px 24px rgba(201,168,76,.3);

  --ease-out: cubic-bezier(.16,1,.3,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  image-rendering: high-quality;
  image-rendering: -webkit-optimize-contrast;
  -ms-interpolation-mode: bicubic;
}
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; }

/* ── Utilities ── */
.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  gap: 5rem;
}
.section-container.column { flex-direction: column; gap: 3.5rem; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto; }
.section-label {
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--seafoam);
  margin-bottom: .75rem;
}
.section-label.light { color: var(--seafoam-lt); }
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--ocean);
}
.section-title.light { color: var(--white); }
.section-title em { font-style: italic; color: var(--gold); }
.section-subtitle { color: var(--text-md); margin-top: 1rem; font-size: 1.05rem; }
.section-subtitle.light { color: rgba(255,255,255,.75); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .875rem 2rem;
  border-radius: var(--r-pill);
  font-size: .9rem;
  font-weight: 600;
  font-family: var(--font-sans);
  letter-spacing: .04em;
  transition: all .28s var(--ease-out);
  white-space: nowrap;
}
.btn-primary {
  background: var(--ocean);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(10,61,98,.3);
}
.btn-primary:hover {
  background: var(--petrol);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(10,61,98,.4);
}
.btn-secondary {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.5);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,.25);
  transform: translateY(-2px);
}
.btn-primary-light {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.4);
  backdrop-filter: blur(8px);
}
.btn-primary-light:hover {
  background: var(--white);
  color: var(--ocean);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold);
  color: var(--ocean);
  font-weight: 700;
  box-shadow: var(--sh-gold);
}
.btn-gold:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(201,168,76,.45);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.6);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-2px);
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════
   NAVBAR
══════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all .3s var(--ease-out);
  padding: 1.25rem 0;
}
.navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 24px rgba(10,61,98,.12);
  padding: .75rem 0;
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 96px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter .3s;
}
.navbar.scrolled .nav-logo img {
  filter: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  transition: color .2s;
  letter-spacing: .02em;
}
.navbar.scrolled .nav-links a { color: var(--text-md); }
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--ocean) !important;
  padding: .55rem 1.4rem;
  border-radius: var(--r-pill);
  font-weight: 700 !important;
  transition: all .25s !important;
}
.nav-cta:hover {
  background: var(--gold-lt) !important;
  transform: translateY(-1px);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}
.navbar.scrolled .hamburger span { background: var(--ocean); }
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1rem clamp(1.25rem, 5vw, 4rem);
  background: var(--white);
  gap: .5rem;
  box-shadow: 0 4px 24px rgba(10,61,98,.15);
}
.mobile-menu a {
  padding: .75rem 1rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-md);
  border-radius: var(--r-sm);
  transition: background .2s;
}
.mobile-menu a:hover { background: var(--sand); color: var(--ocean); }
.mobile-cta {
  background: var(--ocean) !important;
  color: var(--white) !important;
  text-align: center;
  border-radius: var(--r-pill) !important;
  font-weight: 700 !important;
  margin-top: .5rem;
}

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
  transform: translateZ(0);
  image-rendering: high-quality;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(5,25,50,.88) 0%,
    rgba(10,61,98,.72) 50%,
    rgba(10,61,98,.35) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 8rem clamp(1.25rem, 5vw, 4rem) 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(201,168,76,.18);
  border: 1px solid rgba(201,168,76,.4);
  color: var(--gold-lt);
  padding: .4rem 1rem;
  border-radius: var(--r-pill);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}
.star-icon { font-size: 1rem; }
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-lt);
}
.hero-sub {
  color: rgba(255,255,255,.82);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 1.75rem;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .625rem;
  margin-bottom: 2.25rem;
}
.hero-tags span {
  font-size: .78rem;
  font-weight: 600;
  color: var(--gold-lt);
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.3);
  padding: .3rem .85rem;
  border-radius: var(--r-pill);
  letter-spacing: .04em;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-gallery {
  position: relative;
}
.gallery-mosaic {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: .75rem;
  border-radius: var(--r-xl);
  overflow: hidden;
}
.mosaic-main {
  grid-row: span 2;
}
.mosaic-main img,
.mosaic-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.mosaic-main { height: 420px; }
.mosaic-side { display: flex; flex-direction: column; gap: .75rem; }
.mosaic-side > img { height: 196px; border-radius: var(--r-md); }
.gallery-mosaic:hover img { transform: scale(1.04); }
.gallery-badge {
  position: absolute;
  bottom: -1.25rem;
  left: 1.5rem;
  background: var(--gold);
  color: var(--ocean);
  padding: .75rem 1.5rem;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: .875rem;
  box-shadow: var(--sh-gold);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.6);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 22px;
  height: 22px;
  border-right: 2px solid rgba(255,255,255,.5);
  border-bottom: 2px solid rgba(255,255,255,.5);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}

/* ══════════════════════════════════
   TRUST BAR
══════════════════════════════════ */
.trust-bar {
  background: var(--ocean);
  padding: 1.75rem 0;
}
.trust-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .875rem;
  padding: .75rem 2.5rem;
  flex: 1;
  min-width: 140px;
  justify-content: center;
}
.trust-icon { font-size: 1.6rem; }
.trust-item div { display: flex; flex-direction: column; }
.trust-item strong {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.trust-item span {
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  font-weight: 400;
}
.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}

/* ══════════════════════════════════
   SOBRE
══════════════════════════════════ */
.sobre {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--cream);
}
.sobre-media {
  position: relative;
  flex: 1;
  min-width: 0;
}
.sobre-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: .875rem;
  height: 520px;
}
.sobre-img { width: 100%; height: 100%; object-fit: cover; object-position: center; border-radius: var(--r-lg); transform: translateZ(0); }
.sobre-img-main { grid-row: span 2; }
.sobre-float-card {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 1.125rem 1.5rem;
  box-shadow: var(--sh-lift);
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid var(--border);
}
.float-icon { font-size: 1.75rem; }
.sobre-float-card div { display: flex; flex-direction: column; }
.sobre-float-card strong { font-size: .95rem; color: var(--ocean); font-weight: 700; }
.sobre-float-card span { font-size: .8rem; color: var(--text-lt); }
.sobre-text {
  flex: 1;
  min-width: 0;
}
.sobre-text p {
  color: var(--text-md);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.sobre-text p:last-of-type { margin-bottom: 2rem; }
.sobre-highlights {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: var(--sand);
  border-radius: var(--r-lg);
}
.highlight-item { display: flex; flex-direction: column; align-items: center; }
.highlight-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--ocean);
  line-height: 1;
}
.highlight-label {
  font-size: .78rem;
  color: var(--text-lt);
  font-weight: 500;
  text-align: center;
  margin-top: .25rem;
}

/* ══════════════════════════════════
   BENEFÍCIOS
══════════════════════════════════ */
.beneficios {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--ocean);
  position: relative;
  overflow: hidden;
}
.beneficios::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(46,134,171,.15) 0%, transparent 70%);
  pointer-events: none;
}
.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
  width: 100%;
}
.benefit-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 2rem 1.5rem;
  transition: all .3s var(--ease-out);
  backdrop-filter: blur(8px);
}
.benefit-card:hover {
  background: rgba(255,255,255,.13);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.2);
  border-color: rgba(201,168,76,.3);
}
.benefit-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.benefit-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: .5rem;
}
.benefit-card p {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
}
.beneficios-cta { text-align: center; width: 100%; }

/* ══════════════════════════════════
   GALERIA
══════════════════════════════════ */
.galeria {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--cream);
}
.gallery-tabs {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.tab-btn {
  padding: .5rem 1.25rem;
  border-radius: var(--r-pill);
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-md);
  border: 1.5px solid var(--border);
  background: var(--white);
  transition: all .25s;
  letter-spacing: .04em;
}
.tab-btn:hover, .tab-btn.active {
  background: var(--ocean);
  color: var(--white);
  border-color: var(--ocean);
}
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  grid-auto-flow: dense;
  gap: .75rem;
  width: 100%;
}
.gal-item {
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .6s var(--ease-out);
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.gal-item:hover img { transform: scale(1.05) translateZ(0); }
.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5,25,50,.8) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity .3s;
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-overlay span {
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
}
.gal-item.hidden { display: none; }
.gallery-cta { text-align: center; }

/* ══════════════════════════════════
   LIGHTBOX
══════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(5,15,30,.97);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lb-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
}
.lb-content img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--r-md);
}
#lb-caption {
  color: rgba(255,255,255,.7);
  font-size: .875rem;
  margin-top: .75rem;
}
.lb-close, .lb-prev, .lb-next {
  position: fixed;
  background: rgba(255,255,255,.1);
  color: var(--white);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: background .2s;
  border: 1px solid rgba(255,255,255,.2);
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.2); }
.lb-close { top: 1.5rem; right: 1.5rem; font-size: 1.75rem; }
.lb-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }

/* ══════════════════════════════════
   DEPOIMENTOS
══════════════════════════════════ */
.depoimentos {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: linear-gradient(150deg, var(--ocean) 0%, var(--petrol) 60%, var(--ocean-mid) 100%);
}
.rating-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  margin-top: 1.5rem;
}
.rating-big {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 600;
  color: var(--gold-lt);
  line-height: 1;
}
.rating-stars {
  color: var(--gold);
  font-size: 1.4rem;
  letter-spacing: 2px;
}
.rating-label {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  font-weight: 500;
  margin-top: .25rem;
}
.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  width: 100%;
}
.dep-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-xl);
  padding: 2rem;
  transition: all .3s var(--ease-out);
  position: relative;
  backdrop-filter: blur(12px);
}
.dep-card:hover {
  background: rgba(255,255,255,.14);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.2);
}
.dep-card.dep-featured {
  background: rgba(201,168,76,.12);
  border-color: rgba(201,168,76,.3);
  grid-row: span 1;
}
.dep-badge {
  position: absolute;
  top: -12px;
  left: 1.5rem;
  background: var(--gold);
  color: var(--ocean);
  font-size: .72rem;
  font-weight: 700;
  padding: .3rem .875rem;
  border-radius: var(--r-pill);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.dep-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.dep-text {
  color: rgba(255,255,255,.82);
  font-size: .95rem;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.dep-author {
  display: flex;
  align-items: center;
  gap: .875rem;
}
.dep-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--seafoam), var(--ocean));
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dep-author div { display: flex; flex-direction: column; }
.dep-author strong { color: var(--white); font-size: .9rem; }
.dep-author span { color: rgba(255,255,255,.5); font-size: .78rem; }
.dep-cta { text-align: center; }

/* ══════════════════════════════════
   SEGURANÇA
══════════════════════════════════ */
.seguranca {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--white);
}
.seguranca-text {
  flex: 1;
  min-width: 0;
}
.seguranca-text p {
  color: var(--text-md);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 1.25rem 0 2rem;
}
.seguranca-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.seg-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.125rem 1.25rem;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: var(--cream);
  transition: all .25s;
}
.seg-item:hover {
  border-color: rgba(10,61,98,.2);
  background: var(--sand);
  transform: translateX(4px);
}
.seg-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: .1rem; }
.seg-item div { display: flex; flex-direction: column; gap: .15rem; }
.seg-item strong { font-size: .95rem; color: var(--ocean); font-weight: 600; }
.seg-item span { font-size: .82rem; color: var(--text-lt); }
.seguranca-visual { flex: 1; min-width: 0; }
.airbnb-card {
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lift);
  overflow: hidden;
  border: 1px solid var(--border);
  max-width: 380px;
  margin: 0 auto;
}
.airbnb-card-header {
  background: var(--ocean);
  padding: 1.25rem 1.5rem;
}
.airbnb-card-header img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
}
.airbnb-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.airbnb-card-info {
  padding: 1.5rem;
}
.airbnb-rating {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .875rem;
}
.airbnb-rating > span:first-child {
  color: var(--gold);
  font-weight: 700;
  font-size: .9rem;
}
.airbnb-badge {
  background: rgba(10,61,98,.08);
  color: var(--ocean);
  font-size: .72rem;
  font-weight: 700;
  padding: .25rem .75rem;
  border-radius: var(--r-pill);
  letter-spacing: .04em;
}
.airbnb-card-info h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ocean);
  margin-bottom: .25rem;
}
.airbnb-card-info > p {
  font-size: .82rem;
  color: var(--text-lt);
  margin-bottom: .875rem;
}
.airbnb-features {
  display: flex;
  gap: .5rem;
  font-size: .8rem;
  color: var(--text-md);
  margin-bottom: 1.25rem;
}
.airbnb-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--ocean);
  color: var(--white);
  padding: .875rem;
  border-radius: var(--r-md);
  font-weight: 700;
  font-size: .9rem;
  transition: background .25s, transform .25s;
}
.airbnb-btn:hover {
  background: var(--petrol);
  transform: translateY(-2px);
}

/* ══════════════════════════════════
   ANFITRIÃ
══════════════════════════════════ */
.video-praia {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--white);
}
.vsl-wrap {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lift);
  background: #000;
  aspect-ratio: 16 / 9;
}
.vsl-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.anfitria {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--sand);
}
.anfitria-content {
  display: flex;
  gap: 5rem;
  align-items: center;
  width: 100%;
}
.anfitria-img-wrap {
  position: relative;
  flex-shrink: 0;
}
.anfitria-img {
  width: 320px;
  height: auto;
  object-fit: contain;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lift);
}
.anfitria-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--gold);
  color: var(--ocean);
  padding: .625rem 1.125rem;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: .82rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  box-shadow: var(--sh-gold);
}
.anfitria-text { flex: 1; }
.anfitria-text p {
  color: var(--text-md);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 1.25rem 0;
}
.anfitria-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-bottom: 2rem;
}
.anf-badge-item {
  display: flex;
  align-items: center;
  gap: .625rem;
  padding: .75rem 1rem;
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  font-size: .875rem;
  font-weight: 500;
  color: var(--ocean);
}
.anf-badge-item > span:first-child {
  color: var(--seafoam);
  font-weight: 700;
}

/* ══════════════════════════════════
   LOCALIZAÇÃO
══════════════════════════════════ */
.localizacao {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: linear-gradient(170deg, var(--ocean) 0%, var(--ocean-mid) 100%);
}
.localizacao-content {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  width: 100%;
  align-items: center;
}
.loc-map {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lift);
}
.loc-map-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
.loc-pin {
  position: absolute;
  bottom: 40%;
  left: 42%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
}
.pin-dot {
  width: 16px;
  height: 16px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 4px rgba(201,168,76,.4);
  position: relative;
  z-index: 2;
}
.pin-pulse {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  top: -12px;
  left: -12px;
  animation: pulse 2s infinite;
  opacity: .6;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: .6; }
  100% { transform: scale(2); opacity: 0; }
}
.loc-pin > span {
  background: var(--ocean);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  padding: .3rem .75rem;
  border-radius: var(--r-pill);
  white-space: nowrap;
  box-shadow: var(--sh-card);
}
.loc-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.loc-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  backdrop-filter: blur(8px);
  transition: all .25s;
}
.loc-item:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(201,168,76,.3);
}
.loc-icon { font-size: 1.5rem; flex-shrink: 0; }
.loc-item div { display: flex; flex-direction: column; }
.loc-item strong { color: var(--white); font-size: .95rem; font-weight: 600; }
.loc-item span { color: rgba(255,255,255,.55); font-size: .8rem; }

/* ══════════════════════════════════
   CTA FINAL
══════════════════════════════════ */
.cta-final {
  position: relative;
  padding: clamp(5rem, 10vw, 9rem) 0;
  overflow: hidden;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
}
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5,15,40,.92) 0%,
    rgba(10,61,98,.85) 100%
  );
}
.cta-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 4rem);
}
.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin: 1rem 0 1.5rem;
}
.cta-title em { font-style: italic; color: var(--gold-lt); }
.cta-sub {
  color: rgba(255,255,255,.78);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 2rem;
}
.cta-urgency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  color: var(--gold-lt);
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.footer {
  background: #05121e;
  color: var(--white);
}
.footer-top {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem clamp(1.25rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 4rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 1.25rem; }
.footer-logo {
  height: 96px;
  width: auto;
  filter: none;
  opacity: 1;
}
.footer-brand p {
  color: rgba(255,255,255,.5);
  font-size: .875rem;
  line-height: 1.8;
}
.footer-social { display: flex; gap: .875rem; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: all .25s;
}
.footer-social a:hover {
  background: var(--ocean);
  border-color: var(--ocean);
  color: var(--white);
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer-col { display: flex; flex-direction: column; gap: .75rem; }
.footer-col h4 {
  font-size: .78rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: .25rem;
}
.footer-col a {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  transition: color .2s;
}
.footer-col a:hover { color: var(--white); }
.footer-checkin {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-top: .25rem;
  padding: .875rem;
  background: rgba(255,255,255,.05);
  border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,.08);
}
.footer-checkin div { display: flex; gap: .5rem; align-items: center; }
.ci-label {
  font-size: .72rem;
  color: rgba(255,255,255,.4);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  width: 60px;
}
.ci-time {
  font-size: .82rem;
  color: rgba(255,255,255,.7);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem clamp(1.25rem, 5vw, 4rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}
.footer-bottom a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ══════════════════════════════════
   FLOATING CTA
══════════════════════════════════ */
.float-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  transform: translateY(120px);
  transition: transform .4s var(--ease-out);
}
.float-cta.show { transform: translateY(0); }
.float-cta a {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: var(--ocean);
  color: var(--white);
  padding: .875rem 1.75rem;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: .9rem;
  box-shadow: 0 8px 32px rgba(10,61,98,.4);
  transition: all .25s;
}
.float-cta a:hover {
  background: var(--petrol);
  transform: translateY(-2px);
  box-shadow: 0 12px 48px rgba(10,61,98,.5);
}
.float-rating {
  background: var(--gold);
  color: var(--ocean);
  padding: .2rem .6rem;
  border-radius: var(--r-pill);
  font-size: .78rem;
  font-weight: 800;
}

/* ══════════════════════════════════
   MOBILE-FIRST RESPONSIVE
══════════════════════════════════ */

/* ── Mobile base (< 640px) ── */
@media (max-width: 639px) {

  /* Tipografia e textos centralizados */
  .section-title,
  .section-label,
  .section-subtitle,
  .cta-title,
  .dep-card,
  .sobre-text h2 { text-align: center; }
  .seg-item { text-align: left; }


  /* Navbar */
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-logo img { height: 64px; }

  /* Mobile menu overlay */
  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--ocean);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    font-size: 1.3rem;
    font-weight: 600;
    color: rgba(255,255,255,.85);
    padding: .875rem 2rem;
    border-radius: var(--r-pill);
    width: 100%;
    text-align: center;
    transition: all .2s;
  }
  .mobile-menu a:hover { background: rgba(255,255,255,.1); color: var(--white); }
  .mobile-cta {
    background: var(--gold) !important;
    color: var(--ocean) !important;
    font-weight: 800 !important;
    margin-top: 1rem;
    font-size: 1.1rem !important;
  }
  .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hamburger span { transition: all .3s var(--ease-out); }
  .navbar.scrolled .hamburger span,
  .hamburger.active span { background: var(--white); }
  .navbar.scrolled.menu-open .hamburger span { background: var(--white); }

  /* Hero */
  .hero-content {
    grid-template-columns: 1fr;
    padding: 7rem 1.25rem 3rem;
    text-align: center;
  }
  .hero-gallery { display: none; }
  .hero-title { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero-sub { font-size: .95rem; margin: 0 auto 1.5rem; }
  .hero-badge { margin: 0 auto 1.25rem; }
  .hero-tags { justify-content: center; }
  .hero-actions { flex-direction: column; align-items: center; gap: .75rem; }
  .hero-actions .btn { width: 100%; max-width: 340px; }

  /* Trust bar */
  .trust-container { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
  .trust-divider { display: none; }
  .trust-item { padding: .875rem .5rem; justify-content: center; border-bottom: 1px solid rgba(255,255,255,.08); }

  /* Sobre */
  .sobre .section-container { flex-direction: column; gap: 2rem; }
  .sobre-media { display: none; }
  .sobre-text { text-align: center; }
  .sobre-text p { font-size: .95rem; }
  .sobre-highlights { gap: 1rem; justify-content: center; padding: 1.25rem; }
  .highlight-num { font-size: 2rem; }
  .sobre-text .btn { width: 100%; }

  /* Benefícios – cards viram checklist */
  .beneficios-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 480px;
    margin: 0 auto;
  }
  .benefit-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,.1);
    border-radius: 0;
    padding: .875rem .5rem;
    text-align: left;
  }
  .benefit-card:last-child { border-bottom: none; }
  .benefit-card:hover { background: rgba(255,255,255,.05); transform: none; box-shadow: none; }
  .benefit-icon { font-size: 1.3rem; flex-shrink: 0; margin-bottom: 0; }
  .benefit-card h3 { font-size: .95rem; font-weight: 600; margin-bottom: 0; }
  .benefit-card::before {
    content: '✓';
    color: var(--gold);
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
    order: -1;
  }
  .benefit-card p { display: none; }
  .beneficios-cta .btn { width: 100%; max-width: 340px; }
  .section-header { padding: 0 .5rem; }

  /* Galeria */
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-tabs { gap: .375rem; }
  .tab-btn { font-size: .72rem; padding: .4rem .875rem; }

  /* Depoimentos */
  .depoimentos-grid { grid-template-columns: 1fr; gap: 1rem; }
  .rating-big { font-size: 3rem; }

  /* Segurança */
  .seguranca .section-container { flex-direction: column; }
  .airbnb-card { max-width: 100%; }
  .seguranca-text { text-align: center; }
  .seguranca-text .btn { width: 100%; max-width: 340px; }

  /* Anfitriã */
  .anfitria-content { flex-direction: column; text-align: center; gap: 2rem; }
  .anfitria-img { width: 100%; max-width: 260px; }
  .anfitria-img-wrap { margin: 0 auto; }
  .anfitria-badges { grid-template-columns: 1fr; }
  .anfitria-text .btn { width: 100%; }
  .anfitria-text p { font-size: .95rem; }

  /* Localização */
  .localizacao-content { grid-template-columns: 1fr; gap: 1.5rem; }
  .loc-map-img { height: 240px; }

  /* CTA Final */
  .cta-title { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .cta-sub { font-size: .95rem; }
  .cta-buttons { flex-direction: column; align-items: center; gap: .75rem; }
  .cta-buttons .btn { width: 100%; max-width: 340px; }

  /* VSL vídeo */
  .vsl-wrap { border-radius: var(--r-lg); }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem 1.25rem; }
  .footer-links { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-brand { align-items: center; text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; padding: 1.25rem; gap: .5rem; }

  /* Float CTA */
  .float-cta { left: 1rem; right: 1rem; bottom: 1rem; }
  .float-cta a { justify-content: center; font-size: .85rem; padding: .875rem 1rem; }
}

/* ── Tablet (640px – 1023px) ── */
@media (min-width: 640px) and (max-width: 1023px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--ocean);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255,255,255,.85);
    padding: .875rem 2rem;
    border-radius: var(--r-pill);
    width: 100%;
    text-align: center;
  }
  .mobile-cta {
    background: var(--gold) !important;
    color: var(--ocean) !important;
    font-weight: 800 !important;
    margin-top: 1rem;
  }
  .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hamburger span { transition: all .3s var(--ease-out); }

  .hero-content { grid-template-columns: 1fr; padding: 7rem 2rem 4rem; text-align: center; }
  .hero-gallery { display: none; }
  .hero-title { font-size: clamp(2.2rem, 5vw, 3rem); }
  .hero-badge { margin: 0 auto 1.25rem; }
  .hero-tags { justify-content: center; }
  .hero-actions { justify-content: center; }

  .section-container { gap: 2.5rem; }
  .sobre .section-container { flex-direction: column; }
  .sobre-media { width: 100%; }
  .sobre-grid { height: 360px; }
  .sobre-float-card { right: 0; }
  .sobre-text { text-align: center; }
  .sobre-highlights { justify-content: center; }
  .sobre-text .btn { display: inline-flex; }

  .beneficios-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; }
  .depoimentos-grid { grid-template-columns: repeat(2, 1fr); }
  .seguranca .section-container { flex-direction: column; }
  .anfitria-content { flex-direction: column; text-align: center; gap: 2.5rem; }
  .anfitria-img-wrap { margin: 0 auto; }
  .anfitria-badges { justify-content: center; }
  .localizacao-content { grid-template-columns: 1fr; }
  .cta-buttons { flex-wrap: wrap; justify-content: center; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-links { grid-template-columns: repeat(3, 1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── Desktop (≥ 1024px) ── */
@media (min-width: 1024px) {
  .hamburger { display: none; }
  .mobile-menu { display: none !important; }
  .nav-links { display: flex; }
  .gallery-masonry { grid-template-columns: repeat(4, 1fr); }
}
