/* ===================== RESET & VARS ===================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --cream:           #FAF6F0;
  --warm:            #F5EDE0;
  --sand:            #E8D9C4;
  --terracota:       #B5704A;
  --terracota-dark:  #8C5235;
  --olive:           #6B7A55;
  --olive-light:     #8A9B6E;
  --brown:           #3D2B1F;
  --brown-mid:       #5C3D2A;
  --white:           #FFFFFF;
  --text:            #2E1E14;
  --text-muted:      #7A6558;
  --gold:            #C9A96E;
  --gold-light:      #E8D5A8;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Jost', sans-serif;

  --nav-h: 76px;
  --section-pad: 96px;
  --radius: 4px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition: 0.4s var(--ease);

  /* Shadows */
  --shadow-sm:  0 2px 12px rgba(61,43,31,0.08);
  --shadow-md:  0 8px 32px rgba(61,43,31,0.14);
  --shadow-lg:  0 20px 60px rgba(61,43,31,0.18);
}

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

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; }

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===================== SCROLLBAR ===================== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--terracota); border-radius: 3px; }

/* ===================== UTILITY ===================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

.section-label {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 4.5px;
  text-transform: uppercase;
  color: var(--terracota);
  margin-bottom: 14px;
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 600;
  color: var(--brown);
  line-height: 1.18;
  margin-bottom: 18px;
}
.section-title em { font-style: italic; color: var(--terracota); }
.section-desc {
  font-size: 1.03rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.85;
}
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-desc { margin: 0 auto; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 30px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.3s;
}
.btn:hover::after { background: rgba(255,255,255,0.08); }

.btn-primary { background: var(--terracota); color: var(--white); }
.btn-primary:hover { background: var(--terracota-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(181,112,74,0.35); }

.btn-outline { background: transparent; color: var(--terracota); border: 1.5px solid var(--terracota); }
.btn-outline:hover { background: var(--terracota); color: var(--white); transform: translateY(-2px); }

.btn-white { background: var(--white); color: var(--terracota); }
.btn-white:hover { background: var(--cream); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-whatsapp { background: #25D366; color: var(--white); }
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.35); }

/* ===================== TOPBAR ===================== */
.topbar {
  background: var(--brown);
  color: var(--gold-light);
  font-size: 11.5px;
  letter-spacing: 0.4px;
  padding: 7px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; }
.topbar a { color: var(--gold-light); transition: color 0.2s; }
.topbar a:hover { color: var(--gold); }
.topbar-contacts { display: flex; gap: 24px; }
.topbar-contacts span { display: flex; align-items: center; gap: 7px; }
.topbar-social { display: flex; gap: 10px; }
.topbar-social a {
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.28);
  transition: var(--transition);
  font-size: 12px;
}
.topbar-social a:hover { background: var(--terracota); border-color: var(--terracota); }

