/* ===========================================================
   GRAÚNA PALACE HOTEL - STYLES
   Paleta: Verde profundo + Dourado champanhe + Creme
   Tipografia: Fraunces (display) + Inter Tight (texto)
   =========================================================== */

:root {
  /* Cores principais */
  --green-deep: #1a3329;
  --green-forest: #2d4a3a;
  --green-soft: #5a7a65;
  --gold: #c9a86a;
  --gold-light: #e0c896;
  --gold-dark: #a88547;
  --cream: #f5efe4;
  --cream-light: #faf6ee;
  --ivory: #fbf9f3;
  --charcoal: #1f1f1d;
  --gray-text: #4a4a47;
  --gray-soft: #8a8a85;
  --gray-line: #e8e2d3;
  --white: #ffffff;

  /* Tipografia */
  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body: 'Inter Tight', -apple-system, sans-serif;

  /* Espaços e raios */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --container: 1280px;
  --transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

/* ----------- Tipografia ----------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--green-deep);
}

h1 { font-size: clamp(2.5rem, 5.5vw, 4.75rem); }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.85rem); }
h4 { font-size: 1.25rem; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 500;
  margin-bottom: 1.25rem;
  position: relative;
  padding-left: 2.4rem;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.8rem;
  height: 1px;
  background: var(--gold);
}

.serif-italic { font-style: italic; font-family: var(--font-display); }

/* ----------- Container ----------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .container { padding: 0 2.5rem; }
}

/* ===========================================================
   NAVBAR
   =========================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  background: transparent;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(26, 51, 41, 0.97);
  backdrop-filter: blur(12px);
  padding: 0.85rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

.navbar.solid {
  background: var(--green-deep);
  padding: 0.85rem 0;
}

/* Home: barra sólida no topo para não cobrir o letreiro da fachada */
.page-home .navbar:not(.scrolled) {
  background: rgba(8, 18, 14, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245, 239, 228, 0.08);
  padding: 0.85rem 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav-logo img {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: transform var(--transition);
}
.nav-logo:hover img { transform: scale(1.04); }

.nav-menu {
  display: flex;
  gap: 2.25rem;
  list-style: none;
  align-items: center;
}

.nav-menu a {
  color: var(--cream);
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  position: relative;
  padding: 0.4rem 0;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }
.nav-menu a:hover { color: var(--gold-light); }

.nav-cta {
  background: var(--gold);
  color: var(--green-deep) !important;
  padding: 0.7rem 1.5rem !important;
  border-radius: 2rem;
  font-weight: 500;
  font-size: 0.85rem !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--transition);
}
.nav-cta::after { display: none; }
.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 168, 106, 0.35);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 110;
}
.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--cream);
  transition: all 0.35s ease;
}

@media (max-width: 968px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 80%;
    max-width: 360px;
    background: var(--green-deep);
    flex-direction: column;
    justify-content: center;
    padding: 3rem 2rem;
    gap: 2rem;
    transition: right 0.5s cubic-bezier(0.7, 0, 0.3, 1);
  }
  .nav-menu.open { right: 0; }
  .nav-menu a { font-size: 1.15rem; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--cream);
}

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

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.12) 28%, transparent 48%),
    linear-gradient(105deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.52) 38%, rgba(0, 0, 0, 0.22) 62%, rgba(0, 0, 0, 0.35) 100%);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  position: absolute;
  inset: 0;
}

.page-home .hero-bg img {
  object-position: center 62%;
}

.hero-grain {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 5;
  padding: 9.5rem 0 6rem;
  max-width: 880px;
}

.hero-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.2s;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.85);
}
.hero-eyebrow::before {
  content: '';
  width: 2.5rem;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  color: var(--cream);
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s ease forwards 0.4s;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.9),
    0 8px 32px rgba(0, 0, 0, 0.75),
    0 24px 48px rgba(0, 0, 0, 0.45);
}

.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
}

.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--cream);
  max-width: 580px;
  margin-bottom: 2.5rem;
  line-height: 1.65;
  opacity: 0;
  animation: fadeUp 1s ease forwards 0.6s;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.9),
    0 6px 24px rgba(0, 0, 0, 0.7);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
  animation: fadeUp 1s ease forwards 0.8s;
}

