:root {
  --navy: #102b46;
  --navy-dark: #1A1A3F;
  --gold: #f6ad22;
  --gold-dark: #df980d;
  --sand: #f6efe3;
  --soft: #f7f8fa;
  --white: #ffffff;
  --text: #1f2b37;
  --muted: #6d7884;
  --line: rgba(16, 43, 70, .12);
  --shadow: 0 24px 60px rgba(10, 32, 52, .16);
  --radius: 26px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font-family: inherit;
}

.topbar {
  width: 100%;
  height: 72px;
  background: #1A1A3F;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 46px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  max-width: 220px;
  height: 72px;
  overflow: hidden;
}

.logo-img {
  display: block;
  max-height: 62px;
  max-width: 245px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  margin-left: auto;
  white-space: nowrap;
}

.menu a {
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
}

.menu a:hover {
  color: var(--gold);
}

.menu-btn {
  display: none;
  background: transparent;
  border: 0;
  width: 42px;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 30px;
  height: 3px;
  margin: 6px 0;
  background: #ffffff;
  border-radius: 99px;
}

.btn {
  border: 0;
  background: var(--gold);
  color: #1A1A3F;
  padding: 16px 28px;
  border-radius: 9px;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transition: .25s ease;
  box-shadow: 0 12px 24px rgba(246, 173, 34, .22);
  text-transform: uppercase;
  letter-spacing: .4px;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--gold-dark);
}

.btn-small {
  padding: 12px 18px;
  font-size: 14px;
}

.btn-outline {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.45);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy-dark);
}

.btn-full { width: 100%; }

.hero {
  min-height: 780px;
  position: relative;
  display: grid;
  place-items: center;
  padding: 150px 24px 130px;
  color: var(--white);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background:
    linear-gradient(90deg, rgba(16, 43, 70, .78), rgba(16, 43, 70, .20)),
    url("https://images.unsplash.com/photo-1597304058406-b30404697a9b?auto=format&fit=crop&w=2200&q=80");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  background:
    radial-gradient(circle at 20% 30%, rgba(246,173,34,.22), transparent 26%),
    linear-gradient(180deg, rgba(11,33,55,.12), rgba(11,33,55,.70));
}

.hero-content {
  width: min(1120px, 100%);
  position: relative;
  z-index: 2;
  margin-top: 40px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(44px, 7vw, 86px);
  line-height: .94;
  max-width: 760px;
}

.hero p {
  max-width: 700px;
  font-size: 20px;
  line-height: 1.7;
  margin: 25px 0 34px;
  color: rgba(255,255,255,.92);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.booking-card {
  position: absolute;
  z-index: 5;
  bottom: -48px;
  width: min(980px, calc(100% - 32px));
  background: var(--white);
  color: var(--text);
  padding: 18px;
  border-radius: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.35fr;
  gap: 12px;
  box-shadow: var(--shadow);
}

.field {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 10px 12px;
}

.field label {
  display: block;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 5px;
}

.field input,
.field select {
  width: 100%;
  border: 0;
  background: transparent;
  outline: 0;
  color: var(--text);
  font-size: 15px;
}

.booking-btn { height: 100%; }

.section {
  padding: 110px 24px;
}

.container {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.intro { padding-top: 140px; }

.intro-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

h2 {
  font-family: "Playfair Display", serif;
  color: var(--navy);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  margin-bottom: 20px;
}

.section-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 46px;
}

.section-title p,
.intro p,
.location-grid p,
.final-cta p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.feature-grid article,
.benefits article {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(16, 43, 70, .07);
}

.feature-grid h3,
.benefits h3,
.tip-card h3,
.room-content h3 {
  color: var(--navy);
  font-size: 22px;
  margin-bottom: 10px;
}

.feature-grid p,
.benefits p,
.tip-card p,
.room-content p,
.room-content li {
  color: var(--muted);
  line-height: 1.65;
}

.navy-section {
  background:
    radial-gradient(circle at top left, rgba(246, 173, 34, .20), transparent 28%),
    var(--navy-dark);
  color: var(--white);
}

.section-title.light h2,
.section-title.light p { color: var(--white); }

.room-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.room-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--text);
  box-shadow: 0 22px 50px rgba(0,0,0,.18);
}

.room-image {
  min-height: 250px;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  color: var(--white);
  font-weight: 800;
  background-size: cover;
  background-position: center;
  position: relative;
}

.room-image::before,
.tip-image::before,
.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(11,33,55,.65));
}

.room-image span,
.gallery-item span {
  position: relative;
  z-index: 2;
}

.room-1 { background-image: url("https://images.unsplash.com/photo-1560185007-c5ca9d2c0862?auto=format&fit=crop&w=1200&q=80"); }
.room-2 { background-image: url("https://images.unsplash.com/photo-1583847268964-b28dc8f51f92?auto=format&fit=crop&w=1200&q=80"); }
.room-3 { background-image: url("https://images.unsplash.com/photo-1631049307264-da0ec9d70304?auto=format&fit=crop&w=1200&q=80"); }

.room-content { padding: 26px; }
.room-content ul { margin: 18px 0 24px 18px; }

.gallery {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  grid-template-rows: 260px 260px;
  gap: 18px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  color: var(--white);
  font-size: 24px;
  font-weight: 800;
}

