/* === IMPORT FONTS === */
@import url("https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@500;700;900&display=swap");

:root {
  --bg: #0d0d0d;
  --bg2: #050505;
  --gold: #c9a84c;
  --green: #2d5a27;
  --terracotta: #8b4513;
  --stone: #d4c5a9;
  --mist: #f5f0e8;
  --mystic: #6b3fa0;
  --text: #f5f0e8;
  --subtext: #d4c5a9;
  --border: rgba(201, 168, 76, 0.3);
  --shadow: rgba(0, 0, 0, 0.45);
  --radius: 14px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, #111 0%, #090909 38%, #030303 100%);
}

body {
  min-height: 100vh;
}

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

button {
  cursor: pointer;
  font: inherit;
}

/* === RESET E UTILITIES === */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

.section-title {
  font-family: "Playfair Display", serif;
  text-align: center;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  letter-spacing: 0.04em;
  margin-bottom: 0.8rem;
}

.decor-line {
  height: 3px;
  width: 80px;
  background: linear-gradient(90deg, rgba(201, 168, 76, 1), rgba(201, 168, 76, 0.3));
  margin: 0.4rem auto 1.5rem;
  border-radius: 99px;
}

.blur-panel {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(12, 12, 12, 0.46);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 12px;
}

.gold-btn {
  border: 1px solid var(--gold);
  background: linear-gradient(145deg, rgba(201, 168, 76, 0.95), rgba(152, 112, 39, 0.7));
  color: #080700;
  font-weight: 700;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  border-radius: 999px;
  padding: 0.82rem 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.gold-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.55);
}

.outline-btn {
  border: 1px solid rgba(255, 255, 255, 0.75);
  color: #fff;
  background: transparent;
  border-radius: 999px;
  padding: 0.78rem 1.35rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.outline-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.shadow-inset {
  box-shadow: inset 0 0 64px rgba(0, 0, 0, 0.45);
}

.text-small {
  font-size: 0.95rem;
  color: var(--stone);
  letter-spacing: 0.04em;
}

.grid-3 {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ghost-shadow {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* === NAVBAR === */
header {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0.7rem 1rem;
  transition: background 0.4s ease, border-bottom 0.4s ease, backdrop-filter 0.4s ease;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

header.scrolled {
  background: rgba(5, 5, 5, 0.9);
  border-bottom: 1px solid rgba(201, 168, 76, 0.45);
}

.nav-wrap {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.2rem 0.3rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 14px;
}

/* ESTILOS DA MARCA E LOGOTIPO */
.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: "Cinzel Decorative", serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--gold);
  transition: opacity 0.3s ease;
}

.logo-container {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid rgba(201, 168, 76, 0.95);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.3), inset 0 0 6px rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  transition: all 0.35s ease;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s var(--ease);
}

.brand-text {
  font-size: 0.9rem;
  color: #f3ebd8;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: color 0.3s ease;
}

/* Efeitos Hover no Link inteiro (.brand) */
.brand:hover .logo-container {
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.6), inset 0 0 12px rgba(201, 168, 76, 0.3);
  border-color: #fff;
}

.brand:hover .brand-logo {
  transform: scale(1.08);
}

.brand:hover .brand-text {
  color: var(--gold);
}

.menu-links {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  color: var(--stone);
}

.menu-links a {
  position: relative;
  padding: 0.2rem;
  border-radius: 8px;
  transition: color 0.25s ease;
}

.menu-links a:hover {
  color: var(--gold);
}

.btn-reserve {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(201, 168, 76, 1), rgba(156, 120, 48, 0.9));
  color: #0e0800;
  border: 1px solid #e5cd76;
  border-radius: 999px;
  font-weight: 700;
  padding: 0.64rem 1rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-reserve:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.45);
}

.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  position: relative;
  background: rgba(15, 15, 15, 0.7);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
}

