:root {
  --bg: #f6f6f4;
  --card: #ffffff;
  --accent: #2f7164;
  --accent-2: #f1b24a;
  --text: #1c1c1c;
  --muted: #5c5c5c;
  --shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  --radius: 18px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Work Sans", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

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

h1,
h2,
h3 {
  font-family: "Playfair Display", "Times New Roman", serif;
  margin: 0 0 10px;
}

p {
  margin: 0 0 12px;
  color: var(--muted);
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 5vw;
  color: #fff;
  background: rgba(15, 42, 46, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.nav.is-scrolled {
  background: rgba(15, 42, 46, 0.92);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand__logo {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.brand__title {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.brand__subtitle {
  font-size: 12px;
  opacity: 0.85;
  margin: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
}

.nav__links a {
  font-weight: 500;
}

.nav__links a:hover {
  color: var(--accent-2);
}

.nav__cta {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-weight: 600;
  color: #fff;
}

.nav__toggle {
  display: none;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 18px;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 5vw 120px;
  display: grid;
  align-items: center;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 40%), #0f2a2e;
  color: #fff;
  overflow: hidden;
}

.hero__content {
  max-width: 620px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(32px, 4vw + 12px, 54px);
  line-height: 1.05;
  margin-bottom: 14px;
}

.hero p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 14px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.hero__image {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15, 42, 46, 0.7) 30%, rgba(15, 42, 46, 0.1)), url("../img/hotel_noturno.jpg") center/cover no-repeat;
  opacity: 0.75;
}

.section {
  padding: 90px 5vw;
}

.section__heading {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

.section__heading h2 {
  font-size: clamp(26px, 2vw + 14px, 38px);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 8px;
}

.intro {
  background: #fff;
  border-radius: var(--radius);
  margin-top: -60px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 3;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.highlight {
  background: var(--bg);
  padding: 18px;
  border-radius: 14px;
}

.cards {
  background: var(--bg);
}

.card-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.card img {
  height: 200px;
  object-fit: cover;
}

.card__body {
  padding: 18px 18px 22px;
}

.features {
  background: linear-gradient(135deg, #0f2a2e, #1f4a45);
  color: #fff;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.feature {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 16px 16px 18px;
}

.feature__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  color: #fff;
}

.feature__icon svg {
  width: 22px;
  height: 22px;
}

.feature__icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.feature__icon svg {
  width: 22px;
  height: 22px;
}

.feature p {
  color: rgba(255, 255, 255, 0.85);
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: center;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
}

@media (min-width: 800px) {
  .split__image img {
    border-radius: var(--radius) 0 0 var(--radius);
  }
}

.split__content {
  padding: 24px 32px;
}

.list {
  margin-top: 12px;
}

.list li {
  padding: 8px 0;
  border-bottom: 1px dashed #e0e0e0;
}

.gallery {
  background: var(--bg);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.gallery__grid img {
  border-radius: 14px;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.gallery__cta {
  margin-top: 18px;
  text-align: center;
}

.news {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.news__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.news__card {
  background: var(--bg);
  border-radius: 14px;
  padding: 16px 18px 18px;
  border: 1px solid #ececec;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.04);
}

.news__meta {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: var(--accent);
  margin-bottom: 8px;
}

.video {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.video__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.video__card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.video__card video {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  background: #000;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video__caption {
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

.subhero {
  padding: 100px 5vw 40px;
  background: linear-gradient(135deg, #0f2a2e, #1f4a45);
  color: #fff;
}

.subhero--compact {
  padding: 24px 5vw;
}

.subhero__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.subhero__back {
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.subhero__content h1 {
  font-size: clamp(30px, 3vw + 12px, 46px);
  margin-bottom: 10px;
}

.gallery-summary {
  background: var(--bg);
  padding: 30px 5vw 10px;
}

.gallery-summary__inner {
  max-width: 960px;
  margin: 0 auto;
  background: #fff;
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.gallery-full .section {
  padding-top: 60px;
}

.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.contact__card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.contact__address {
  font-weight: 600;
  color: var(--text);
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin: 12px 0 18px;
}

.contact__label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  margin-bottom: 8px;
  color: var(--muted);
}

.contact__grid a {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.contact__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.footer {
  padding: 30px 5vw 40px;
  background: #0f2a2e;
  color: #fff;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  align-items: center;
}

.footer__links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__copy {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent), #1f4a45);
  color: #fff;
  box-shadow: 0 12px 30px rgba(47, 113, 100, 0.3);
}

.btn--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: inherit;
}

.btn:hover {
  transform: translateY(-2px);
}

.cards .btn--ghost {
  border-color: rgba(0, 0, 0, 0.12);
}

@media (max-width: 900px) {
  .nav__links {
    display: none;
    position: absolute;
    top: 64px;
    right: 5vw;
    background: rgba(15, 42, 46, 0.95);
    padding: 12px 14px;
    border-radius: 12px;
    flex-direction: column;
    width: 210px;
    box-shadow: var(--shadow);
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__toggle {
    display: inline-flex;
  }

  .nav__cta {
    display: none;
  }

  .hero {
    padding-top: 120px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

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

@media (max-width: 520px) {
  .contact__grid {
    grid-template-columns: 1fr;
  }
}