.g1 { grid-row: span 2; background-image: url("https://images.unsplash.com/photo-1618220179428-22790b461013?auto=format&fit=crop&w=1400&q=80"); }
.g2 { background-image: url("https://images.unsplash.com/photo-1556912172-45b7abe8b7e1?auto=format&fit=crop&w=1000&q=80"); }
.g3 { background-image: url("https://images.unsplash.com/photo-1620626011761-996317b8d101?auto=format&fit=crop&w=1000&q=80"); }
.g4 { background-image: url("https://images.unsplash.com/photo-1523217582562-09d0def993a6?auto=format&fit=crop&w=1000&q=80"); }
.g5 { background-image: url("https://images.unsplash.com/photo-1554995207-c18c203602cb?auto=format&fit=crop&w=1000&q=80"); }

.sand-section { background: var(--sand); }

.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.tip-card {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 14px 40px rgba(16, 43, 70, .07);
}

.tip-image {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.tip-card div:last-child { padding: 24px; }

.tip-1 { background-image: url("https://images.unsplash.com/photo-1597304058406-b30404697a9b?auto=format&fit=crop&w=1000&q=80"); }
.tip-2 { background-image: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1000&q=80"); }
.tip-3 { background-image: url("https://images.unsplash.com/photo-1500375592092-40eb2168fd21?auto=format&fit=crop&w=1000&q=80"); }
.tip-4 { background-image: url("https://images.unsplash.com/photo-1519046904884-53103b34b206?auto=format&fit=crop&w=1000&q=80"); }
.tip-5 { background-image: url("https://images.unsplash.com/photo-1555396273-367ea4eb4db5?auto=format&fit=crop&w=1000&q=80"); }
.tip-6 { background-image: url("https://images.unsplash.com/photo-1473186578172-c141e6798cf4?auto=format&fit=crop&w=1000&q=80"); }

.reviews-section {
  background: var(--soft);
  overflow: hidden;
}

.reviews-track-wrapper {
  width: 100%;
  overflow: hidden;
  padding: 10px 0 20px;
}

.reviews-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: reviewScroll 34s linear infinite;
}

.review-card {
  width: 380px;
  min-height: 230px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 14px 36px rgba(16, 43, 70, .07);
}

.stars {
  color: #f5c400;
  font-size: 24px;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.review-card p {
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 22px;
}

.review-card strong {
  display: block;
  color: var(--navy);
}

.review-card span {
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}

@keyframes reviewScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.location-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 36px;
  align-items: center;
}

.location-grid p { margin-bottom: 26px; }

.map-card {
  min-height: 370px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(16,43,70,.88), rgba(16,43,70,.45)),
    url("https://images.unsplash.com/photo-1529320011550-48ac13f8d6d4?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
  display: grid;
  place-items: center;
  color: var(--white);
  text-align: center;
  padding: 30px;
  box-shadow: var(--shadow);
}

.map-card span {
  display: block;
  font-size: 28px;
  font-weight: 800;
}

.map-card small {
  display: block;
  margin-top: 12px;
  opacity: .86;
}

.final-cta {
  padding: 90px 24px;
  background:
    radial-gradient(circle at 15% 20%, rgba(246, 173, 34, .23), transparent 26%),
    var(--navy-dark);
  color: var(--white);
  text-align: center;
}

.final-cta h2 { color: var(--white); }

.final-cta p {
  color: rgba(255,255,255,.82);
  margin-bottom: 30px;
}

.footer {
  background: var(--navy);
  color: var(--white);
  padding: 58px 24px 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.footer h4 {
  color: var(--gold);
  margin-bottom: 15px;
}

.footer p,
.footer a {
  display: block;
  color: rgba(255,255,255,.78);
  margin-bottom: 10px;
}

.footer-logo {
  max-width: 210px;
  max-height: 62px;
  object-fit: contain;
}

.copyright {
  width: min(1180px, 100%);
  margin: 30px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  text-align: center;
  color: rgba(255,255,255,.65);
  font-size: 14px;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 0;
  background: #25d366;
  color: var(--white);
  font-size: 34px;
  z-index: 120;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(37, 211, 102, .35);
  transition: .25s;
}

.whatsapp-float:hover { transform: scale(1.06); }

@media (max-width: 980px) {
  .topbar {
    padding: 0 18px;
  }

  .brand {
    max-width: 175px;
  }

  .logo-img {
    max-height: 46px;
    max-width: 160px;
  }

  .menu-btn {
    display: block;
  }

  .menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    width: 100%;
    background: #1A1A3F;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,.28);
    z-index: 10000;
    white-space: normal;
  }

  .menu.active,
  .menu.ativo {
    display: flex;
  }

  .menu a {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.4;
  }

  .menu .btn {
    width: 100%;
    justify-content: center;
  }

  .booking-card {
    position: relative;
    bottom: auto;
    margin-top: 40px;
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    padding-bottom: 70px;
  }

  .intro {
    padding-top: 90px;
  }

  .intro-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .room-grid,
  .tips-grid {
    grid-template-columns: 1fr 1fr;
  }

  .benefits {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: auto;
    padding: 120px 18px 50px;
  }

  .hero p {
    font-size: 17px;
  }

  .booking-card {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 76px 18px;
  }

  .room-grid,
  .tips-grid,
  .benefits,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .gallery-item {
    min-height: 230px;
  }

  .g1 {
    grid-row: auto;
  }

  .review-card {
    width: 305px;
  }
}
