/* ==========================================================================
   Filadélfia Hospedagens e Eventos - Design System & Stylesheet
   Color Palette:
   - Primary: #944D21 (Warm Terracotta / Clay)
   - Primary Hover: #7B3E18
   - Secondary: #234938 (Serene Forest Green)
   - Secondary Hover: #1B382B
   - Background Light: #FAF7F2 (Soft Linen Cream)
   - Surface White: #FFFFFF
   - Border Light: #E8E2D6
   - Text Dark: #1E2824
   - Text Muted: #606C66
   ========================================================================== */

:root {
  --primary: #944D21;
  --primary-hover: #7b3e18;
  --primary-light: #fbeee6;
  --primary-glow: rgba(148, 77, 33, 0.15);

  --secondary: #234938;
  --secondary-hover: #173326;
  --secondary-light: #edf4f0;

  --bg-page: #FAF7F2;
  --bg-card: #FFFFFF;
  --bg-card-alt: #F4EFEA;
  
  --text-dark: #1A2420;
  --text-body: #4A5650;
  --text-muted: #73807A;
  --text-light: #FAF7F2;

  --border-light: #E7DFD5;
  --border-focus: #944D21;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(30, 40, 36, 0.04);
  --shadow-md: 0 8px 24px rgba(30, 40, 36, 0.07);
  --shadow-lg: 0 16px 40px rgba(30, 40, 36, 0.11);
  --shadow-hover: 0 20px 48px rgba(148, 77, 33, 0.14);

  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-page);
  color: var(--text-body);
  line-height: 1.6;
  font-size: 1rem;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* ==========================================================================
   Typography & Utility Classes
   ========================================================================== */
h1, h2, h3, h4, h5 {
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

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

.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-tag {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  background-color: var(--primary-light);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.85rem;
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 0.85rem;
  color: var(--text-dark);
}

.section-subtitle {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.header-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.badge-chip {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  padding: 0.8rem 1.6rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
  font-size: 0.95rem;
}

.btn-primary {
  background-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(148, 77, 33, 0.28);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  box-shadow: 0 6px 20px rgba(148, 77, 33, 0.4);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: var(--secondary);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(35, 73, 56, 0.25);
}

.btn-secondary:hover {
  background-color: var(--secondary-hover);
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--border-light);
  color: var(--text-dark);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background-color: var(--primary-light);
}

.btn-outline-white {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
}

.btn-sm {
  padding: 0.6rem 1.15rem;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 1rem 2.2rem;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   Top Announcement Bar
   ========================================================================== */
.top-bar {
  background-color: var(--secondary);
  color: #ffffff;
  font-size: 0.82rem;
  padding: 0.5rem 0;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.95;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top-bar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  opacity: 0.9;
}

.top-bar-link:hover {
  opacity: 1;
  text-decoration: underline;
}

.top-bar-link.highlight {
  background: rgba(255, 255, 255, 0.15);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  opacity: 1;
}

.top-bar-link.highlight:hover {
  background: rgba(255, 255, 255, 0.25);
  text-decoration: none;
}

/* ==========================================================================
   Main Header & Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(250, 247, 242, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition-fast);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 0.4rem 0;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--primary);
  transition: width var(--transition-fast);
}

.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}

.mobile-toggle .bar {
  width: 24px;
  height: 2px;
  background-color: var(--text-dark);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* ==========================================================================
   Mobile Drawer
   ========================================================================== */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 340px;
  height: 100%;
  background-color: var(--bg-card);
  z-index: 2000;
  box-shadow: -8px 0 30px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  transition: right 0.35s ease;
  padding: 1.75rem;
}

.mobile-drawer.open {
  right: 0;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 1rem;
}

.drawer-logo {
  height: 44px;
}

.drawer-close {
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--text-dark);
  cursor: pointer;
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex: 1;
}

.drawer-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.drawer-link:hover {
  color: var(--primary);
}

.drawer-footer {
  border-top: 1px solid var(--border-light);
  padding-top: 1.5rem;
}

.drawer-contact-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 1rem;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 5rem 0 7rem;
  color: #ffffff;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  filter: brightness(0.85);
  transform: scale(1.03);
  animation: subtleZoom 20s infinite alternate ease-in-out;
}

