/* ============================================================
   Hotel Walsa — Design clássico com toque moderno
   ============================================================ */

:root {
  /* Azul da logo Hotel Walsa — amostrado do gradiente do céu */
  --brand:           #428BC8;
  --brand-mid:       #4B93CF;
  --brand-light:     #5A9ED8;
  --brand-dark:      #3A7DB8;
  --brand-deep:      #2F6596;
  --brand-pale:      #EDF4FA;
  --brand-glow:      rgba(66, 139, 200, 0.2);
  --brand-gradient:    linear-gradient(180deg, #5A9ED8 0%, #4B93CF 45%, #428BC8 100%);
  --brand-gradient-h:  linear-gradient(135deg, #5A9ED8 0%, #4B93CF 45%, #428BC8 100%);
  --brand-gradient-deep: linear-gradient(180deg, #428BC8 0%, #3A7DB8 50%, #2F6596 100%);

  /* Tons derivados para textos */
  --navy:        #2F5F85;
  --navy-deep:   #2F6596;
  --navy-light:  #428BC8;
  --gold:        #b8963e;
  --gold-light:  #d4b86a;
  --gold-pale:   #f0e6cc;
  --cream:       #faf7f2;
  --cream-dark:  #f0ebe3;
  --warm-white:  #fffcf8;
  --text:        #3d3a36;
  --text-muted:  #6b6560;
  --wa-green:    #25d366;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Source Sans 3', system-ui, sans-serif;
  --shadow-soft:  0 8px 32px rgba(66, 139, 200, 0.1);
  --shadow-card:  0 12px 40px rgba(66, 139, 200, 0.14);
  --radius:       12px;
  --transition:   0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --fold-offset:  88px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.01em;
}

a { text-decoration: none; color: inherit; transition: color var(--transition); }

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

/* ---- Icons (Lucide) ---- */
.icon {
  width: 1.1em;
  height: 1.1em;
  flex-shrink: 0;
  vertical-align: -0.15em;
}
.icon-wa {
  width: 1.15em;
  height: 1.15em;
}
.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
}
.top-bar-sep {
  margin: 0 0.65rem;
  color: var(--gold);
  opacity: 0.45;
}

/* ---- Top bar ---- */
.top-bar {
  background: linear-gradient(90deg, var(--brand-pale) 0%, var(--warm-white) 50%, var(--brand-pale) 100%);
  color: var(--navy);
  font-size: 0.8rem;
  padding: 0.5rem 0;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(66, 139, 200, 0.18);
  border-top: 3px solid var(--brand-mid);
}
.top-bar a {
  color: var(--brand-dark);
  transition: color var(--transition);
}
.top-bar a:hover { color: var(--brand); }
.top-bar .icon { color: var(--brand); stroke: var(--brand); }

/* ---- Header ---- */
.site-header {
  background: var(--warm-white);
  border-bottom: 2px solid rgba(66, 139, 200, 0.15);
  position: sticky;
  top: 0;
  z-index: 1100;
  transition: box-shadow var(--transition), padding var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 4px 24px var(--brand-glow);
  border-bottom-color: rgba(66, 139, 200, 0.28);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1.5rem;
}
.brand-logo {
  height: 68px;
  width: auto;
  transition: transform var(--transition), filter var(--transition);
  filter: drop-shadow(0 2px 8px var(--brand-glow));
}
.brand:hover .brand-logo {
  transform: scale(1.02);
  filter: drop-shadow(0 4px 14px rgba(66, 139, 200, 0.35));
}

.main-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  padding: 0.25rem 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
  transition: width var(--transition);
}
.nav-link:hover,
.nav-link.active { color: var(--brand); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

/* ---- Buttons ---- */
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy-deep);
  font-weight: 600;
  border: none;
  border-radius: 50px;
  padding: 0.65rem 1.75rem;
  letter-spacing: 0.03em;
  transition: transform var(--transition), box-shadow var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.btn-gold:hover {
  color: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 150, 62, 0.35);
}

