/* ============================================================
   POUSADA LA GRECIA — STYLESHEET
   Organização: Variáveis → Reset → Tipografia → Layout →
   Componentes → Seções → Lightbox → Responsive
============================================================ */


/* ============================================================
   VARIÁVEIS
============================================================ */
:root {
  /* Cores principais */
  --navy:        #263580;
  --navy-dark:   #1a2560;
  --navy-light:  #3045a0;
  --blue:        #4791d1;
  --blue-light:  #6aaee0;
  --blue-pale:   #e8f4fd;
  --white:       #ffffff;
  --cream:       #faf8f4;
  --gold:        #c9a84c;

  /* Texto */
  --text:        #1a1a2e;
  --text-muted:  #6b7a99;

  /* Sombras */
  --shadow:      0 20px 60px rgba(38, 53, 128, 0.15);
  --shadow-card: 0 8px 40px rgba(38, 53, 128, 0.12);

  /* Arredondamentos */
  --radius:      12px;
  --radius-lg:   24px;

  /* Transição padrão */
  --transition:  all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}


/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 999;
  transition: left 0.2s ease;
}

.skip-link:focus {
  left: 1rem;
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}


/* ============================================================
   TIPOGRAFIA
============================================================ */
.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.section-title em {
  font-family: 'Cinzel Decorative', serif;
  font-style: normal;
  color: var(--blue);
}

.section-title.light         { color: var(--white); }
.section-title.light em      { color: var(--blue-light); }

.section-label {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-label::before,
.section-label::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--blue);
}

.section-label.light             { color: var(--blue-light); }
.section-label.light::before,
.section-label.light::after      { background: var(--blue-light); }

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.section-desc.light { color: rgba(255,255,255,0.75); }


/* ============================================================
   LAYOUT UTILITÁRIOS
============================================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.ornament-line {
  height: 4px;
  background: linear-gradient(to right, var(--navy), var(--blue), var(--navy));
  margin-bottom: 5rem;
}


/* ============================================================
   BOTÕES
============================================================ */
.btn-primary {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  padding: 0.875rem 2.25rem;
  border-radius: 4px;
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid var(--navy);
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary:hover {
  background: transparent;
  color: var(--navy);
}

.btn-primary.full {
  width: 100%;
  text-align: center;
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 0.875rem 2.25rem;
  border-radius: 4px;
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.6);
  transition: var(--transition);
}

.btn-ghost:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-card {
  display: block;
  text-align: center;
  padding: 0.7rem 1.5rem;
  background: var(--navy);
  color: var(--white);
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  border: 2px solid var(--navy);
  transition: var(--transition);
  margin-top: 1.25rem;
}

.btn-card:hover {
  background: transparent;
  color: var(--navy);
}

.btn-quarto {
  display: block;
  text-align: center;
  width: 100%;
  padding: 0.7rem 1.5rem;
  background: var(--navy);
  color: var(--white);
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  border: 2px solid var(--navy);
  transition: var(--transition);
  margin-top: 1.25rem;
}

.btn-quarto:hover {
  background: transparent;
  color: var(--navy);
}


/* ============================================================
   SCROLL REVEAL
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   TOAST
============================================================ */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--navy);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: var(--radius);
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  border-left: 4px solid var(--blue);
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
  z-index: 9999;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}


/* ============================================================
   HEADER
============================================================ */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 0 2rem;
}

#header.scrolled {
  background: rgba(26, 37, 96, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: 1280px;
  margin: 0 auto;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}

.logo-sub {
  font-family: 'Cinzel', serif;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  color: var(--blue-light);
  text-transform: uppercase;
}

/* Nav desktop */
.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav a {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--blue-light);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.nav a:hover          { color: var(--white); }
.nav a:hover::after   { transform: scaleX(1); }

.nav a.nav-cta {
  background: var(--blue);
  color: var(--white);
  padding: 0.5rem 1.25rem;
  border-radius: 3px;
}

