:root {
  /* Paleta reggae equilibrada: verde predominante, dourado nos destaques e vermelho pontual. */
  --bg: #fffaf0;
  --surface: #fffef9;
  --surface-alt: #f3f1df;
  --text: #173126;
  --muted: #5d6b62;
  --primary: #176b3a;
  --primary-dark: #0c4528;
  --primary-soft: #dcebdd;
  --accent: #f2c744;
  --accent-dark: #c69412;
  --reggae-red: #c83e36;
  --reggae-red-dark: #9f2d28;
  --border: rgba(23, 107, 58, 0.16);
  --shadow: 0 20px 50px rgba(12, 69, 40, 0.11);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1180px;
}


.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 48, 29, 0.14) 0%, rgba(6, 48, 29, 0.46) 58%, rgba(5, 34, 22, 0.78) 100%),
    linear-gradient(90deg, rgba(200, 62, 54, 0.08), rgba(242, 199, 68, 0.05), rgba(23, 107, 58, 0.08));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 20px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--accent);
  font-weight: 800;
  text-shadow: 0 2px 14px rgba(0,0,0,.28);
}
.hero-tag::before,
.hero-tag::after {
  content: '';
  width: 30px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--reggae-red), var(--accent), var(--primary));
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  margin-bottom: 12px;
  color: #fff;
  text-shadow: 0 5px 26px rgba(0,0,0,.34);
}

.hero p {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  margin-bottom: 30px;
  color: rgba(255,255,255,.94);
  text-shadow: 0 2px 16px rgba(0,0,0,.32);
}


* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
img { max-width: 100%; display: block; border-radius: var(--radius-lg); }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 16px; color: var(--muted); }
h1, h2, h3, h4 { margin: 0 0 14px; line-height: 1.15; color: var(--text); }
h1 { font-size: clamp(2.2rem, 5vw, 4.4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: 1.15rem; }
small { color: var(--muted); }

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}
.section-padding { padding: 88px 0; }
.section-alt {
  background:
    radial-gradient(circle at 10% 10%, rgba(242, 199, 68, .13), transparent 28%),
    radial-gradient(circle at 90% 85%, rgba(23, 107, 58, .10), transparent 30%),
    var(--surface-alt);
}
.section-dark {
  position: relative;
  background:
    radial-gradient(circle at 12% 18%, rgba(242, 199, 68, .15), transparent 30%),
    radial-gradient(circle at 88% 82%, rgba(200, 62, 54, .14), transparent 34%),
    linear-gradient(135deg, #092f1d 0%, var(--primary-dark) 48%, var(--primary) 100%);
  color: #fff;
  overflow: hidden;
}
.section-dark::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0 33.33%, var(--accent) 33.33% 66.66%, var(--reggae-red) 66.66% 100%);
}
.section-dark > .container { position: relative; z-index: 1; }
.section-dark h2,
.section-dark h3,
.section-dark p,
.section-dark .eyebrow,
.section-dark .feature-card,
.section-dark .feature-card p { color: #fff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(255, 250, 240, 0.92);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 28px rgba(12, 69, 40, .05);
}
.site-header::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0 33.33%, var(--accent) 33.33% 66.66%, var(--reggae-red) 66.66% 100%);
  opacity: .88;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 84px;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}