.btn-outline-gold {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
  font-weight: 600;
  border-radius: 50px;
  padding: 0.65rem 1.75rem;
  letter-spacing: 0.03em;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.btn-outline-gold:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.btn-navy {
  background: var(--brand-gradient);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  padding: 0.65rem 1.75rem;
  transition: all var(--transition);
  box-shadow: 0 4px 16px var(--brand-glow);
}
.btn-navy:hover {
  background: linear-gradient(180deg, #6AABE0 0%, #5A9ED8 45%, #4B93CF 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(66, 139, 200, 0.3);
}

.btn-wa {
  background: linear-gradient(135deg, #128c7e, var(--wa-green));
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  padding: 0.65rem 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25);
}
.btn-wa:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

/* ---- Hamburger ---- */
.btn-hamburger {
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 1100;
  cursor: pointer;
  padding: 10px 6px;
  flex-shrink: 0;
}
.btn-hamburger span {
  display: block;
  position: absolute;
  left: 6px;
  right: 6px;
  width: auto;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.btn-hamburger span:nth-child(1) { top: 14px; }
.btn-hamburger span:nth-child(2) { top: 21px; }
.btn-hamburger span:nth-child(3) { top: 28px; }
.btn-hamburger.open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.btn-hamburger.open span:nth-child(2) { opacity: 0; }
.btn-hamburger.open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 50, 80, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  z-index: 1090;
}
.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}
.mobile-menu {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  padding-top: var(--mobile-menu-top, 72px);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--warm-white);
  border-bottom: 1px solid rgba(66, 139, 200, 0.15);
  box-shadow: 0 12px 40px rgba(10, 50, 80, 0.15);
  z-index: 1095;
}
.mobile-menu.open {
  max-height: min(520px, calc(100vh - var(--mobile-menu-top, 72px)));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav {
  padding: 0.5rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-nav-link {
  display: block;
  padding: 0.95rem 0.25rem;
  font-weight: 500;
  font-size: 1rem;
  color: var(--navy);
  border-bottom: 1px solid rgba(66, 139, 200, 0.1);
  letter-spacing: 0.03em;
  transition: color var(--transition), padding-left var(--transition);
}
.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--brand);
  padding-left: 0.5rem;
}
.mobile-nav-link.active {
  font-weight: 600;
  border-bottom-color: rgba(66, 139, 200, 0.2);
}
.mobile-nav-wa {
  margin-top: 1.25rem;
  width: 100%;
  justify-content: center;
  padding: 0.85rem 1.25rem !important;
  color: #fff !important;
  border-bottom: none !important;
  font-size: 1rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}
.mobile-nav-wa .icon-wa {
  fill: #fff;
}
body.menu-open {
  overflow: hidden;
}
body.menu-open .whatsapp-float {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* ---- Section utilities ---- */
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.75rem;
}
.section-label::before,
.section-label::after {
  content: '—';
  margin: 0 0.5rem;
  opacity: 0.5;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}
.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--gold-light));
  margin: 1.25rem auto 0;
  border-radius: 2px;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  height: calc(100svh - var(--fold-offset));
  height: calc(100dvh - var(--fold-offset));
  max-height: calc(100dvh - var(--fold-offset));
  min-height: 0;
  overflow: hidden;
}
.hero .swiper,
.hero .swiper-slide {
  height: 100%;
}
.hero .swiper-slide {
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 28, 48, 0.92) 0%,
    rgba(15, 28, 48, 0.5) 45%,
    rgba(15, 28, 48, 0.2) 100%
  );
}
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  color: #fff;
  padding: 1.25rem 1.5rem 3.75rem;
  z-index: 2;
}
.hero-panel {
  background: rgba(15, 28, 48, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(212, 184, 106, 0.28);
  border-radius: 20px;
  padding: 2rem 2.5rem;
  max-width: 720px;
  width: 100%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}
.hero-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(212, 184, 106, 0.45);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.85rem;
  text-shadow: none;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}
.hero-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,0.9);
  max-width: 520px;
  margin: 0 auto 1.5rem;
  font-weight: 300;
  line-height: 1.6;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 0.65rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.55);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  pointer-events: none;
  animation: bounce 2s infinite;
}
.hero .swiper-pagination {
  bottom: 2.35rem !important;
  z-index: 3;
}

.hero-scroll .icon { width: 1.25rem; height: 1.25rem; opacity: 0.7; }