.hero-meta {
  position: absolute;
  bottom: 2.5rem;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding: 0 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
  color: var(--cream);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.95;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.85);
}
.hero-meta-stars {
  color: var(--gold);
  letter-spacing: 0.3em;
}

@media (min-width: 768px) {
  .hero-meta { padding: 0 2.5rem; }
}

@media (max-width: 640px) {
  .hero-meta { flex-direction: column; gap: 0.5rem; align-items: start; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===========================================================
   BOTÕES
   =========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2rem;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold);
  color: var(--green-deep);
  border: 1px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(201, 168, 106, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245, 239, 228, 0.4);
}
.btn-outline:hover {
  background: var(--cream);
  color: var(--green-deep);
  border-color: var(--cream);
}

.btn-dark {
  background: var(--green-deep);
  color: var(--cream);
  border: 1px solid var(--green-deep);
}
.btn-dark:hover {
  background: var(--green-forest);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(26, 51, 41, 0.3);
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  border: 1px solid #25D366;
}
.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
}

.btn .arrow {
  transition: transform var(--transition);
}
.btn:hover .arrow { transform: translateX(4px); }

/* ===========================================================
   SECTION COMMON
   =========================================================== */
section {
  position: relative;
  padding: 7rem 0;
}

@media (max-width: 768px) {
  section { padding: 5rem 0; }
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4.5rem;
}

.section-header .eyebrow {
  padding-left: 0;
}
.section-header .eyebrow::before { display: none; }

.section-header h2 {
  margin-bottom: 1.25rem;
}

.section-header p {
  color: var(--gray-text);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0 auto 2rem;
}
.section-divider::before,
.section-divider::after {
  content: '';
  width: 2.2rem;
  height: 1px;
  background: var(--gold);
}
.section-divider .ornament {
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
}

/* ===========================================================
   DIFERENCIAIS
   =========================================================== */
.bg-cream { background: var(--cream-light); }
.bg-green { background: var(--green-deep); color: var(--cream); }
.bg-green h2, .bg-green h3 { color: var(--cream); }
.bg-green .eyebrow { color: var(--gold-light); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature {
  text-align: center;
  padding: 2rem 1.25rem;
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  background: var(--white);
  border: 1px solid var(--gray-line);
}
.feature:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(26, 51, 41, 0.08);
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--green-deep);
  transition: all var(--transition);
}
.feature:hover .feature-icon {
  background: var(--green-deep);
  color: var(--gold);
  transform: rotate(-8deg) scale(1.05);
}
.feature-icon svg { width: 26px; height: 26px; }

.feature h4 {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--green-deep);
  margin-bottom: 0.5rem;
}

.feature p {
  font-size: 0.82rem;
  color: var(--gray-soft);
  line-height: 1.5;
}

/* ===========================================================
   EXECUTIVO (split section)
   =========================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 968px) {
  .split { grid-template-columns: 1fr; gap: 3rem; }
}

.split-image {
  position: relative;
  height: 600px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}
.split-image:hover img { transform: scale(1.04); }

.split-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 51, 41, 0.3), transparent 50%);
}

.split-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  z-index: 3;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem 0.55rem;
  color: var(--cream);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1.3;
}
.split-badge .num {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--gold-light);
  letter-spacing: 0;
}

.split-content h2 { margin-bottom: 1.5rem; }
.split-content p { color: var(--gray-text); margin-bottom: 1rem; font-size: 1.02rem; }

.audience-list {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  list-style: none;
}

.audience-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.95rem;
  color: var(--green-deep);
  font-weight: 500;
}
.audience-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===========================================================
   ACOMODAÇÕES
   =========================================================== */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.room-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid var(--gray-line);
  position: relative;
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 50px rgba(26, 51, 41, 0.12);
}

.room-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream);
}

.room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.room-card:hover .room-img img { transform: scale(1.06); }

.room-img-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(26, 51, 41, 0.9);
  color: var(--gold-light);
  padding: 0.4rem 0.85rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2rem;
  backdrop-filter: blur(8px);
}

.room-body {
  padding: 2rem 1.75rem;
}

.room-body h3 {
  margin-bottom: 0.4rem;
}

.room-tag {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1rem;
  display: block;
}

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

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

.room-amenities span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: var(--gray-text);
  background: var(--cream);
  padding: 0.35rem 0.7rem;
  border-radius: 1rem;
}

.room-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-line);
}