.hamburger div {
  width: 20px;
  height: 2px;
  background: #f5f0e8;
  border-radius: 2px;
  position: absolute;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.hamburger div:nth-child(1) {
  top: 13px;
}

.hamburger div:nth-child(2) {
  top: 20px;
}

.hamburger div:nth-child(3) {
  top: 27px;
}

.hamburger.active div:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active div:nth-child(2) {
  opacity: 0;
}

.hamburger.active div:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 60px 1rem auto auto;
  width: min(280px, 90vw);
  transform: translateX(115%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.35s ease, opacity 0.35s ease;
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 16px;
  background: rgba(13, 14, 10, 0.96);
  padding: 1rem;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
  z-index: 998;
  backdrop-filter: blur(8px);
}

.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  display: block;
  color: var(--mist);
  margin-bottom: 0.65rem;
  padding: 0.45rem;
  border-radius: 10px;
  transition: background 0.25s ease;
  font-weight: 500;
}

.mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* === HERO === */
#hero {
  min-height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}

#hero .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.65);
  transition: background-image 1s ease;
}

#hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6), rgba(13, 30, 13, 0.4));
  z-index: 1;
  pointer-events: none;
}

#hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 900px;
  padding: 6rem 1rem 2.5rem;
  display: grid;
  gap: 1.1rem;
  align-items: center;
  animation: fadeInHero 1s ease var(--ease);
}

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

.hero-tag {
  color: var(--gold);
  letter-spacing: 0.24em;
  font-family: "Cinzel Decorative", serif;
  text-transform: uppercase;
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 1.05;
  letter-spacing: 0.015em;
  font-weight: 900;
  color: #fff;
  text-shadow: 1px 1px 14px rgba(0, 0, 0, 0.64);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: var(--stone);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.hero-buttons {
  display: inline-flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.4rem;
}

.hero-stats {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  justify-content: center;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(15, 15, 15, 0.58);
  border: 1px solid rgba(217, 179, 95, 0.4);
  margin-top: 0.4rem;
  color: #f5f0e8;
  font-weight: 500;
  letter-spacing: 0.03em;
  font-size: 0.95rem;
}

.hero-stat strong {
  color: var(--gold);
  font-weight: 700;
}

.scroll-down {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 46px;
  border: 2px solid #ddd;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 6px;
  opacity: 0.9;
  animation: bounce 1.6s infinite;
  z-index: 3;
}

.scroll-down::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  animation: scrollDot 1.6s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translate(-50%, 0) scale(1);
  }
  50% {
    transform: translate(-50%, 10px) scale(0.98);
  }
}

@keyframes scrollDot {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}

/* === SOBRE === */
#sobre {
  padding: 5rem 0 4rem;
  background: linear-gradient(130deg, rgba(13, 30, 13, 0.9), rgba(9, 9, 9, 0.92));
}

#sobre .content {
  display: grid;
  grid-template-columns: 1.18fr 1fr;
  gap: 1.8rem;
  align-items: center;
}

#sobre .about-text {
  color: #ece4d7;
  line-height: 1.68;
}

#sobre h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  color: var(--mist);
}

#sobre p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.info-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.2rem;
}

.info-icons span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(39, 70, 39, 0.25);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
  font-weight: 500;
  color: var(--stone);
  font-size: 0.92rem;
}

.sobre-img {
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.5);
  transform: translateY(0);
}

.sobre-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow: inset 0 0 45px rgba(0, 0, 0, 0.42);
}

/* === EXPERIÊNCIAS === */
#experiencias {
  padding: 5rem 0 4rem;
  background: linear-gradient(120deg, rgba(8, 30, 12, 0.95), rgba(5, 5, 5, 0.96));
}

.experiences-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}

.exp-card {
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 18px;
  background: rgba(13, 13, 13, 0.97);
  padding: 1.2rem;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s ease;
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.38);
}

.exp-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(20deg, rgba(12, 20, 13, 0.48), rgba(0, 0, 0, 0.45));
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: 18px;
  pointer-events: none;
}

.exp-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 168, 76, 0.7);
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.56);
}

.exp-card:hover::before {
  opacity: 1;
}

.exp-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  text-transform: uppercase;
}

.exp-meta {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.exp-card h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.4rem, 2.3vw, 1.75rem);
  margin: 0.3rem 0;
}

