:root {
  --primary-color: #3A4122;
  /* Verde oliva escuro */
  --secondary-color: #C4B9A5;
  /* Bege acinzentado */
  --neutral-color: #E8E4DA;
  /* Areia suave */
  --text-color: #333333;
  --bg-color: #FAFAFA;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.8;
  font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-serif {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  padding-bottom: 20px;
}

footer aside p {
  padding-bottom: 0 !important;
}

.font-sans {
  font-family: 'Montserrat', sans-serif;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
}

/* Transitions */
.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.8s ease;
}

.fade-enter-from,
.fade-leave-to {
  opacity: 0;
}

/* Utility Classes */
.bg-olive {
  background-color: var(--primary-color);
  color: white;
}

.text-olive {
  color: var(--primary-color);
}

.bg-sand {
  background-color: var(--neutral-color);
}

/* Hero */
.hero-bg {
  background-image: url('https://images.unsplash.com/photo-1570172619644-dfd03ed5d881?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
}

/* Buttons */
.btn-premium {
  background-color: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.75rem 2rem;
  transition: all 0.3s ease;
  font-size: 0.875rem;
}

.btn-premium:hover {
  background-color: var(--primary-color);
  color: white;
}

.btn-premium-light {
  background-color: transparent;
  border: 1px solid white;
  color: white;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.75rem 2rem;
  transition: all 0.3s ease;
  font-size: 0.875rem;
  margin: 20px;
}

.btn-premium-light:hover {
  background-color: white;
  color: var(--primary-color);
}

/* Spa Menu Layout */
.spa-menu-item {
  display: flex;
  align-items: baseline;
  margin-bottom: 1.5rem;
  flex-wrap: nowrap;
}

.spa-menu-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--primary-color);
  flex-shrink: 0;
  max-width: 70%;
  /* Prevent title from taking too much space */
}

.spa-menu-dots {
  flex-grow: 1;
  border-bottom: 1px dotted #ccc;
  margin: 0 1rem;
  position: relative;
  top: -5px;
  min-width: 20px;
  /* Ensure dots are visible or at least provide spacing */
}

.spa-menu-price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .spa-menu-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .spa-menu-dots {
    display: none;
  }

  .spa-menu-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
    max-width: 100%;
  }

  .spa-menu-price {
    font-size: 1rem;
    color: var(--primary-color);
  }
}

/* Navigation */
.nav-link {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

.nav-link:hover,
.nav-link.router-link-active {
  color: var(--primary-color);
  background-color: #E8E4DA;
  /* Neutral color for the rectangle */
  border-bottom: none;
}

/* Header Refactor */
.main-header {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 50;
  height: 6rem;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .main-header {
    padding: 0 3rem;
  }
}

.header-start {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 768px) {
  .header-start {
    width: auto;
    justify-content: flex-start;
  }
}

.header-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 0.025em;
  text-transform: lowercase;
  font-size: 1.875rem;
  transition: opacity 0.3s ease;
  text-decoration: none;
}

.header-logo:hover {
  opacity: 0.8;
}

@media (min-width: 768px) {
  .header-logo {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .main-header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }
}

.header-center {
  display: none;
}

@media (min-width: 1024px) {
  .header-center {
    display: flex;
    align-items: center;
    justify-self: center;
  }
}

.header-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-menu-item {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 300;
}

.header-end {
  display: none;
}

@media (min-width: 1024px) {
  .header-end {
    display: flex;
    width: auto;
    justify-self: end;
  }
}