.nav a.nav-cta::after  { display: none; }
.nav a.nav-cta:hover   { background: var(--blue-light); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(26, 37, 96, 0.98);
  padding: 1rem 2rem 2rem;
  gap: 1rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--white);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}


/* ============================================================
   HERO
============================================================ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  animation: kenburns 8s ease-in-out infinite alternate;
}

.hero-slide.active { opacity: 1; }

@keyframes kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 37, 96, 0.75) 0%,
    rgba(38, 53, 128, 0.4) 50%,
    rgba(71, 145, 209, 0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  animation: fadeUp 1.5s ease forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--blue-light);
  border: 1px solid rgba(71, 145, 209, 0.5);
  padding: 0.5rem 1.5rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 40px rgba(0,0,0,0.3);
}

.hero-title .accent { color: var(--blue-light); }

.hero-subtitle {
  font-family: 'Cinzel', serif;
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 3;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--white);
}

.hero-scroll-hint {
  position: absolute;
  right: 2.5rem;
  bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 3;
  color: rgba(255,255,255,0.6);
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}


/* ============================================================
   SOBRE
============================================================ */
#sobre {
  padding: 0 0 8rem;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.sobre-grid a {
  background: var(--blue);
  color: var(--white);
  padding: 0.5rem 1.25rem;
  border-radius: 3px;
}

.sobre-text p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.sobre-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(38, 53, 128, 0.15);
}

.stat { display: flex; flex-direction: column; }

.stat-num {
  font-family: 'Cinzel Decorative', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

/* Imagens lado a lado com float */
.sobre-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.img-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
  cursor: pointer;
}

.img-card img      { height: 320px; }
.img-card-top      { margin-top: -2rem; }
.img-card-bottom   { margin-top: 2rem; }

.img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1rem 1rem;
  background: linear-gradient(to top, rgba(26,37,96,0.85), transparent);
  color: var(--white);
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

@keyframes floatDown {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(12px); }
}

.float-up   { animation: floatUp   5s ease-in-out infinite; }
.float-down { animation: floatDown 5s ease-in-out infinite 0.5s; }


/* ============================================================
   DESTINOS & PASSEIOS
============================================================ */
#destinos {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.destinos-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
}

.destinos-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(71,145,209,0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(71,145,209,0.15) 0%, transparent 50%);
}

.destinos-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--cream), transparent);
}

.destinos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.destino-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
}

.destino-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.2);
}

.destino-card.featured {
  border: 2px solid var(--blue);
}

.destino-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  background: var(--blue);
  color: var(--white);
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.destino-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.destino-card:hover .destino-img { transform: scale(1.05); }

.destino-body { padding: 1.5rem; }

.destino-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-family: 'Cinzel', serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  border: 1px solid var(--blue);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  margin-bottom: 0.75rem;
}

.destino-body h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.destino-body p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.destino-footer {
  display: flex;
  align-items: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(38, 53, 128, 0.1);
}

.destino-info {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.destino-info i,
.destino-info svg {
  width: 13px;
  height: 13px;
  stroke: var(--text-muted);
  stroke-width: 1.5;
}

.destino-price {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
}

.destino-price span {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 400;
}


/* ============================================================
   COMODIDADES
============================================================ */
#comodidades {
  padding: 8rem 0;
}

.comodidades-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.comod-item {
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(38, 53, 128, 0.08);
  transition: var(--transition);
  text-align: center;
}

.comod-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: var(--blue);
}

.comod-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(38, 53, 128, 0.15);
  border-radius: 50%;
  transition: var(--transition);
}

.comod-icon i,
.comod-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--navy);
  stroke-width: 1.5;
  transition: stroke 0.3s;
}

.comod-item:hover .comod-icon {
  background: var(--navy);
  border-color: var(--navy);
}

.comod-item:hover .comod-icon i,
.comod-item:hover .comod-icon svg { stroke: var(--white); }

.comod-item h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.comod-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}


/* ============================================================
   RESTAURANTE EL MIRADOR
============================================================ */
#restaurante {
  background: var(--navy);
  overflow: hidden;
}

.restaurante-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}