.brand-header { line-height: 0; }
.brand-logo {
  display: block;
  width: auto;
  height: 68px;
  object-fit: contain;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav > a:not(.btn) {
  font-weight: 600;
  color: var(--muted);
}
.main-nav > a:not(.btn):hover { color: var(--primary); }
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  font-size: 1.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: .25s ease;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible {
  outline: 3px solid rgba(242, 199, 68, .55);
  outline-offset: 3px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 12px 28px rgba(12, 69, 40, .22);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #1e7b46, var(--primary-dark));
  box-shadow: 0 15px 32px rgba(12, 69, 40, .28);
}
.hero .btn-primary {
  background: linear-gradient(135deg, #f8d85d, var(--accent));
  color: #183126;
  border-color: rgba(255,255,255,.28);
  box-shadow: 0 14px 34px rgba(0,0,0,.25);
}
.hero .btn-secondary {
  color: #fff;
  border-color: rgba(255,255,255,.82);
  background: rgba(8, 49, 30, .34);
  backdrop-filter: blur(8px);
}
.hero .btn-secondary:hover { background: rgba(8, 49, 30, .58); }
.btn-secondary {
  border-color: rgba(23, 107, 58, .24);
  color: var(--primary-dark);
  background: rgba(255,255,255,.78);
}
.btn-secondary:hover {
  border-color: var(--accent-dark);
  background: #fffdf4;
}
.btn-white {
  background: linear-gradient(135deg, #fffef7, #f8dfa0);
  color: var(--primary-dark);
  border-color: rgba(242, 199, 68, .45);
  font-weight: 800;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  font-size: .9rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 800;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--reggae-red));
}
.hero-grid,
.two-col,
.contact-grid,
.split-highlight {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 36px;
  align-items: center;
}
.hero-copy p { font-size: 1.05rem; max-width: 62ch; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 24px;
}
.hero-highlights,
.check-list,
.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-highlights span,
.check-list span,
.contact-points span {
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
}
.card-surface {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-visual,
.image-panel,
.map-card,
.contact-form { padding: 14px; }
.section-heading { margin-bottom: 34px; max-width: 760px; }
.section-heading.center { text-align: center; margin-inline: auto; }
.section-heading.light p { color: rgba(255,255,255,.88); }
.feature-grid,
.rooms-grid,
.gallery-grid,
.footer-grid,
.specs-grid,
.modes-grid,
.related-grid {
  display: grid;
  gap: 22px;
}
.feature-grid { grid-template-columns: repeat(4, 1fr); }
.feature-card {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-lg);
  padding: 24px;
  backdrop-filter: blur(5px);
}
.feature-card:nth-child(3n + 1) { border-top-color: rgba(23, 107, 58, .9); }
.feature-card:nth-child(3n + 2) { border-top-color: rgba(242, 199, 68, .9); }
.feature-card:nth-child(3n) { border-top-color: rgba(200, 62, 54, .85); }
.rooms-grid { grid-template-columns: repeat(2, 1fr); }
.room-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .28s ease, box-shadow .28s ease;
}
.room-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  z-index: 2;
  background: linear-gradient(90deg, var(--primary) 0 33.33%, var(--accent) 33.33% 66.66%, var(--reggae-red) 66.66% 100%);
}
.room-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 60px rgba(12, 69, 40, .15);
}
.room-card-content { padding: 24px; }
.room-card ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 22px;
  display: grid;
  gap: 8px;
  color: var(--muted);
}
.room-card li::before {
  content: '•';
  color: var(--primary);
  margin-right: 8px;
}
.gallery-grid { grid-template-columns: repeat(3, 1fr); }
.gallery-grid img { aspect-ratio: 1 / .82; object-fit: cover; }
.three-up img { aspect-ratio: 1 / .75; }
.info-stack { display: grid; gap: 12px; margin: 24px 0; }
.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  border-radius: calc(var(--radius-xl) - 6px);
}
.form-section { align-items: start; }
.contact-form {
  display: grid;
  gap: 16px;
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.14);
}
.light-form label,
.light-form input,
.light-form select,
.light-form textarea { color: #fff; }
.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.22);
  padding: 14px 16px;
  background: rgba(255,255,255,.08);
  font: inherit;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,.72); }