/* ===================== NAV ===================== */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sand);
  transition: box-shadow 0.3s, background 0.3s;
}
nav.scrolled { box-shadow: 0 4px 24px rgba(61,43,31,0.1); }

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-logo img { height: 48px; width: auto; object-fit: contain; opacity: 1; transition: none; }
.nav-logo-text .name {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 800;
  color: var(--brown); line-height: 1;
}
.nav-logo-text .tagline {
  font-size: 9.5px; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--terracota); margin-top: 2px;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-size: 11px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-muted); transition: color 0.2s;
  position: relative; padding-bottom: 2px;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 2px; background: var(--terracota); transition: width 0.3s;
}
.nav-link:hover, .nav-link.active { color: var(--terracota); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-admin-btn {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 20px;
  border-radius: 50%; transition: color 0.2s, background 0.2s;
}
.nav-admin-btn:hover { color: var(--terracota); background: var(--warm); }

/* Hamburger */
.hamburger { 
  display: none; 
  flex-direction: column; 
  gap: 5px; 
  cursor: pointer; 
  padding: 4px; 
}
.hamburger span { 
  display: block; 
  width: 22px; 
  height: 2px; 
  background: var(--brown); 
  transition: var(--transition); 
  border-radius: 2px; 
}

/* Mobile menu */
.mobile-menu {
  /* Substituímos o display:none por flex, mas deixamos ele fora da tela */
  display: flex; 
  position: fixed; 
  inset: 0;
  background: var(--white); 
  z-index: 9999; /* Aumentado para garantir que sobreponha tudo na tela */
  flex-direction: column; 
  align-items: center; 
  justify-content: center;
  gap: 28px;
  
  /* Esconde o menu para a direita da tela e adiciona a animação de 0.4s */
  transform: translateX(100%);
  transition: transform 0.4s ease-in-out;
}

/* Quando o JS adiciona a classe, o menu desliza para dentro */
.mobile-menu.open { 
  transform: translateX(0); 
}

.mobile-menu .menu-link {
  font-family: var(--font-display); 
  font-size: 1.9rem;
  font-weight: 600; 
  color: var(--brown); 
  transition: color 0.2s;
}

.mobile-menu .menu-link:hover { 
  color: var(--terracota); 
}

/* Botão de Fechar (X) */
.mobile-close { 
  position: absolute; 
  top: 22px; 
  right: 22px; 
  font-size: 28px; /* Aumentado levemente para toque no mobile */
  cursor: pointer; 
  color: var(--brown); 
  z-index: 10000; /* Garante que sempre fique acima dos links e do fundo */
  padding: 12px; /* Cria uma área de clique maior para o dedo */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, color 0.2s ease;
}

.mobile-close:hover {
  color: var(--terracota);
  transform: scale(1.1); /* Dá um efeitinho visual de clique no botão de fechar */
}

/* ===================== HERO ===================== */
#hero {
  position: relative; height: 100svh; min-height: 640px; overflow: hidden;
}
.hero-slides { position: relative; width: 100%; height: 100%; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.4s ease;
  will-change: opacity;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  position: absolute; inset: 0;
  transform: scale(1.06); transition: transform 9s ease;
  opacity: 1; /* hero images eager */
}
.hero-slide.active img { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(41,27,18,0.76) 0%,
    rgba(41,27,18,0.45) 55%,
    rgba(41,27,18,0.12) 100%
  );
}
.hero-content {
  position: absolute; inset: 0;
  display: flex; align-items: center; padding: 0 40px;
}
.hero-content .container { max-width: 660px; }

.hero-label {
  font-size: 10.5px; font-weight: 600; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px;
  opacity: 0; transform: translateY(18px);
  animation: fadeUp 0.9s 0.3s forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 800; color: var(--white); line-height: 1.08;
  margin-bottom: 22px;
  opacity: 0; transform: translateY(18px);
  animation: fadeUp 0.9s 0.5s forwards;
}
.hero-title em { color: var(--gold); font-style: italic; }
.hero-desc {
  font-size: 1.03rem; color: rgba(255,255,255,0.83); line-height: 1.82;
  margin-bottom: 36px;
  opacity: 0; transform: translateY(18px);
  animation: fadeUp 0.9s 0.7s forwards;
}
.hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0; transform: translateY(18px);
  animation: fadeUp 0.9s 0.9s forwards;
}
.hero-dots {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 9px; z-index: 10;
}
.hero-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer; transition: all 0.35s;
}
.hero-dot.active { background: var(--gold); width: 26px; border-radius: 4px; }
.hero-scroll {
  position: absolute; bottom: 42px; right: 56px;
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  color: rgba(255,255,255,0.55); font-size: 9.5px;
  letter-spacing: 3px; text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.45));
  animation: scrollLine 1.6s infinite;
}
@keyframes scrollLine {
  0%   { opacity: 1; transform: scaleY(1) translateY(0); }
  100% { opacity: 0; transform: scaleY(0.5) translateY(18px); }
}

/* ===================== STATS BAR ===================== */
.stats-bar { background: var(--brown); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item {
  padding: 32px 36px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display); font-size: 2.2rem;
  font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: 5px;
}
.stat-label { font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.5); }