.room-footer .price-tag {
  font-size: 0.78rem;
  color: var(--gray-soft);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.room-link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition);
}
.room-link:hover { gap: 0.7rem; color: var(--gold-dark); }

/* ===========================================================
   GUARDA-MOR (turismo)
   =========================================================== */
.tourism {
  background: var(--green-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.tourism::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M0 50 Q25 30 50 50 T100 50' stroke='%23c9a86a' stroke-width='0.3' fill='none' opacity='0.3'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: 0.15;
  pointer-events: none;
}

.tourism-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 968px) {
  .tourism-grid { grid-template-columns: 1fr; gap: 3rem; }
}

.tourism h2 { color: var(--cream); margin-bottom: 1.5rem; }
.tourism p { color: rgba(245, 239, 228, 0.8); margin-bottom: 1.2rem; }

.tourism-attractions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.tourism-attraction {
  border: 1px solid rgba(201, 168, 106, 0.25);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  transition: all var(--transition);
}

.tourism-attraction:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  background: rgba(201, 168, 106, 0.08);
}

.tourism-attraction-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.tourism-attraction-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.tourism-attraction:hover .tourism-attraction-img img {
  transform: scale(1.05);
}

.tourism-attraction h4 {
  color: var(--gold-light);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  margin: 1rem 1rem 0.35rem;
}

.tourism-attraction p {
  font-size: 0.82rem;
  color: rgba(245, 239, 228, 0.75);
  margin: 0 1rem 1.1rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .tourism-attractions {
    grid-template-columns: 1fr;
  }
}

.tourism-img {
  position: relative;
  height: 540px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.tourism-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===========================================================
   GALERIA / EXPERIÊNCIA
   =========================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  display: block;
  cursor: zoom-in;
  background: var(--cream);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 51, 41, 0) 35%, rgba(26, 51, 41, 0.85) 100%);
  pointer-events: none;
  opacity: 0.85;
  transition: opacity var(--transition);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-caption {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.1rem;
  z-index: 2;
  color: var(--cream);
  pointer-events: none;
}

.gallery-caption .eyebrow {
  margin-bottom: 0.4rem;
  font-size: 0.7rem;
}

.gallery-caption h4 {
  color: var(--cream);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-wide {
  grid-column: span 2;
}

@media (max-width: 968px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery-large {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-wide {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 540px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .gallery-large,
  .gallery-wide {
    grid-column: span 1;
    grid-row: span 1;
  }
  .gallery-caption h4 {
    font-size: 1.05rem;
  }
}

/* Lightbox — zoom da galeria sem sair da página */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 51, 41, 0.94);
  cursor: pointer;
}

.lightbox-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(92vw, 1100px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}

.lightbox-close {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border: none;
  border-radius: var(--radius-md);
  background: var(--gold);
  color: var(--green-deep);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  flex-shrink: 0;
}

.lightbox-close:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.lightbox-close span:first-child {
  font-size: 1.35rem;
  line-height: 1;
  font-weight: 400;
}

.lightbox-img-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: calc(90vh - 3.5rem);
}

.lightbox-img {
  max-width: 100%;
  max-height: calc(90vh - 3.5rem);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.lightbox-hint {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: rgba(245, 239, 228, 0.65);
  text-transform: uppercase;
  pointer-events: none;
}

body.lightbox-open {
  overflow: hidden;
}

.room-gallery .main img {
  cursor: zoom-in;
}

/* ===========================================================
   DEPOIMENTOS
   =========================================================== */
.testimonials {
  background: var(--cream-light);
}

.testimonials-widget {
  margin-top: 0.5rem;
  width: 100%;
  min-height: 120px;
}

/* FAQ — GEO / respostas para busca e IAs */
.faq-section .section-header p {
  color: var(--gray-text);
  max-width: 560px;
  margin: 0.75rem auto 0;
}

.faq-list {
  max-width: 820px;
  margin: 2.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: var(--green-deep);
  font-weight: 500;
  position: relative;
  padding-right: 2.5rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.35rem;
  color: var(--gold-dark);
  font-weight: 300;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
  margin: 0;
  color: var(--gray-text);
  line-height: 1.65;
  font-size: 0.98rem;
}

.faq-answer a {
  color: var(--green-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.testimonials-rating {
  text-align: center;
  margin-bottom: 3rem;
}
.testimonials-rating .score {
  font-family: var(--font-display);
  font-size: 4.5rem;
  color: var(--green-deep);
  line-height: 1;
}
.testimonials-rating .stars {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 0.3em;
  margin: 0.5rem 0;
}
.testimonials-rating .source {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-soft);
}

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

.testimonial {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-line);
  position: relative;
  transition: all var(--transition);
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(26, 51, 41, 0.08);
}

.testimonial-stars {
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 0.15em;
}

.testimonial blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--green-deep);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-line);
}
.testimonial-author .avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-deep);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
}
.testimonial-author .name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--green-deep);
}
.testimonial-author .date {
  font-size: 0.78rem;
  color: var(--gray-soft);
}