@keyframes subtleZoom {
  0% { transform: scale(1.0); }
  100% { transform: scale(1.06); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(26, 36, 32, 0.45) 0%, rgba(26, 36, 32, 0.8) 75%, rgba(26, 36, 32, 0.95) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  text-align: center;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  padding: 0.45rem 1.15rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-title {
  color: #ffffff;
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.18rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 740px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

/* ==========================================================================
   Booking Quick Bar
   ========================================================================== */
.booking-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  color: var(--text-dark);
  text-align: left;
  width: 100%;
}

.booking-form {
  display: grid;
  grid-template-columns: minmax(130px, 1fr) minmax(130px, 1fr) minmax(130px, 1fr) minmax(130px, 1.1fr) auto;
  gap: 0.85rem;
  align-items: flex-end;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  white-space: nowrap;
}

.form-group input,
.form-group select {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0.75rem 0.75rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background-color: var(--bg-page);
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition-fast);
  outline: none;
  min-width: 0;
  height: 46px;
  line-height: 1.2;
}

/* iOS Safari Specific Fixes for Date Inputs */
input[type="date"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-width: 0;
}

input[type="date"]::-webkit-date-and-time-value {
  text-align: left;
  line-height: 1.2;
  margin: 0;
  padding: 0;
  height: auto;
  min-height: 1.2em;
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-clear-button {
  display: none;
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23606C66' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.7rem center;
  padding-right: 1.8rem;
  cursor: pointer;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--primary);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.btn-submit {
  height: 46px;
  padding: 0 1.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
}

.booking-guarantee {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  flex-wrap: wrap;
}

/* ==========================================================================
   Pillars & Key Highlights
   ========================================================================== */
.pillars-section {
  background-color: var(--bg-page);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  margin-bottom: 3.5rem;
}

.pillar-card {
  background: var(--bg-card);
  padding: 2.25rem 1.75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(148, 77, 33, 0.3);
}

.pillar-icon {
  width: 54px;
  height: 54px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.pillar-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.65rem;
}

.pillar-card p {
  font-size: 0.94rem;
  color: var(--text-body);
  line-height: 1.55;
}

/* Stats Ribbon */
.stats-ribbon {
  background: var(--secondary);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.75rem 2.5rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  box-shadow: var(--shadow-md);
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.18);
}

/* ==========================================================================
   Accommodations (Rooms Grid)
   ========================================================================== */
.rooms-section {
  background-color: var(--bg-card-alt);
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.room-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-smooth);
}

.room-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(148, 77, 33, 0.35);
}

.room-card.featured-room {
  border: 2px solid var(--primary);
}

.room-badge-top {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--primary);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.room-image-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
  cursor: pointer;
  background-color: #ece7df;
}

.room-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.room-card:hover .room-img {
  transform: scale(1.05);
}

.room-img-count {
  position: absolute;
  bottom: 0.85rem;
  right: 0.85rem;
  background: rgba(26, 36, 32, 0.75);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.room-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.room-header {
  margin-bottom: 0.75rem;
}

.room-name {
  font-size: 1.35rem;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.room-capacity {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--primary);
}

.room-desc {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  margin-top: auto;
}

.amenity-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  background-color: var(--bg-page);
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
}

.amenity-tag svg {
  color: var(--secondary);
}

.room-footer {
  display: flex;
  gap: 0.75rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1.25rem;
}

.room-footer .btn {
  flex: 1;
}

/* ==========================================================================
   Structure & Gallery Section
   ========================================================================== */
.gallery-section {
  background-color: var(--bg-page);
}

.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.tab-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  color: var(--text-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.6rem 1.35rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.tab-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.tab-btn.active {
  background-color: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(148, 77, 33, 0.25);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.25rem;
}

.gallery-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 220px;
  cursor: pointer;
  background-color: #ded7cc;
  box-shadow: var(--shadow-sm);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 1rem 0.85rem;
  background: linear-gradient(180deg, transparent 0%, rgba(26, 36, 32, 0.85) 100%);
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.gallery-card:hover .gallery-card-overlay {
  opacity: 1;
}

.gallery-card-title {
  font-size: 0.92rem;
  font-weight: 600;
}

.gallery-card-zoom {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
}

/* ==========================================================================
   Groups & Spiritual Retreats Feature Section
   ========================================================================== */
.retreat-section {
  background-color: var(--bg-card-alt);
  padding: 4rem 0;
}

.retreat-banner {
  background: var(--secondary);
  color: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  box-shadow: var(--shadow-lg);
}

.retreat-content {
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.retreat-tag {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #92e0ab;
  margin-bottom: 0.75rem;
}

.retreat-title {
  color: #ffffff;
  font-size: 2.1rem;
  margin-bottom: 1rem;
}

.retreat-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.retreat-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.95);
}

.retreat-media {
  position: relative;
  min-height: 350px;
}

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

/* ==========================================================================
   Location & Map Section
   ========================================================================== */