/* ===================== ABOUT ===================== */
#sobre { padding: var(--section-pad) 0; background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-images { position: relative; height: 540px; }
.about-img-main {
  position: absolute; top: 0; left: 0; width: 74%; height: 80%;
  border-radius: 2px; overflow: hidden; box-shadow: var(--shadow-lg);
}
.about-img-accent {
  position: absolute; bottom: 0; right: 0; width: 54%; height: 54%;
  border-radius: 2px; overflow: hidden;
  border: 6px solid var(--cream); box-shadow: var(--shadow-md);
}
.about-badge {
  position: absolute; top: 50%; left: 60%;
  transform: translate(-50%, -50%);
  background: var(--terracota); color: var(--white);
  width: 116px; height: 116px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; border: 5px solid var(--cream); z-index: 5;
}
.about-badge .big { font-family: var(--font-display); font-size: 1.9rem; font-weight: 800; line-height: 1; }
.about-badge .small { font-size: 8.5px; letter-spacing: 2px; text-transform: uppercase; margin-top: 4px; }
.about-content .section-desc { margin-bottom: 28px; }
.about-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 32px;
}
.about-feature {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 15px; background: var(--warm); border-radius: var(--radius);
  transition: var(--transition);
}
.about-feature:hover { background: var(--sand); }
.about-feature-icon {
  width: 38px; height: 38px; background: var(--terracota); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
}
.about-feature-text .ttl { font-size: 13px; font-weight: 600; color: var(--brown); margin-bottom: 2px; }
.about-feature-text .dsc { font-size: 12px; color: var(--text-muted); }

/* ===================== AMBIENTES ===================== */
#ambientes { padding: var(--section-pad) 0; background: var(--warm); }
.ambientes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3px; }
.ambiente-card {
  position: relative; height: 400px;
  overflow: hidden; cursor: pointer;
}
.ambiente-card:first-child { grid-column: 1 / 3; height: 480px; }
.ambiente-card img { transition: transform 0.9s var(--ease); }
.ambiente-card:hover img { transform: scale(1.06); }
.ambiente-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(41,27,18,0.88) 0%, rgba(41,27,18,0.12) 55%, transparent 100%);
  transition: background 0.4s;
}
.ambiente-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 32px 36px;
}
.ambiente-num { font-size: 10.5px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 7px; }
.ambiente-name {
  font-family: var(--font-display); font-size: 1.7rem;
  font-weight: 600; color: var(--white); margin-bottom: 7px;
}
.ambiente-desc {
  font-size: 13.5px; color: rgba(255,255,255,0.72); line-height: 1.7;
  max-height: 0; overflow: hidden;
  transition: max-height 0.45s var(--ease), opacity 0.4s;
  opacity: 0;
}
.ambiente-card:hover .ambiente-desc { max-height: 80px; opacity: 1; }

/* ===================== GALLERY ===================== */
#galeria { padding: var(--section-pad) 0; background: var(--cream); }
.gallery-tabs {
  display: flex; justify-content: center; gap: 3px;
  margin-bottom: 44px; background: var(--warm);
  padding: 4px; border-radius: 50px;
  width: fit-content; margin-left: auto; margin-right: auto;
}
.gallery-tab {
  padding: 9px 22px; font-size: 11.5px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  border: none; background: transparent; color: var(--text-muted);
  cursor: pointer; border-radius: 50px; transition: all 0.3s;
}
.gallery-tab.active { background: var(--terracota); color: var(--white); }

/* Masonry using CSS columns */
.gallery-masonry { columns: 4; column-gap: 10px; }
.gallery-item {
  break-inside: avoid; margin-bottom: 10px;
  overflow: hidden; border-radius: var(--radius);
  position: relative; cursor: pointer;
}
.gallery-item img { transition: transform 0.6s var(--ease); height: auto; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(41,27,18,0.48);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay i { color: var(--white); font-size: 26px; }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.93); z-index: 9999;
  align-items: center; justify-content: center; padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 2px; opacity: 1; transition: opacity 0.3s; }
.lightbox-close { position: absolute; top: 22px; right: 28px; color: var(--white); font-size: 30px; cursor: pointer; transition: color 0.2s; }
.lightbox-close:hover { color: var(--gold); }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: var(--white); font-size: 28px; cursor: pointer; padding: 20px; transition: color 0.2s;
}
.lightbox-prev { left: 12px; }
.lightbox-next { right: 12px; }
.lightbox-prev:hover, .lightbox-next:hover { color: var(--gold); }

