@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&family=Raleway:wght@500;600;700;800&display=swap');

:root {
  --dark: #123b46;
  --deep: #0c2b33;
  --gold: #c79a4a;
  --cream: #f7f4ed;
  --text: #314047;
  --muted: #68757a;
  --white: #fff;
  --shadow: 0 18px 45px rgba(13, 43, 51, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.7;
  background: #fff;
}

img {
  max-width: 100%;
  display: block;
}

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

.container {
  width: min(1160px, calc(100% - 40px));
  margin: auto;
}

.topbar {
  background: var(--deep);
  color: #dce5e7;
  font-size: 13px;
}

.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.topbar a:hover {
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 2px 16px rgba(0, 0, 0, .06);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--dark);
}

/* LOGOTIPO RESPONSIVO */
.brand img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  font-family: Raleway;
  font-weight: 800;
  font-size: 13px;
}

.brand strong {
  display: block;
  font-family: Raleway;
  font-size: 15px;
  letter-spacing: .2px;
}

.brand small {
  display: block;
  color: #8a9497;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.menu {
  display: flex;
  align-items: center;
  gap: 27px;
  font-family: Raleway;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .3px;
}

.menu a {
  padding: 29px 0;
  position: relative;
}

.menu a:not(.nav-cta):after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 21px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: .25s;
}

.menu a:not(.nav-cta):hover:after {
  width: 100%;
}

.nav-cta {
  padding: 11px 18px !important;
  background: var(--gold);
  color: #fff;
  border-radius: 2px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: none;
  font: 700 14px Raleway;
  color: var(--dark);
}

.hero {
  min-height: 650px;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8, 34, 41, .83) 0%,
    rgba(8, 34, 41, .58) 48%,
    rgba(8, 34, 41, .18) 100%
  );
}

.hero-content {
  position: relative;
  color: #fff;
  padding: 90px 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 11px;
  font-weight: 800;
  margin: 0 0 13px;
  color: #e7dcc8;
}

.eyebrow.accent {
  color: var(--gold);
}

h1,
h2,
h3 {
  font-family: Raleway, Arial, sans-serif;
  line-height: 1.15;
  margin: 0;
  color: var(--dark);
}

h1 {
  font-size: clamp(42px, 6vw, 72px);
  max-width: 760px;
  color: #fff;
  font-weight: 700;
  letter-spacing: -1.5px;
}

h2 {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
}

h3 {
  font-size: 21px;
}

.hero-text {
  font-size: 17px;
  max-width: 600px;
  color: #eef2f1;
  margin: 22px 0 32px;
}

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

.btn {
  display: inline-block;
  padding: 13px 23px;
  font-family: Raleway;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .8px;
  border-radius: 2px;
  transition: .25s;
}

.btn-primary {
  background: var(--gold);
  color: #fff;
}

.btn-primary:hover {
  background: #ae8338;
}

.btn-light {
  background: #fff;
  color: var(--dark);
}

.btn-light:hover {
  background: #f1eee6;
}

.section {
  padding: 100px 0;
}

.intro {
  background: var(--cream);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 90px;
  align-items: center;
}

.intro p:not(.eyebrow) {
  color: var(--muted);
  max-width: 680px;
}

.feature-card {
  background: #fff;
  padding: 40px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
}

.feature-number {
  font: 700 12px Raleway;
  color: var(--gold);
  letter-spacing: 2px;
}

.feature-card h3 {
  margin: 6px 0 7px;
  font-size: 19px;
}

.feature-card p {
  font-size: 14px;
  margin: 0 0 20px;
  color: var(--muted);
}

.feature-line {
  height: 1px;
  background: #e5e0d7;
  margin: 24px 0;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 50px;
  margin-bottom: 45px;
}

.section-heading > p {
  max-width: 430px;
  color: var(--muted);
  margin: 0;
}

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

.room-card {
  background: #fff;
  box-shadow: 0 10px 35px rgba(0, 0, 0, .08);
  transition: .25s;
}

.room-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.room-card img {
  width: 100%;
  height: 245px;
  object-fit: cover;
}

.room-body {
  padding: 27px;
}

.room-body h3 {
  margin-bottom: 12px;
}