/* ===========================================================
   CTA FINAL
   =========================================================== */
.instagram-cta {
  background: linear-gradient(135deg, #2a1f35 0%, var(--green-deep) 55%, #1a3329 100%);
  color: var(--cream);
  padding: 4.5rem 0;
}

.instagram-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.instagram-cta-copy {
  flex: 1;
  min-width: 260px;
  max-width: 640px;
}

.instagram-cta-copy h2 {
  color: var(--cream);
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  margin: 0.75rem 0 1rem;
  line-height: 1.1;
}

.instagram-cta-copy h2 em {
  color: var(--gold-light);
  font-style: italic;
}

.instagram-cta-copy p {
  color: rgba(245, 239, 228, 0.85);
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
}

.instagram-cta-btn {
  flex-shrink: 0;
  white-space: nowrap;
}

.hero-actions .btn-instagram {
  gap: 0.5rem;
}

@media (max-width: 640px) {
  .instagram-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .instagram-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

.cta-section {
  background: var(--green-deep);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before,
.cta-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 106, 0.15) 0%, transparent 70%);
}
.cta-section::before { top: -100px; left: -100px; }
.cta-section::after { bottom: -100px; right: -100px; }

.cta-section .container { position: relative; z-index: 2; }

.cta-section h2 {
  color: var(--cream);
  font-size: clamp(2.25rem, 5vw, 4rem);
  margin-bottom: 1.25rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.cta-section h2 em { color: var(--gold-light); font-style: italic; }

.cta-section p {
  color: rgba(245, 239, 228, 0.8);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

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

/* ===========================================================
   FOOTER
   =========================================================== */
.footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (max-width: 968px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

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

.footer-brand img {
  height: 60px;
  filter: brightness(0) invert(1);
  margin-bottom: 1.25rem;
}

.footer-brand p {
  color: rgba(245, 239, 228, 0.6);
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.7rem; }
.footer-col a {
  color: rgba(245, 239, 228, 0.7);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold-light); }

.footer-contact-item {
  display: flex;
  gap: 0.7rem;
  align-items: start;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: rgba(245, 239, 228, 0.7);
  line-height: 1.5;
}
.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(245, 239, 228, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(245, 239, 228, 0.5);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(245, 239, 228, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green-deep);
  transform: translateY(-2px);
}
.footer-social svg { width: 16px; height: 16px; }

/* ===========================================================
   WHATSAPP FLOAT
   =========================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 95;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
  animation: pulse 2.5s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.08) rotate(-5deg);
  background: #1da851;
}
.whatsapp-float svg { width: 30px; height: 30px; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4), 0 0 0 20px rgba(37, 211, 102, 0); }
}

/* ===========================================================
   PAGE HEADER (sub-páginas)
   =========================================================== */
.page-header {
  background: var(--green-deep);
  color: var(--cream);
  padding: 11rem 0 5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80'%3E%3Ccircle cx='40' cy='40' r='1' fill='%23c9a86a' opacity='0.3'/%3E%3C/svg%3E");
  opacity: 0.15;
}

.page-header .container { position: relative; z-index: 2; }

.page-header .breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 239, 228, 0.6);
  margin-bottom: 1.5rem;
}
.page-header .breadcrumb a:hover { color: var(--gold-light); }
.page-header .breadcrumb .sep { color: var(--gold); }

.page-header h1 {
  color: var(--cream);
  margin-bottom: 1rem;
}
.page-header h1 em { color: var(--gold-light); font-style: italic; }

.page-header p {
  max-width: 620px;
  margin: 0 auto;
  color: rgba(245, 239, 228, 0.8);
  font-size: 1.05rem;
}