.restaurante-img-side {
  position: relative;
  overflow: hidden;
}

.restaurante-img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.restaurante-img-side:hover img { transform: scale(1.03); }

.restaurante-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem 2rem 2rem;
  background: linear-gradient(to top, rgba(26,37,96,0.9), transparent);
}

.restaurante-quote {
  font-family: 'Cinzel', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--blue-light);
  line-height: 1.6;
}

.restaurante-content {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.restaurante-desc {
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem;
}

.menu-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.menu-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  border-left: 3px solid var(--blue);
  transition: var(--transition);
}

.menu-item:hover {
  background: rgba(255,255,255,0.1);
  border-left-color: var(--blue-light);
}

.menu-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(71, 145, 209, 0.35);
  border-radius: 8px;
  background: rgba(71, 145, 209, 0.08);
}

.menu-icon i,
.menu-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--blue-light);
  stroke-width: 1.5;
}

.menu-item strong {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.menu-item span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

.restaurante-horarios {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.horario-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.horario-item span {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'Cinzel', serif;
}

.horario-item strong {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  color: var(--blue-light);
}

#restaurante .btn-primary {
  background: var(--blue);
  border-color: var(--blue);
}

#restaurante .btn-primary:hover {
  background: transparent;
  color: var(--white);
}


/* ============================================================
   QUARTOS
============================================================ */
#quartos {
  padding: 8rem 0;
  background: var(--cream);
}

.quartos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.quarto-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.quarto-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(38, 53, 128, 0.18);
}

.quarto-card.premium { border: 2px solid var(--blue); }

/* Mini-slideshow dentro do card */
.quarto-img-wrap {
  height: 260px;
  position: relative;
  overflow: hidden;
}

.quarto-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.quarto-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  cursor: pointer;
}

.quarto-slide.active { opacity: 1; }

/* Setas do mini-slide */
.qs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 30px;
  height: 30px;
  background: rgba(255,255,255,0.85);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s;
}

.quarto-img-wrap:hover .qs-arrow { opacity: 1; }
.qs-prev { left: 0.5rem; }
.qs-next { right: 0.5rem; }

.qs-arrow i,
.qs-arrow svg {
  width: 14px;
  height: 14px;
  stroke: var(--navy);
  stroke-width: 2;
}

/* Dots do mini-slide */
.qs-dots {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
  z-index: 4;
}

.qs-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, width 0.3s;
}

.qs-dot.active {
  background: var(--white);
  width: 14px;
  border-radius: 3px;
}

/* Tag do quarto */
.quarto-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 3;
  background: var(--navy);
  color: var(--white);
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
}

.quarto-tag.gold { background: var(--gold); }

/* Corpo do card */
.quarto-body { padding: 1.75rem; }

.quarto-body h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.quarto-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  min-height: 320px;
}

/* Ícones de amenidade (clicáveis) */
.quarto-amenities-icons {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.amenity-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(38, 53, 128, 0.18);
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}

.amenity-btn i,
.amenity-btn svg {
  width: 16px;
  height: 16px;
  stroke: var(--navy);
  stroke-width: 1.5;
  transition: stroke 0.3s;
}

.amenity-btn:hover,
.amenity-btn.active {
  background: var(--navy);
  border-color: var(--navy);
}

.amenity-btn:hover i,
.amenity-btn:hover svg,
.amenity-btn.active i,
.amenity-btn.active svg { stroke: var(--white); }

/* Tooltip do amenity */
.amenity-tooltip {
  min-height: 26px;
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--navy);
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(38, 53, 128, 0.1);
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.amenity-tooltip.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   DEPOIMENTOS — 3 por slide
============================================================ */
#depoimentos {
  padding: 8rem 0;
  background: var(--navy);
}

#depoimentos .section-label {
  color: var(--blue-light);
}

#depoimentos .section-label::before,
#depoimentos .section-label::after { background: var(--blue-light); }

#depoimentos .section-title       { color: var(--white); }
#depoimentos .section-title em    { color: var(--blue-light); }