/* ===================== EVENTS ===================== */
#eventos {
  padding: var(--section-pad) 0; background: var(--brown);
  position: relative; overflow: hidden;
}
#eventos::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 460px; height: 460px; border-radius: 50%;
  background: rgba(201,169,110,0.05);
  pointer-events: none;
}
.eventos-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 44px;
}
.evento-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius); overflow: hidden;
  transition: var(--transition);
}
.evento-card:hover {
  background: rgba(255,255,255,0.07); transform: translateY(-4px);
  border-color: rgba(201,169,110,0.28);
}
.evento-img { height: 200px; position: relative; overflow: hidden; }
.evento-img img { transition: transform 0.7s var(--ease); }
.evento-card:hover .evento-img img { transform: scale(1.06); }
.evento-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--terracota); color: var(--white);
  font-size: 9.5px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 11px; border-radius: 2px; z-index: 2;
}
.evento-body { padding: 26px 26px 30px; }
.evento-icon {
  width: 44px; height: 44px; background: rgba(181,112,74,0.14);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 18px; margin-bottom: 14px;
}
.evento-name { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.evento-desc { font-size: 13.5px; color: rgba(255,255,255,0.52); line-height: 1.72; }

/* ===================== DIFERENCIAIS ===================== */
#diferenciais { padding: var(--section-pad) 0; background: var(--cream); }
.diferenciais-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.diferenciais-video {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--sand);
}
/* Video ocupa largura total, altura proporcional ao conteúdo */
.diferenciais-video video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}
/* Estilos que só faziam sentido com o player customizado — removidos */
.diferenciais-video-badge,
.play-btn { display: none; }
.diferenciais-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.diferencial-item {
  display: flex; align-items: flex-start; gap: 18px; padding: 18px 22px;
  background: var(--warm); border-radius: var(--radius);
  border-left: 3px solid var(--terracota); transition: var(--transition);
}
.diferencial-item:hover { background: var(--sand); transform: translateX(4px); }
.diferencial-icon {
  width: 42px; height: 42px; background: var(--terracota); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 15px; flex-shrink: 0;
}
.diferencial-text .ttl { font-size: 14.5px; font-weight: 600; color: var(--brown); margin-bottom: 3px; }
.diferencial-text .dsc { font-size: 13px; color: var(--text-muted); }

/* ===================== AIRBNB ===================== */
#airbnb { padding: var(--section-pad) 0; background: var(--warm); }
.airbnb-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.airbnb-images {
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr; gap: 10px; height: 420px;
}
.airbnb-images .img-big { grid-row: 1 / 3; border-radius: var(--radius); overflow: hidden; }
.airbnb-images .img-sm { border-radius: var(--radius); overflow: hidden; }
.airbnb-logo { display: flex; align-items: center; gap: 9px; margin-bottom: 18px; }
.airbnb-logo i { font-size: 26px; color: #FF5A5F; }
.airbnb-logo span { font-size: 13px; font-weight: 600; letter-spacing: 1px; color: var(--text-muted); text-transform: uppercase; }
.airbnb-features { display: flex; flex-direction: column; gap: 11px; margin: 26px 0 32px; }
.airbnb-feature { display: flex; align-items: center; gap: 13px; font-size: 14px; color: var(--text-muted); }
.airbnb-feature i { color: var(--terracota); width: 18px; text-align: center; flex-shrink: 0; }

/* ===================== CONTACT ===================== */
#contato { padding: var(--section-pad) 0; background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.contact-info { display: flex; flex-direction: column; gap: 28px; margin-top: 40px; }
.contact-item { display: flex; gap: 18px; align-items: flex-start; }
.contact-icon {
  width: 50px; height: 50px; background: var(--warm);
  border: 1.5px solid var(--sand); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--terracota); font-size: 17px; flex-shrink: 0;
}
.contact-item-text .label { font-size: 10.5px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 3px; }
.contact-item-text .value { font-size: 1rem; font-weight: 500; color: var(--brown); }
.contact-item-text .sub { font-size: 12.5px; color: var(--text-muted); }
.map-wrapper { background: var(--warm); border-radius: var(--radius); overflow: hidden; height: 260px; border: 1px solid var(--sand); margin-top: 28px; }
.map-wrapper iframe { width: 100%; height: 100%; border: none; }
.contact-form-wrapper {
  background: var(--white); padding: 38px; border-radius: var(--radius);
  box-shadow: 0 4px 40px rgba(61,43,31,0.07);
}
.contact-form-wrapper h3 { font-family: var(--font-display); font-size: 1.55rem; color: var(--brown); margin-bottom: 7px; }
.contact-form-wrapper > p { font-size: 13.5px; color: var(--text-muted); margin-bottom: 26px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 7px; }
.form-group input,
.form-group textarea {
  width: 100%; padding: 12px 15px;
  border: 1.5px solid var(--sand); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 13.5px;
  color: var(--text); background: var(--cream);
  transition: border-color 0.2s; outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--terracota); }