/* ===========================================================
   ROOM DETAIL PAGE
   =========================================================== */
.room-detail-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
}
@media (max-width: 968px) {
  .room-detail-grid { grid-template-columns: 1fr; }
}

.room-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.room-gallery .main {
  grid-column: span 2;
  aspect-ratio: 16/10;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.room-gallery .thumb {
  aspect-ratio: 1/1;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: opacity var(--transition);
}
.room-gallery .thumb:hover { opacity: 0.8; }
.room-gallery img {
  width: 100%; height: 100%; object-fit: cover;
}

.room-info h1 { margin-bottom: 0.5rem; }
.room-info .room-type {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1.5rem;
  display: block;
}
.room-info .desc {
  color: var(--gray-text);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.room-info .info-list {
  list-style: none;
  margin-bottom: 2rem;
  border-top: 1px solid var(--gray-line);
}
.room-info .info-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-line);
  font-size: 0.95rem;
}
.room-info .info-list .label {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-soft);
}
.room-info .info-list .value {
  font-weight: 500;
  color: var(--green-deep);
}

.room-amenities-detail {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-bottom: 2rem;
}
.room-amenities-detail span {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--green-deep);
}
.room-amenities-detail svg { color: var(--gold); width: 16px; height: 16px; flex-shrink: 0;}

/* ===========================================================
   ABOUT PAGE
   =========================================================== */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 968px) {
  .about-intro { grid-template-columns: 1fr; gap: 3rem; }
}

.about-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }

.about-image .badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: var(--gold);
  color: var(--green-deep);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
}
.about-image .badge .num {
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 500;
  display: block;
}
.about-image .badge .text {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--font-body);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}
.value-card {
  padding: 2.5rem 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--gold);
  transition: all var(--transition);
}
.value-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.value-card .num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
  line-height: 1;
}
.value-card h4 {
  color: var(--green-deep);
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
}
.value-card p {
  color: var(--gray-text);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* ===========================================================
   STRUCTURE PAGE
   =========================================================== */
.structure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.structure-card {
  padding: 2.5rem 1.75rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--gray-line);
  transition: all var(--transition);
  text-align: center;
}
.structure-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(26, 51, 41, 0.08);
}
.structure-card .icon-circle {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-deep);
  transition: all var(--transition);
}
.structure-card:hover .icon-circle {
  background: var(--green-deep);
  color: var(--gold);
}
.structure-card .icon-circle svg { width: 32px; height: 32px; }
.structure-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--green-deep);
  margin-bottom: 0.5rem;
}
.structure-card p {
  font-size: 0.88rem;
  color: var(--gray-text);
  line-height: 1.5;
}

/* ===========================================================
   SOBRE A CIDADE — ATRAÇÕES
   =========================================================== */
.city-attractions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.attraction-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-line);
  transition: all var(--transition);
}

.attraction-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(26, 51, 41, 0.1);
}

.attraction-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.attraction-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.attraction-card:hover .attraction-img img {
  transform: scale(1.06);
}

.attraction-body {
  padding: 1.75rem;
}

.attraction-cat {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.65rem;
  font-weight: 500;
}

.attraction-body h3 {
  font-size: 1.35rem;
  margin-bottom: 0.65rem;
  color: var(--green-deep);
}

.attraction-body p {
  color: var(--gray-text);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 968px) {
  .city-attractions {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ===========================================================
   FEIRAS E EVENTOS — GUARDA-MOR
   =========================================================== */
.events-section {
  background: var(--green-deep);
  color: var(--cream);
}

.events-section .section-header h2 {
  color: var(--cream);
}

.events-section .section-header p {
  color: rgba(245, 239, 228, 0.8);
  max-width: 640px;
  margin: 0 auto;
}

.events-feature {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  margin-top: 3rem;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 168, 106, 0.35);
  border-radius: var(--radius-lg);
}

.events-feature-img {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
}

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

.events-feature-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: var(--gold);
  color: var(--green-deep);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
}

.events-feature-body h3 {
  color: var(--cream);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  margin-bottom: 1.25rem;
}

.events-feature-body p {
  color: rgba(245, 239, 228, 0.85);
  margin-bottom: 1rem;
  line-height: 1.65;
}

.events-feature-body .eyebrow {
  color: var(--gold-light);
}