/* Layout com setas e viewport */
.depo-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
}

.depo-viewport {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}

.depo-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.depo-slide {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  width: 100%;
  min-width: 100%;
  flex: 0 0 100%;
}

.depo-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.depo-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 1.25rem;
}

.depo-stars i,
.depo-stars svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
  fill: var(--gold);
  stroke-width: 1;
}

.depo-card p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.8);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.depo-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.depo-avatar {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
}

.depo-author strong {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.depo-author span {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
}

/* Setas dos depoimentos */
.depo-arrow {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.depo-arrow:hover {
  background: var(--blue);
  border-color: var(--blue);
}

.depo-arrow i,
.depo-arrow svg {
  width: 18px;
  height: 18px;
  stroke: rgba(255,255,255,0.8);
  stroke-width: 1.5;
}

/* Dots dos depoimentos */
.depo-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.depo-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.depo-dot.active {
  width: 24px;
  border-radius: 3px;
  background: var(--blue-light);
}


/* ============================================================
   LOCALIZAÇÃO
============================================================ */
#localizacao {
  padding: 8rem 0;
  background: var(--white);
}

.localizacao-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}

.localizacao-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.loc-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.loc-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-pale);
  border-radius: 10px;
  border: 1px solid rgba(38, 53, 128, 0.1);
}

.loc-icon i,
.loc-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--navy);
  stroke-width: 1.5;
}

.loc-item strong {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.25rem;
  letter-spacing: 0.05em;
}

.loc-item p {
  font-size: 1.0rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Formulário */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 2rem;
  background: var(--blue-pale);
  border-radius: var(--radius-lg);
}

.contact-form h4 {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 0.8rem 1rem;
  border: 1px solid rgba(38, 53, 128, 0.2);
  border-radius: 6px;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--blue); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

/* Mapa */
.localizacao-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.localizacao-map iframe { display: block; }


/* ============================================================
   GALERIA — 10 imagens grid assimétrico
============================================================ */
#galeria {
  padding: 8rem 0;
  background: var(--cream);
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 220px 220px;
  gap: 1rem;
  margin-top: 3rem;
}

/* Layout posicional dos 10 items */
.gal-item:nth-child(1)  { grid-column: span 1; grid-row: span 2; }
.gal-item:nth-child(5)  { grid-column: span 2; }
.gal-item:nth-child(8)  { grid-column: span 1; grid-row: span 2; }

.gal-item {
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gal-item:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
  z-index: 1;
}

.gal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 37, 96, 0);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  transition: background 0.4s ease;
}

.gal-item:hover .gal-overlay { background: rgba(26, 37, 96, 0.55); }

.gal-overlay span {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--white);
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}

.gal-item:hover .gal-overlay span {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   RODAPÉ
============================================================ */
#footer {
  background: var(--navy-dark);
  color: var(--white);
  padding-top: 5rem;
}

.footer-top {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}

.footer-top > :nth-child(4) { grid-column: 1 / -1; }

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--blue);
  transform: translateY(-3px);
}

.footer-social a i,
.footer-social a svg {
  width: 16px;
  height: 16px;
  stroke: rgba(255,255,255,0.75);
  stroke-width: 1.5;
}

.footer-links h5,
.footer-contact h5 {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--white); }

.footer-contact p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-ornament {
  text-align: center;
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.12);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}