.hero .swiper-button-prev,
.hero .swiper-button-next {
  color: rgba(255,255,255,0.75);
  width: 44px;
  height: 44px;
  background: rgba(15, 28, 48, 0.35);
  border-radius: 50%;
  backdrop-filter: blur(6px);
  transition: all var(--transition);
}
.hero .swiper-button-prev::after,
.hero .swiper-button-next::after {
  font-size: 1rem;
  font-weight: 700;
}
.hero .swiper-button-prev:hover,
.hero .swiper-button-next:hover {
  color: var(--gold-light);
  background: rgba(15, 28, 48, 0.55);
}
.hero .swiper-pagination-bullet {
  background: rgba(255,255,255,0.5);
  width: 10px;
  height: 10px;
}
.hero .swiper-pagination-bullet-active {
  background: var(--gold);
  width: 28px;
  border-radius: 5px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(5px); }
}

/* ---- Stats bar ---- */
.stats-bar {
  background: var(--brand-gradient);
  color: #fff;
  padding: 2.5rem 0;
  margin-top: -1px;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.stat-icon .icon {
  width: 2.2rem;
  height: 2.2rem;
  color: #fff;
  stroke: #fff;
  opacity: 0.9;
}
.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat-label {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-top: 0.35rem;
}

/* ---- About ---- */
.about-section {
  padding: 6rem 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.about-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(184,150,62,0.12);
  border-radius: 50%;
}
.about-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.about-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 1s ease;
}
.about-image:hover img { transform: scale(1.04); }
.about-image-frame {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(212, 184, 106, 0.35);
  border-radius: calc(var(--radius) - 4px);
  pointer-events: none;
}
.about-year {
  position: absolute;
  bottom: -20px;
  right: 30px;
  background: var(--gold);
  color: var(--navy-deep);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  box-shadow: var(--shadow-soft);
  letter-spacing: 0.05em;
}
.about-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.about-quote {
  border-left: 3px solid var(--brand);
  padding: 1rem 0 1rem 1.5rem;
  margin: 2rem 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--navy);
}

/* ---- Amenities strip ---- */
.amenities-strip {
  padding: 3.5rem 0;
  background: var(--warm-white);
  border-top: 1px solid rgba(184,150,62,0.1);
  border-bottom: 1px solid rgba(184,150,62,0.1);
}
.amenity-item {
  text-align: center;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.amenity-item .icon {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--brand);
  stroke: var(--brand);
}
.amenity-item span {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.03em;
}

/* ---- Rooms ---- */
.rooms-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--warm-white) 0%, var(--cream-dark) 100%);
}
.room-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.room-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
}
.room-card-image {
  position: relative;
  overflow: hidden;
  height: 260px;
}
.room-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.room-card:hover .room-card-image img { transform: scale(1.08); }
.room-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
}
.room-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.room-card-body h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.room-card-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  flex: 1;
}
.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}
.room-feature {
  font-size: 0.78rem;
  background: var(--brand-pale);
  color: var(--brand-deep);
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  font-weight: 500;
}

/* ---- CTA banner ---- */
.cta-banner {
  padding: 5.5rem 0;
  background: var(--brand-gradient-deep);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('img/o_walsa_hotel.jpg') center/cover no-repeat;
  opacity: 0.1;
}
.cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(47, 101, 150, 0.35) 100%);
  pointer-events: none;
}
.cta-banner .container {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.cta-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(212, 184, 106, 0.45);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}
.cta-banner h2 {
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 1.1rem;
  line-height: 1.2;
}
.cta-lead {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7;
  margin: 0 auto 1rem;
}
.cta-trust {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.65);
  font-weight: 600;
  border-radius: 50px;
  padding: 0.65rem 1.75rem;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

/* ---- Gallery ---- */
.gallery-section { padding: 5rem 0; background: var(--cream); }
.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.gallery-tab {
  background: transparent;
  border: 1px solid rgba(184,150,62,0.3);
  color: var(--navy);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
}
.gallery-tab:hover,
.gallery-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 28, 48, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay i {
  color: #fff;
  font-size: 2rem;
  transform: scale(0.7);
  transition: transform var(--transition);
}
.gallery-item:hover .gallery-item-overlay i { transform: scale(1); }