.events-calendar {
  margin-top: 3.5rem;
}

.events-calendar-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-light);
  font-style: italic;
  margin-bottom: 1.75rem;
  text-align: center;
}

.events-list {
  list-style: none;
  display: grid;
  gap: 1rem;
  max-width: 820px;
  margin: 0 auto;
}

.events-item {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.35rem 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 106, 0.2);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.events-item:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 106, 0.08);
}

.events-item--highlight {
  border-color: var(--gold);
  background: rgba(201, 168, 106, 0.12);
  box-shadow: 0 0 0 1px rgba(201, 168, 106, 0.25);
}

.events-month {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 0.15rem;
}

.events-item h4 {
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.events-item p {
  color: rgba(245, 239, 228, 0.75);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
}

.events-source {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(245, 239, 228, 0.45);
  margin-top: 2rem;
  letter-spacing: 0.04em;
}

@media (max-width: 968px) {
  .events-feature {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.5rem;
  }

  .events-feature-img {
    aspect-ratio: 16/10;
  }

  .events-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

/* ===========================================================
   GUIA GUARDA-MOR
   =========================================================== */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.guide-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-line);
  transition: all var(--transition);
}

a.guide-card--link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.guide-card:hover,
a.guide-card--link:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(26, 51, 41, 0.1);
}
.guide-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.guide-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s; }
.guide-card:hover .guide-img img { transform: scale(1.06); }

.guide-img--collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  background: var(--green-deep);
}

.guide-img--collage img {
  min-height: 0;
}

.guide-card:hover .guide-img--collage img { transform: scale(1.04); }
.guide-body {
  padding: 1.75rem;
}
.guide-cat {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.guide-body h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}
.guide-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-dark);
  transition: gap var(--transition), color var(--transition);
}

a.guide-card--link:hover .guide-link {
  gap: 0.55rem;
  color: var(--green-deep);
}

.guide-body p {
  color: var(--gray-text);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ===========================================================
   CORPORATIVO
   =========================================================== */
.corp-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 968px) {
  .corp-hero { grid-template-columns: 1fr; gap: 3rem; }
}

.corp-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}
.corp-benefit {
  padding: 2rem;
  background: var(--cream-light);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--gold);
}
.corp-benefit h4 {
  color: var(--green-deep);
  font-family: var(--font-display);
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
}
.corp-benefit p { color: var(--gray-text); font-size: 0.92rem; }

/* ===========================================================
   CONTATO
   =========================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}
@media (max-width: 968px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-info h2 {
  margin-bottom: 1.5rem;
}
.contact-info p {
  color: var(--gray-text);
  margin-bottom: 2rem;
}

.contact-list { list-style: none; margin-bottom: 2.5rem; }
.contact-list li {
  display: flex;
  gap: 1rem;
  align-items: start;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--gray-line);
}
.contact-list .icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-list .icon svg { width: 20px; height: 20px; }
.contact-list .label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-soft);
  margin-bottom: 0.25rem;
  display: block;
}
.contact-list .value {
  color: var(--green-deep);
  font-weight: 500;
  font-size: 1rem;
}

.contact-form {
  background: var(--cream-light);
  padding: 3rem;
  border-radius: var(--radius-lg);
}
@media (max-width: 540px) { .contact-form { padding: 2rem; } }

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 540px) { .contact-form .form-row { grid-template-columns: 1fr; } }

.form-field { margin-bottom: 1.25rem; }
.form-field label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-md);
  background: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--charcoal);
  transition: all var(--transition);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 106, 0.15);
}
.form-field textarea { min-height: 130px; resize: vertical; }

.map-wrapper {
  margin-top: 5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 450px;
  border: 1px solid var(--gray-line);
}
.map-wrapper iframe { width: 100%; height: 100%; border: 0; }

/* ===========================================================
   UTILITIES
   =========================================================== */
.text-center { text-align: center; }
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Mobile fine-tunes */
@media (max-width: 540px) {
  .hero-content { padding: 7rem 0 5rem; }
  .audience-list { grid-template-columns: 1fr; }
  .room-amenities-detail { grid-template-columns: 1fr; }
  .whatsapp-float { width: 54px; height: 54px; bottom: 1rem; right: 1rem; }
  .whatsapp-float svg { width: 26px; height: 26px; }
}