.exp-card .desc {
  color: var(--stone);
  line-height: 1.58;
  margin-bottom: 0.6rem;
  flex: 1;
}

.check-list {
  list-style: none;
  display: grid;
  gap: 0.45rem;
  margin-bottom: 0.8rem;
  color: #efebd8;
}

.check-list li::before {
  content: "✓";
  color: var(--gold);
  margin-right: 0.5rem;
  font-weight: 700;
}

.exp-card .btn-sec {
  align-self: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(250, 250, 250, 0.08);
  color: #fef6e8;
  border-radius: 999px;
  padding: 0.53rem 0.95rem;
  font-weight: 700;
  transition: background 0.3s ease, transform 0.3s ease;
  z-index: 1;
}

.exp-card .btn-sec:hover {
  background: rgba(201, 168, 76, 0.35);
  transform: translateY(-1.5px);
}

.exp-1 .exp-badge {
  background: rgba(45, 90, 39, 0.96);
  color: #e6f1dc;
}

.exp-2 {
  border: 1px solid rgba(237, 199, 100, 0.45);
  background: linear-gradient(145deg, rgba(47, 46, 31, 0.95), rgba(9, 9, 9, 0.94));
}

.exp-2 .exp-badge {
  background: rgba(201, 168, 76, 0.95);
  color: #2e2105;
}

.exp-3 .exp-badge {
  background: rgba(107, 63, 160, 0.92);
  color: #fff;
}

/* === GALERIA === */
#galeria {
  padding: 5rem 0 3.5rem;
  background: linear-gradient(110deg, rgba(5, 5, 5, 0.95), rgba(13, 23, 20, 0.96));
}

#galeria .filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.gallery-filter {
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--stone);
  background: rgba(21, 35, 24, 0.6);
  border-radius: 999px;
  padding: 0.58rem 0.95rem;
  font-weight: 600;
  transition: background 0.25s ease, color 0.25s ease;
}

.gallery-filter.active {
  background: rgba(201, 168, 76, 0.92);
  color: #0f0a00;
}

.gallery-grid {
  column-count: 3;
  column-gap: 0.95rem;
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
}

.gallery-item {
  margin-bottom: 0.95rem;
  overflow: hidden;
  position: relative;
  border-radius: 16px;
  transition: transform 0.4s var(--ease), opacity 0.35s ease;
  transform-origin: center;
  break-inside: avoid;
  cursor: pointer;
}

.gallery-item.hide {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  height: 0;
  margin: 0;
  padding: 0;
  transition: opacity 0.35s ease, height 0.35s ease 0.1s, margin 0.35s ease 0.1s;
}

.gallery-item img {
  width: 100%;
  display: block;
  border-radius: 16px;
  object-fit: cover;
  filter: brightness(0.9);
  transition: transform 0.45s ease;
}

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

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.7));
  opacity: 0;
  transition: opacity 0.28s ease;
  display: flex;
  align-items: flex-end;
  border-radius: 16px;
  padding: 0.8rem;
}

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

.gallery-item .overlay p {
  margin: 0;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.8);
}

.gallery-item .overlay i {
  margin-right: 0.5rem;
  font-size: 0.96rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1.5rem;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  max-width: 95vw;
  max-height: 90vh;
  position: relative;
}

.lightbox-content img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: contain;
}

.lightbox-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  cursor: pointer;
}

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

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

.lightbox-close {
  position: absolute;
  right: -45px;
  top: -45px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  cursor: pointer;
}

/* === DEPOIMENTOS === */
#depoimentos {
  padding: 5rem 0 4rem;
  background-image: radial-gradient(circle at 10% 20%, rgba(38, 44, 27, 0.47), rgba(5, 5, 5, 0.9)),
    radial-gradient(circle at 80% 80%, rgba(38, 44, 27, 0.24), transparent 48%),
    linear-gradient(130deg, rgba(13, 27, 14, 0.98), rgba(9, 9, 9, 0.97));
  position: relative;
  overflow: hidden;
}