.room-body p {
  font-size: 14px;
  color: var(--muted);
  min-height: 72px;
}

.room-body span {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: .7px;
}

.highlight {
  background: var(--dark);
  color: #fff;
  padding: 65px 0;
}

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

.highlight h2 {
  color: #fff;
}

.highlight p:not(.eyebrow) {
  color: #d5e0e2;
  max-width: 650px;
}

.hours {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 11px 25px;
  border-left: 1px solid rgba(255, 255, 255, .2);
  padding-left: 40px;
}

.hours strong {
  font-family: Raleway;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #e1c98e;
}

.hours span {
  font-size: 14px;
  color: #dbe3e4;
}

.gallery {
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  grid-auto-rows: 220px;
  gap: 12px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-grid img:first-child {
  grid-row: span 2;
}

.info {
  background: var(--cream);
}

.info-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 80px;
  align-items: center;
}

.info p:not(.eyebrow) {
  color: var(--muted);
  max-width: 650px;
  margin: 18px 0 28px;
}

.contact-box {
  background: #fff;
  padding: 34px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 22px;
}

.contact-box small {
  display: block;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 10px;
  color: var(--gold);
  font-weight: 800;
}

.contact-box a,
.contact-box strong {
  font-family: Raleway;
  font-size: 19px;
  color: var(--dark);
}

footer {
  background: var(--deep);
  color: #d9e2e3;
  padding: 42px 0 22px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner strong {
  display: block;
  font-family: Raleway;
  color: #fff;
}

.footer-inner span {
  font-size: 12px;
  color: #aebdc0;
}

.footer-inner a {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 30px;
  padding-top: 18px;
  font-size: 11px;
  color: #8fa1a5;
}


/* RESPONSIVO ORIGINAL */
@media (max-width: 900px) {

  .menu-toggle {
    display: block;
  }

  .menu {
    display: none;
    position: absolute;
    top: 120px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 12px 20px 22px;
    box-shadow: 0 12px 20px rgba(0, 0, 0, .08);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .menu.open {
    display: flex;
  }

  .menu a {
    padding: 13px 0;
  }

  .menu a:not(.nav-cta):after {
    display: none;
  }

  .nav-cta {
    text-align: center;
  }

  .intro-grid,
  .highlight-grid,
  .info-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

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

  .section-heading {
    display: block;
  }

  .section-heading > p {
    margin-top: 15px;
  }

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

  .gallery-grid img:first-child {
    grid-row: span 1;
  }

  .hero {
    min-height: 590px;
  }

  /* LOGOTIPO RESPONSIVO - TABLET */
  .brand img {
    max-width: 220px;
    max-height: 55px;
  }

}


/* RESPONSIVO ORIGINAL */
@media (max-width: 600px) {

  .container {
    width: min(100% - 28px, 1160px);
  }

  .topbar-inner {
    justify-content: center;
    gap: 14px;
    font-size: 11px;
  }

  .topbar-inner span {
    display: none;
  }

  .nav {
    min-height: 72px;
  }

  .brand strong {
    font-size: 13px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero-content {
    padding: 70px 0;
  }

  .hero {
    min-height: 600px;
  }

  .hero-text {
    font-size: 15px;
  }

  .section {
    padding: 70px 0;
  }

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

  .room-card img {
    height: 230px;
  }

  .gallery-grid {
    grid-auto-rows: 240px;
  }

  .hours {
    padding-left: 20px;
  }

  .footer-inner {
    display: block;
  }

  .footer-inner > a {
    display: inline-block;
    margin-top: 20px;
  }

  /* LOGOTIPO RESPONSIVO - CELULAR */
  .brand img {
    max-width: 180px;
    max-height: 48px;
  }

}


/* Fundo exclusivo da seção Localização */
.location-section {
  background: linear-gradient(135deg, #eef6f5 0%, #dceceb 100%);
  border-top: 1px solid rgba(35, 93, 90, 0.12);
  border-bottom: 1px solid rgba(35, 93, 90, 0.12);
}

.location-section .section-title,
.location-section h2,
.location-section h3 {
  color: #245b58;
}

.location-section .map-wrapper,
.location-section iframe {
  border-radius: 14px;
}