.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.site-footer {
  position: relative;
  background: #082619;
  color: rgba(255,255,255,.88);
  padding-top: 40px;
}
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--primary) 0 33.33%, var(--accent) 33.33% 66.66%, var(--reggae-red) 66.66% 100%);
}
.site-footer .brand strong,
.site-footer h4,
.site-footer a { color: #fff; }
.footer-grid {
  grid-template-columns: 1.3fr .8fr .8fr .9fr;
  align-items: start;
  padding-bottom: 28px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-bottom {
  padding: 18px 0 28px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.footer-bottom p { margin: 0; color: rgba(255,255,255,.7); }
.footer-brand {
  margin-bottom: 18px;
  line-height: 0;
}
.brand-logo-footer {
  width: min(190px, 100%);
  height: auto;
}

.room-hero { padding-top: 72px; }
.breadcrumb {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--primary);
  font-weight: 700;
}
.specs-grid { grid-template-columns: repeat(4, 1fr); }
.spec-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}
.spec-box strong { display: block; margin-bottom: 8px; }
.spec-box span { color: var(--muted); }
.modes-grid { grid-template-columns: repeat(3, 1fr); }
.mode-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}
.cta-panel {
  position: relative;
  background:
    radial-gradient(circle at 86% 18%, rgba(242, 199, 68, .18), transparent 25%),
    linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  padding: 28px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.cta-panel::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--primary) 0 33.33%, var(--accent) 33.33% 66.66%, var(--reggae-red) 66.66% 100%);
}
.cta-panel h2,
.cta-panel p,
.cta-panel .eyebrow { color: #fff; }
.related-grid { grid-template-columns: repeat(4, 1fr); }
.related-card {
  position: relative;
  padding: 20px;
  text-align: center;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
  font-weight: 700;
  transition: transform .25s ease, border-color .25s ease;
}
.related-card::after {
  content: '';
  position: absolute;
  left: 20%;
  right: 20%;
  bottom: 10px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--reggae-red));
  opacity: .55;
}
.related-card:hover { transform: translateY(-3px); border-color: rgba(242, 199, 68, .65); }
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1f8b4c, var(--primary-dark));
  border: 1px solid rgba(255,255,255,.32);
  box-shadow: 0 16px 34px rgba(12, 69, 40, .28);
  font-weight: 800;
  color: #fff;
}
.whatsapp-float::before {
  content: '●';
  margin-right: 7px;
  color: var(--accent);
}
.whatsapp-float:hover { transform: translateY(-3px); }

::selection {
  background: var(--accent);
  color: var(--primary-dark);
}

.room-card h3,
.spec-box strong,
.mode-card h3 {
  color: var(--primary-dark);
}

.room-card li::marker { color: var(--reggae-red); }

@media (max-width: 980px) {
  .main-nav {
    position: absolute;
    top: 84px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 250, 240, 0.98);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .hero-grid,
  .two-col,
  .contact-grid,
  .split-highlight,
  .footer-grid,
  .feature-grid,
  .gallery-grid,
  .specs-grid,
  .modes-grid,
  .related-grid,
  .rooms-grid,
  .form-row {
    grid-template-columns: 1fr;
  }
  .cta-panel { flex-direction: column; align-items: start; }
}

@media (max-width: 640px) {
  .nav-wrap { min-height: 76px; }
  .brand-logo { height: 56px; }
  .brand-logo-footer { width: 170px; height: auto; }
  .section-padding { padding: 68px 0; }
  .container { width: min(var(--container), calc(100% - 22px)); }
  .hero-actions,
  .hero-highlights,
  .check-list,
  .contact-points { gap: 8px; }
  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    padding: 12px 16px;
  }
}

/* Galeria de detalhes da página do quarto Resende */
.room-detail-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 30px;
}
.room-detail-photo {
  margin: 0;
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 14px 36px rgba(12, 69, 40, .10);
}
.room-detail-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .35s ease;
}
.room-detail-photo:hover img { transform: scale(1.025); }

@media (max-width: 980px) {
  .room-detail-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 520px) {
  .room-detail-gallery {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 24px;
  }
  .room-detail-photo { border-radius: 14px; }
  .room-detail-photo img { aspect-ratio: 4 / 3; }
}