/* ============================================================
   LIGHTBOX
============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(5, 10, 35, 0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lb-img-wrap {
  max-width: 90vw;
  max-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb-img-wrap img {
  max-width: 90vw;
  max-height: 78vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

.lb-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.lb-close:hover { background: rgba(255,255,255,0.2); }

.lb-close i,
.lb-close svg {
  width: 20px;
  height: 20px;
  stroke: var(--white);
  stroke-width: 1.5;
}

.lb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10002;
}

.lb-arrow:hover   { background: var(--blue); border-color: var(--blue); }
.lb-prev          { left: 1.5rem; }
.lb-next          { right: 1.5rem; }

.lb-arrow i,
.lb-arrow svg {
  width: 22px;
  height: 22px;
  stroke: var(--white);
  stroke-width: 1.5;
}

.lb-caption {
  margin-top: 1.25rem;
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
}

.lb-counter {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  font-family: 'Cinzel', serif;
  letter-spacing: 0.1em;
}


/* ============================================================
   RESPONSIVE — 1024px
============================================================ */
@media (max-width: 1024px) {
  .sobre-grid              { grid-template-columns: 1fr; gap: 3rem; }
  .sobre-images            { display: flex; gap: 1rem; }
  .img-card img            { height: 220px; }
  .img-card-top,
  .img-card-bottom         { margin-top: 0; }
  .float-up,
  .float-down              { animation: none; }
  .destinos-grid           { grid-template-columns: repeat(2, 1fr); }
  .comodidades-grid        { grid-template-columns: repeat(2, 1fr); }
  .quartos-grid            { grid-template-columns: repeat(2, 1fr); }
  .footer-top              { grid-template-columns: repeat(3, 1fr); }
  .footer-top > :nth-child(4) { grid-column: 1 / -1; }
  .galeria-grid            { grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; }
  .gal-item:nth-child(1),
  .gal-item:nth-child(8)   { grid-row: span 1; }
}


/* ============================================================
   RESPONSIVE — 768px
============================================================ */
@media (max-width: 768px) {
  .nav                     { display: none; }
  .hamburger               { display: flex; }

  .hero-title              { font-size: clamp(2.2rem, 10vw, 4rem); }

  .sobre-images            { flex-direction: column; }

  .destinos-grid           { grid-template-columns: 1fr; }
  .comodidades-grid        { grid-template-columns: 1fr 1fr; }
  .quartos-grid            { grid-template-columns: 1fr; }

  .restaurante-inner       { grid-template-columns: 1fr; }
  .restaurante-img-side    { height: 300px; }
  .restaurante-content     { padding: 2.5rem 1.5rem; }

  .depo-slide              { grid-template-columns: 1fr; gap: 1rem; }
  .depo-wrap               { gap: 0.5rem; }

  .localizacao-grid        { grid-template-columns: 1fr; }

  .galeria-grid            { grid-template-columns: repeat(2, 1fr); }
  .gal-item:nth-child(5)   { grid-column: span 2; }

  .footer-top              { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom           { flex-direction: column; gap: 0.5rem; text-align: center; }

  #sobre                   { padding: 4rem 0; }
  #destinos,
  #comodidades,
  #restaurante,
  #quartos,
  #depoimentos,
  #localizacao,
  #galeria                 { padding: 5rem 0; }

  .container               { padding: 0 1.25rem; }

  .lb-prev                 { left: 0.5rem; }
  .lb-next                 { right: 0.5rem; }
}


/* ============================================================
   RESPONSIVE — 480px
============================================================ */
@media (max-width: 480px) {
  .comodidades-grid        { grid-template-columns: 1fr; }
  .galeria-grid            { grid-template-columns: 1fr; }
  .gal-item:nth-child(5)   { grid-column: span 1; }
  .sobre-stats             { flex-direction: column; gap: 1rem; }
  .hero-actions            { flex-direction: column; align-items: center; }
  .depo-arrow              { display: none; }

  /* Torna setas do lightbox acessíveis em celulares */
  .lb-arrow {
    display: flex !important;
    opacity: 0.95;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    background: rgba(255, 255, 255, 0.22) !important;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 10003;
  }
}

/* mantém desktop 4 colunas (já existente) */

/* MOBILE */
@media (max-width: 768px) {
  #galeria {
    padding: 5rem 1rem 5rem;
    display: block !important;
  }

  .galeria-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-auto-rows: minmax(180px, auto) !important;
    gap: 0.75rem !important;
  }

  .gal-item {
    min-height: 180px;
  }

  .gal-item:nth-child(1),
  .gal-item:nth-child(5),
  .gal-item:nth-child(8) {
    grid-column: span 1 !important;
    grid-row: auto !important;
  }
}