#depoimentos::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 15% 16%, rgba(255, 255, 255, 0.01), transparent),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.02) 0 2px, transparent 2px 6px);
  pointer-events: none;
}

.carousel-wrap {
  position: relative;
  overflow: hidden;
  max-width: 1080px;
  margin: 2rem auto 0;
}

.carousel-track {
  display: flex;
  transition: transform 0.8s var(--ease);
  width: max-content;
  position: relative;
}

.slide {
  min-width: 100%;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem;
  border-radius: 16px;
  background: rgba(10, 12, 12, 0.73);
  border: 1px solid rgba(201, 168, 76, 0.2);
  z-index: 1;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide.active {
  opacity: 1;
  transform: translateX(0);
}

.slide-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.45);
  flex-shrink: 0;
  display: grid;
  place-items: center;
}

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

.slide-content h3 {
  margin-bottom: 0.15rem;
  font-size: 1.1rem;
  color: var(--mist);
}

.slide-content small {
  display: block;
  margin-bottom: 0.8rem;
  color: #b8b7a8;
}

.stars {
  color: #f4d54c;
  margin-bottom: 0.85rem;
}

.slide-content p {
  color: #ece3d4;
  line-height: 1.65;
  font-size: 1rem;
  position: relative;
  padding-left: 1.1rem;
}

.slide-content p::before {
  content: '“';
  position: absolute;
  left: 0;
  top: -6px;
  color: var(--gold);
  font-size: 2rem;
  line-height: 1;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.2rem;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: transparent;
  transition: background 0.3s ease;
}

.testimonial-dot.active {
  background: var(--gold);
  border-color: var(--gold);
}

/* === LOCALIZAÇÃO === */
#localizacao {
  padding: 5rem 0 4rem;
  background: linear-gradient(145deg, rgba(8, 21, 16, 0.9), rgba(4, 8, 6, 0.9));
}

#localizacao .location-wrap {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.1rem;
  align-items: start;
}

#localizacao .map-card {
  background: #132f1c;
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  min-height: 420px;
  position: relative;
  padding: 1rem;
}

#localizacao .map-card svg {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

#localizacao .map-card .legend {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(0, 0, 0, 0.4);
  color: #faf3e9;
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 10px;
  padding: 0.55rem 0.8rem;
  font-size: 0.8rem;
  line-height: 1.35;
}

#localizacao .tabs {
  background: rgba(12, 15, 11, 0.78);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.35);
}

#localizacao .tab-btns {
  display: flex;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

#localizacao .tab-btn {
  flex: 1;
  padding: 0.75rem 0.7rem;
  background: transparent;
  color: var(--stone);
  font-weight: 600;
  border: none;
  transition: background 0.3s ease, color 0.3s ease;
}

#localizacao .tab-btn.active {
  background: rgba(201, 168, 76, 0.17);
  color: #f6e9cf;
  border-bottom: 2px solid var(--gold);
}

#localizacao .tab-content {
  padding: 1rem;
  color: #e7ddcb;
  font-size: 0.95rem;
  line-height: 1.6;
}

#localizacao .tip-card {
  margin-top: 1rem;
  background: #2d3f2f;
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 12px;
  padding: 0.95rem 1rem;
  display: flex;
  gap: 0.7rem;
  align-items: center;
}

#localizacao .tip-card i {
  color: var(--gold);
  font-size: 1.2rem;
}

#localizacao .tip-card p {
  margin: 0;
  font-weight: 500;
  color: #f8f3e8;
}

/* === PACOTES === */
#pacotes {
  padding: 5rem 0 4rem;
  background: linear-gradient(130deg, rgba(10, 11, 10, 0.82), rgba(4, 5, 4, 0.92));
}

.packs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.pack-card {
  border: 1px solid rgba(201, 168, 76, 0.22);
  background: rgba(15, 15, 15, 0.9);
  border-radius: 16px;
  padding: 1.2rem;
  overflow: hidden;
  position: relative;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.38);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  min-height: 380px;
}

.pack-card .label {
  display: inline-flex;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #120d02;
  background: linear-gradient(160deg, rgba(201, 168, 76, 1), rgba(209, 179, 110, 0.9));
  align-self: flex-start;
}