/* ---- Location ---- */
.location-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
}
.location-map-bg {
  position: absolute;
  inset: 0;
}
.location-map-bg iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(40%) brightness(75%);
}
.location-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,28,48,0.7), rgba(26,45,74,0.55));
}
.location-content {
  position: relative;
  z-index: 2;
  padding: 5rem 0;
}
.location-card {
  background: var(--warm-white);
  border-radius: var(--radius);
  padding: 3rem;
  max-width: 560px;
  box-shadow: var(--shadow-card);
  border-top: 4px solid var(--brand);
}
.location-card h2 { margin-bottom: 1rem; }
.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  color: var(--text-muted);
}
.location-detail i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
}
.location-tagline {
  text-align: center;
  color: rgba(255,255,255,0.85);
  margin-top: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.location-tagline h4 {
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 1.6rem;
}

/* ---- Contact ---- */
.contact-section { padding: 5rem 0; background: var(--warm-white); }
.contact-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
  height: 100%;
  border: 1px solid rgba(184,150,62,0.1);
}
.contact-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gold-pale);
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon i { color: var(--gold); font-size: 1.1rem; }
.contact-item-text strong {
  display: block;
  color: var(--navy);
  font-size: 0.88rem;
  margin-bottom: 0.15rem;
}
.contact-item-text span,
.contact-item-text a {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.contact-item-icon .icon,
.contact-item-icon .icon-wa {
  color: var(--brand);
  stroke: var(--brand);
}
.contact-item-icon .icon-wa { fill: var(--brand); stroke: none; }
.location-detail .icon {
  color: var(--brand);
  stroke: var(--brand);
  flex-shrink: 0;
  margin-top: 3px;
}
.gallery-item-overlay .icon {
  width: 2rem;
  height: 2rem;
  color: #fff;
  stroke: #fff;
}
.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 100%;
  min-height: 400px;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
}

/* ---- Page header (inner pages) ---- */
.page-hero {
  background: var(--brand-gradient);
  color: #fff;
  padding: 4rem 0 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.06) 100%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}
.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto;
}
.breadcrumb-nav {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.breadcrumb-nav a { color: var(--brand-light); }
.breadcrumb-nav a:hover { color: #fff; }

/* ---- Footer ---- */
.site-footer {
  background: var(--brand-gradient-deep);
  color: rgba(255, 255, 255, 0.92);
  padding: 4rem 0 0;
  position: relative;
}
.footer-ornament {
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), var(--gold-light), rgba(255,255,255,0.5), transparent);
  margin-bottom: 3rem;
}

/* Marca no rodapé — SVG sem borda branca */
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
  text-decoration: none;
  color: #fff;
  transition: opacity var(--transition);
}
.footer-brand:hover { opacity: 0.92; color: #fff; }
.footer-brand-mark {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 10px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
}
.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.footer-brand-est {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.footer-tagline {
  font-size: 0.92rem;
  line-height: 1.75;
  max-width: 320px;
  color: rgba(255, 255, 255, 0.88);
}
.footer-title {
  font-family: var(--font-display);
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold-light);
  display: inline-block;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.55rem; }
.footer-links a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  transition: color var(--transition), padding-left var(--transition);
}
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.8rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}
.footer-contact .icon,
.footer-contact .icon-wa {
  color: var(--gold-light);
  stroke: var(--gold-light);
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contact .icon-wa { fill: var(--gold-light); stroke: none; }
.footer-contact a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(255, 255, 255, 0.35);
}
.footer-contact a:hover {
  color: var(--gold-light);
  text-decoration-color: var(--gold-light);
}
.footer-sitemap {
  margin-top: 0.4rem;
  font-size: 0.8rem;
}
.footer-sitemap a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
}
.footer-sitemap a:hover { color: var(--gold-light); }
.footer-bottom {
  margin-top: 3rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
}
.footer-bottom strong { color: #fff; }

/* ---- WhatsApp float ---- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: var(--wa-green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover {
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}

/* ---- Events Modal ---- */
#eventsModal .modal-dialog {
  max-width: 900px;
  margin: 0.75rem auto;
  max-height: calc(100% - 1.5rem);
}