.form-group textarea { resize: vertical; min-height: 115px; }

/* ===================== CTA STRIP ===================== */
.cta-strip {
  background: linear-gradient(135deg, var(--terracota) 0%, var(--terracota-dark) 100%);
  padding: 68px 0; text-align: center;
}
.cta-strip h2 {
  font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.7rem);
  font-weight: 700; color: var(--white); margin-bottom: 14px;
}
.cta-strip p { font-size: 1rem; color: rgba(255,255,255,0.78); margin-bottom: 32px; }
.cta-strip-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ===================== FOOTER ===================== */
footer { background: var(--brown); padding: 68px 0 0; color: rgba(255,255,255,0.55); }
.footer-grid {
  display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.3fr; gap: 56px;
  padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand img { height: 52px; width: auto; object-fit: contain; margin-bottom: 14px; opacity: 1; }
.footer-brand .tagline { font-family: var(--font-display); font-style: italic; font-size: 1.05rem; color: var(--gold); margin-bottom: 14px; }
.footer-brand p { font-size: 13px; line-height: 1.82; max-width: 270px; margin-bottom: 22px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 34px; height: 34px; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45); font-size: 12px; transition: var(--transition);
}
.footer-social a:hover { background: var(--terracota); border-color: var(--terracota); color: var(--white); }
.footer-col h4 { font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: 13.5px; color: rgba(255,255,255,0.48); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 13px; font-size: 13.5px; }
.footer-contact-item i { color: var(--terracota); margin-top: 2px; width: 15px; flex-shrink: 0; }
.footer-bottom {
  padding: 18px 0; display: flex; align-items: center;
  justify-content: space-between; font-size: 11.5px;
}
.footer-bottom a { color: var(--gold); }

/* ===================== WHATSAPP FLOAT ===================== */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 56px; height: 56px; background: #25D366;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 22px;
  box-shadow: 0 4px 18px rgba(37,211,102,0.38);
  transition: var(--transition); animation: waPulse 2.2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,0.5); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 18px rgba(37,211,102,0.38); }
  50%  { box-shadow: 0 4px 26px rgba(37,211,102,0.55), 0 0 0 7px rgba(37,211,102,0.1); }
}

/* ===================== REVEAL ANIMATIONS ===================== */
.reveal        { opacity: 0; transform: translateY(32px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal-left   { opacity: 0; transform: translateX(-32px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal-right  { opacity: 0; transform: translateX(32px);  transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }

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

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .nav-links, .nav-cta .btn-outline { display: none; }
  .hamburger { display: flex; }
  .about-grid, .diferenciais-layout, .airbnb-inner, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-images { height: 360px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry { columns: 2; }
  .eventos-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .ambientes-grid { grid-template-columns: 1fr; }
  .ambiente-card:first-child { grid-column: 1; height: 380px; }
}
@media (max-width: 600px) {
  :root { --section-pad: 64px; }
  .container { padding: 0 18px; }
  .topbar-contacts { display: none; }
  .eventos-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .gallery-masonry { columns: 2; }
  .hero-btns { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 7px; text-align: center; }
  .cta-strip-btns { flex-direction: column; align-items: center; }
  .airbnb-images { height: 300px; }
  .hero-scroll { display: none; }
}

html, body {
  overflow-x: hidden;
  max-width: 100%;
  width: 100vw;
}