.pack-card h3 {
  font-family: "Playfair Display", serif;
  margin: 0;
  font-size: 1.45rem;
  color: var(--mist);
}

.pack-card .price {
  font-size: clamp(1.7rem, 2.2vw, 2.2rem);
  font-weight: 700;
  color: var(--gold);
}

.pack-card ul {
  list-style: none;
  margin-top: 0.8rem;
  display: grid;
  gap: 0.45rem;
}

.pack-card ul li::before {
  content: "✓";
  color: #a6d982;
  margin-right: 0.4rem;
  font-weight: 700;
}

.pack-card .pack-btn {
  margin-top: auto;
  font-weight: 700;
  padding: 0.55rem 0.95rem;
  border: 1px solid rgba(201, 168, 76, 0.3);
  background: linear-gradient(160deg, rgba(201, 168, 76, 0.94), rgba(161, 121, 49, 0.74));
  color: #140a00;
  border-radius: 999px;
  text-transform: uppercase;
  transition: transform 0.3s ease;
}

.pack-card .pack-btn:hover {
  transform: translateY(-2px);
}

.pack-note {
  color: var(--stone);
  font-size: 0.92rem;
  margin-top: 0.8rem;
}

/* === CONTATO === */
#contato {
  padding: 5rem 0 3.2rem;
  background: linear-gradient(150deg, rgba(8, 16, 11, 0.96), rgba(3, 3, 3, 0.94));
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 1.25rem;
}

.form-card,
.contact-card {
  background: rgba(12, 13, 12, 0.95);
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-radius: 14px;
  padding: 1.2rem;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.38);
}

.form-card h2,
.contact-card h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.75rem;
  margin-bottom: 0.9rem;
  color: var(--mist);
}

.field-group {
  position: relative;
  margin-bottom: 1rem;
}

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  background: rgba(18, 19, 16, 0.9);
  border: 1px solid rgba(188, 162, 96, 0.38);
  border-radius: 10px;
  padding: 0.9rem 0.8rem 0.35rem 0.8rem;
  color: #f9f5e8;
  font-size: 0.95rem;
  outline: none;
}

.field-group textarea {
  min-height: 110px;
  resize: vertical;
}

.field-group label {
  position: absolute;
  top: 0.78rem;
  left: 0.8rem;
  color: rgba(231, 221, 193, 0.75);
  font-size: 0.87rem;
  pointer-events: none;
  transition: all 0.25s ease;
  background: rgba(13, 13, 13, 0.95);
  padding: 0 0.2rem;
}

.field-group.focused label,
.field-group input:not(:placeholder-shown) + label,
.field-group textarea:not(:placeholder-shown) + label,
.field-group select:not(:placeholder-shown) + label {
  top: -0.5rem;
  left: 0.68rem;
  font-size: 0.76rem;
  color: #d4c7ac;
}

.field-group .error-msg {
  color: #ffb2b2;
  font-size: 0.82rem;
  margin-top: 0.24rem;
  display: none;
}

.field-group.error .error-msg {
  display: block;
}

.submit-btn {
  width: 100%;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.99), rgba(141, 113, 42, 0.82));
  color: #100800;
  font-weight: 700;
  padding: 0.85rem 1rem;
  transition: transform 0.25s ease;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.submit-btn:hover {
  transform: translateY(-1px);
}

.submit-btn.disabled {
  opacity: 0.7;
  pointer-events: none;
}

.success-message {
  display: none;
  border: 1px solid rgba(144, 202, 145, 0.75);
  background: rgba(63, 112, 54, 0.26);
  border-radius: 12px;
  padding: 1rem;
  color: #dff3d9;
  font-weight: 600;
  line-height: 1.4;
}

.contact-list {
  list-style: none;
  color: #f4efe3;
  display: grid;
  gap: 0.68rem;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-list li svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  margin-top: 1rem;
}

.trust-badges span {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: #f5f0e8;
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  font-weight: 600;
  font-size: 0.83rem;
  text-align: center;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25d366;
  color: #041f0f;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.6rem 0.9rem;
  transition: transform 0.2s ease;
  text-decoration: none;
}