.location-section {
  background-color: var(--bg-page);
}

.location-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}

.location-info .section-tag {
  margin-bottom: 0.75rem;
}

.location-desc {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 2rem;
}

.location-points {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
}

.location-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.point-icon {
  width: 44px;
  height: 44px;
  background-color: var(--secondary-light);
  color: var(--secondary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-point strong {
  display: block;
  color: var(--text-dark);
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.location-point span {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.location-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.location-map-wrap {
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

/* ==========================================================================
   Reviews / Testimonials Section
   ========================================================================== */
.reviews-section {
  background-color: var(--bg-card-alt);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.review-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars {
  color: #f59e0b;
  font-size: 1.15rem;
  letter-spacing: 2px;
  margin-bottom: 0.85rem;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.reviewer-info strong {
  display: block;
  font-size: 0.98rem;
  color: var(--text-dark);
}

.reviewer-info span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
  background-color: var(--bg-page);
}

.faq-container {
  max-width: 820px;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.accordion-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.accordion-header {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.accordion-header:hover {
  color: var(--primary);
}

.accordion-icon {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--primary);
  transition: transform var(--transition-fast);
  line-height: 1;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out, padding 0.35s ease;
  padding: 0 1.5rem;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
}

.accordion-item.active .accordion-body {
  padding-bottom: 1.25rem;
}

/* ==========================================================================
   Final CTA Section
   ========================================================================== */
.cta-section {
  background: var(--bg-page);
  padding: 3rem 0 6rem;
}

.cta-box {
  background: linear-gradient(135deg, var(--primary) 0%, #703310 100%);
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  text-align: center;
  color: #ffffff;
  box-shadow: var(--shadow-hover);
}

.cta-title {
  color: #ffffff;
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   Site Footer
   ========================================================================== */
.site-footer {
  background-color: var(--text-dark);
  color: #b0beb8;
  padding: 4.5rem 0 2rem;
  font-size: 0.92rem;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1.1fr 1.3fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-logo-card {
  display: inline-flex;
  align-items: center;
  background-color: #FFFFFF;
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.footer-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: none;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #a2b2ac;
}

.cnpj-tag {
  display: inline-block;
  font-size: 0.78rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  color: #d1dcda;
}

.footer-heading {
  color: #ffffff;
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

.footer-links,
.footer-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-address {
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
  color: #cbd7d2;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #cbd7d2;
  font-size: 0.9rem;
}

.footer-contact-link:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #84968f;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ==========================================================================
   Floating WhatsApp Button
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.whatsapp-icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25D366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.floating-whatsapp:hover .whatsapp-icon-circle {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
  background: var(--text-dark);
  color: #ffffff;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  margin-right: 0.75rem;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition-fast);
  pointer-events: none;
}

.floating-whatsapp:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================================
   Lightbox Modal
   ========================================================================== */
.lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 22, 19, 0.92);
  z-index: 3000;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
}

.lightbox-modal.open {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 950px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
}

#lightboxImg {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  object-fit: contain;
}

.lightbox-caption {
  color: #ffffff;
  font-size: 0.95rem;
  margin-top: 0.85rem;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.35);
}

.lightbox-prev {
  left: -60px;
}

.lightbox-next {
  right: -60px;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1100px) {
  .booking-form {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .booking-form .form-action {
    grid-column: span 2;
  }

  .btn-submit {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.75rem;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .location-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .retreat-banner {
    grid-template-columns: 1fr;
  }

  .retreat-media {
    min-height: 260px;
  }

  .retreat-content {
    padding: 2.5rem;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .nav-menu {
    display: none;
  }

  .header-actions .btn {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero-section {
    padding: 3.5rem 0 5rem;
    min-height: 75vh;
  }

  .hero-title {
    font-size: 2.15rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .booking-card {
    padding: 1.25rem 1rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .booking-form {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .form-group {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .form-group input,
  .form-group select {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .booking-form .form-action {
    grid-column: span 1;
    width: 100%;
  }

  .section {
    padding: 4rem 0;
  }

  .section-title {
    font-size: 1.85rem;
  }

  .stats-ribbon {
    flex-direction: column;
    gap: 1.25rem;
  }

  .stat-divider {
    display: none;
  }

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

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-close {
    top: -35px;
    right: 10px;
  }

  .floating-whatsapp {
    bottom: 1.25rem;
    right: 1.25rem;
  }

  .whatsapp-icon-circle {
    width: 52px;
    height: 52px;
  }

  .whatsapp-tooltip {
    display: none;
  }
}