#eventsModal .modal-dialog.modal-events-wide {
  max-width: min(1120px, 96vw);
}

#eventsModal .modal-content.events-modal {
  max-height: calc(100vh - 1.5rem);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.events-modal {
  background: var(--warm-white);
  border-radius: 16px;
  border: 1px solid rgba(184, 150, 62, 0.2);
  box-shadow: 0 24px 60px rgba(15, 28, 48, 0.2);
  position: relative;
}
.events-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  opacity: 0.5;
  transition: opacity 0.2s;
  background: var(--warm-white);
  border-radius: 50%;
  padding: 0.35rem;
}
.events-modal-close:hover { opacity: 1; }

.events-modal-header {
  padding: 1.5rem 2rem 0.5rem;
  background: linear-gradient(180deg, rgba(184,150,62,0.06) 0%, transparent 100%);
  flex-shrink: 0;
}
.events-modal-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(184,150,62,0.3);
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}
.events-modal-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--navy);
  margin-bottom: 0.35rem;
  line-height: 1.25;
  padding: 0 1.5rem;
}
.events-modal-subtitle {
  color: var(--text-muted);
  font-size: 0.88rem;
}
.events-modal-body {
  padding: 0.5rem 1.5rem 0.75rem;
  overflow-y: auto;
  flex: 1 1 auto;
  -webkit-overflow-scrolling: touch;
}
.events-modal-footer {
  padding: 0.85rem 1.5rem 1.25rem;
  background: linear-gradient(180deg, transparent, rgba(184,150,62,0.04));
  flex-shrink: 0;
  border-top: 1px solid rgba(184,150,62,0.1);
}
.events-modal-grid {
  margin: 0;
}
.events-modal-grid > [class*="col"] {
  min-width: 0;
}
.events-modal-cta-text {
  color: var(--text-muted);
  font-size: 0.92rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.events-modal-footnote {
  color: var(--text-muted);
  font-size: 0.78rem;
  opacity: 0.7;
}

.event-card {
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(26,45,74,0.08);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}
.event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.event-card-accent { height: 4px; }
.event-card--santo .event-card-accent { background: linear-gradient(90deg, #a0522d, #daa520); }
.event-card--festival .event-card-accent { background: var(--brand-gradient); }
.event-card--carnaval .event-card-accent { background: linear-gradient(90deg, #9b2335, #e8a317); }
.event-card--cultural .event-card-accent { background: linear-gradient(90deg, #2d5a3d, var(--gold)); }

.event-card-inner { padding: 1rem; }
.events-modal .event-card-inner { padding: 0.85rem; }
.event-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.event-date {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
  line-height: 1.35;
}
.event-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy);
  margin: 0;
  line-height: 1.25;
  word-wrap: break-word;
}
.events-modal .event-title { font-size: 0.98rem; }
.event-tag {
  display: inline-block;
  margin-top: 0.3rem;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.15rem 0.55rem;
  border-radius: 50px;
}
.event-tag--santo { background: rgba(160,82,45,0.1); color: #a0522d; }
.event-tag--festival { background: var(--brand-pale); color: var(--brand-deep); }
.event-tag--carnaval { background: rgba(155,35,53,0.1); color: #9b2335; }
.event-tag--cultural { background: rgba(45,90,61,0.1); color: #2d5a3d; }

.event-card-thumb {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.event-card-thumb .icon {
  width: 1.15rem;
  height: 1.15rem;
  color: #fff;
  stroke: #fff;
}
.event-highlights li .icon {
  width: 0.95rem;
  height: 0.95rem;
  color: var(--gold);
  stroke: var(--gold);
  margin-top: 2px;
}
.event-card-thumb--santo { background: linear-gradient(135deg, #a0522d, #daa520); }
.event-card-thumb--festival { background: var(--brand-gradient-h); }
.event-card-thumb--carnaval { background: linear-gradient(135deg, #9b2335, #e8a317); }
.event-card-thumb--cultural { background: linear-gradient(135deg, #2d5a3d, var(--gold)); }

.event-lead {
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.45;
  margin-bottom: 0.4rem;
}
.events-modal .event-lead { font-size: 0.78rem; }
.event-highlights { list-style: none; padding: 0; margin: 0; }
.event-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  font-size: 0.76rem;
  color: var(--text-muted);
  padding: 0.25rem 0;
  border-top: 1px solid rgba(26,45,74,0.05);
  line-height: 1.35;
}
.event-highlights li:first-child { border-top: none; }
.event-highlights li .icon { flex-shrink: 0; }
.event-card--santo .event-highlights li .icon { color: #a0522d; stroke: #a0522d; }

.event-test-mark {
  font-style: normal;
  opacity: 0.65;
  font-size: 0.9em;
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Lightbox ---- */
.lightbox-modal {
  --bs-modal-zindex: 1200;
}
.lightbox-modal .modal-dialog {
  max-width: min(1140px, 96vw);
  margin: 1.25rem auto;
  display: flex;
  align-items: center;
  min-height: calc(100% - 2.5rem);
}
.lightbox-modal .modal-content {
  background: transparent;
  border: none;
  width: 100%;
}
.lightbox-modal .modal-body {
  padding: 2.75rem 0.75rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: calc(100dvh - 2.5rem);
  overflow: hidden;
}
.lightbox-image {
  display: block;
  max-width: 100%;
  max-height: calc(100dvh - 6rem);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  margin: 0 auto;
}
.lightbox-close {
  position: absolute;
  top: 0.35rem;
  right: 0.35rem;
  z-index: 2;
  opacity: 0.92;
  padding: 0.65rem;
  background: rgba(15, 28, 48, 0.45);
  border-radius: 50%;
}
.lightbox-close:hover { opacity: 1; }
body.lightbox-open .modal-backdrop {
  z-index: 1190;
}


/* ---- Responsive ---- */
@media (max-width: 576px) {
  .lightbox-modal .modal-body {
    padding: 2.25rem 0.5rem 0.5rem;
    max-height: calc(100dvh - 1.5rem);
  }
  .lightbox-image {
    max-height: calc(100dvh - 4.5rem);
  }
}
@media (max-width: 991px) {
  .brand-logo { height: 56px; }
  .about-image img { height: 360px; }
  .about-year { right: 16px; bottom: -16px; font-size: 0.95rem; }
  #eventsModal .modal-dialog.modal-events-wide {
    max-width: min(720px, 96vw);
  }
  .events-modal-title { padding: 0 0.5rem; }
}
@media (max-height: 720px) {
  .hero-panel {
    padding: 1.15rem 1.35rem;
  }
  .hero-badge {
    margin-bottom: 0.5rem;
    font-size: 0.65rem;
    padding: 0.28rem 0.75rem;
  }
  .hero-title {
    font-size: clamp(1.4rem, 4vw, 2rem);
    margin-bottom: 0.5rem;
  }
  .hero-subtitle {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
  .hero-actions .btn {
    padding: 0.5rem 1.15rem;
    font-size: 0.85rem;
  }
  .hero-content { padding-bottom: 3.25rem; }
}
@media (max-width: 767px) {
  .hero-panel { padding: 1.35rem 1.15rem; border-radius: 16px; }
  .hero-content { padding: 1rem 1rem 3.25rem; }
  .hero-title { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .hero-actions .btn { padding: 0.55rem 1.25rem; font-size: 0.9rem; }
  .stats-bar .stat-number { font-size: 2rem; }
  .about-section, .rooms-section { padding: 4rem 0; }
  .location-card { padding: 2rem; }
  .events-modal-header,
  .events-modal-body,
  .events-modal-footer { padding-left: 1.1rem; padding-right: 1.1rem; }
}
@media (max-width: 575px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 280px; justify-content: center; }
  #eventsModal .modal-dialog {
    margin: 0.5rem auto;
    max-height: calc(100% - 1rem);
  }
  #eventsModal .modal-content.events-modal {
    max-height: calc(100vh - 1rem);
    border-radius: 12px;
  }
  .events-modal-header { padding-top: 1.15rem; }
  .events-modal-cta-text { font-size: 0.85rem; }
  .events-modal-footer .btn { width: 100%; max-width: 300px; }
}