.whatsapp-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

/* === FOOTER === */
footer {
  background: #050505;
  color: #c7b99f;
  padding: 3rem 0 2.2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) repeat(3, minmax(170px, 1fr));
  gap: 1rem;
}

.footer-col h4 {
  color: var(--mist);
  font-size: 1.02rem;
  margin-bottom: 0.75rem;
  font-family: "Playfair Display", serif;
}

.footer-links,
.footer-links li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.52rem;
  font-size: 0.92rem;
}

.footer-links a {
  color: #ac9c7d;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--gold);
}

.newsletter {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.6rem;
}

.newsletter input {
  width: 100%;
  border: 1px solid rgba(201, 168, 76, 0.3);
  background: rgba(10, 12, 10, 0.8);
  color: #f7f1e7;
  border-radius: 999px;
  font-size: 0.93rem;
  padding: 0.67rem 0.75rem;
  outline: none;
}

.newsletter button {
  border: none;
  border-radius: 999px;
  padding: 0.68rem 0.9rem;
  background: linear-gradient(150deg, rgba(201, 168, 76, 0.95), rgba(156, 118, 42, 0.77));
  color: #130900;
  font-weight: 700;
}

.footer-bar {
  margin-top: 1rem;
  border-top: 1px solid rgba(201, 168, 76, 0.25);
  padding-top: 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.86rem;
  color: #a89f85;
}

.top-btn {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  background: rgba(201, 168, 76, 0.95);
  color: #1c0f00;
  border-radius: 999px;
  width: 48px;
  height: 48px;
  border: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  z-index: 999;
  transition: opacity 0.3s ease;
}

.top-btn.show {
  display: flex;
  opacity: 1;
}

/* === RESPONSIVO === */
@media (max-width: 1280px) {
  .container,
  .nav-wrap {
    max-width: 1100px;
  }
  .experiences-grid {
    grid-template-columns: 1fr 1fr;
  }
  .packs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .container,
  .nav-wrap {
    max-width: 960px;
  }
  #sobre .content,
  #localizacao .location-wrap,
  #contato .contact-wrap {
    grid-template-columns: 1fr;
  }
  .experiences-grid {
    grid-template-columns: 1fr;
  }
  .packs-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    column-count: 2;
  }
  #galeria {
    padding: 4rem 0 2.8rem;
  }
}

@media (max-width: 768px) {
  #sobre,
  #experiencias,
  #galeria,
  #depoimentos,
  #localizacao,
  #pacotes,
  #contato {
    padding: 4rem 0 3rem;
  }

  .nav-wrap {
    justify-content: space-between;
  }
  .menu-links,
  .btn-reserve {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  .gallery-grid {
    column-count: 1;
  }

  #hero .hero-title {
    font-size: clamp(2rem, 7vw, 3.4rem);
  }
  .hero-sub {
    font-size: 1rem;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .hero-stats {
    flex-direction: column;
  }
  #sobre .content {
    gap: 1rem;
  }

  #localizacao .location-wrap {
    grid-template-columns: 1fr;
  }

  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .top-btn {
    right: 0.7rem;
    bottom: 0.8rem;
  }
}

@media (max-width: 480px) {
  .brand {
    font-size: 0.98rem;
  }
  /* Oculta o texto da marca no mobile para focar no logotipo */
  .brand-text {
    display: none;
  }
  
  header {
    padding: 0.5rem 0.6rem;
  }
  #sobre h2,
  #experiencias h2,
  #galeria h2,
  #depoimentos h2,
  #localizacao h2,
  #pacotes h2,
  #contato h2 {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }
  .hero-title {
    font-size: clamp(1.7rem, 9vw, 2.6rem);
  }

  .hero-content {
    padding: 5rem 0 1.8rem;
  }

  .hero-buttons {
    width: min(260px, 90%);
  }

  .form-card,
  .contact-card {
    padding: 0.94rem;
  }

  .newsletter {
    flex-direction: column;
  }

  .newsletter input {
    width: 100%;
  }
}