/* ========== RESET & BASE ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
--accent: #9d4edd; /* Deep Purple */
--accent-light: #c77dff; /* Neon Purple */
--accent-dark: #5a189a; /* Darkest Purple */
--black: #050505; /* Pitch Black */
--black-light: #100b16; /* Purple tinted black */
--black-medium: #1c1427; /* Slightly lighter purple-black */
--white: #ffffff;
--white-dim: #e0dced;
--gray: #827b93;
--gray-light: #a39eb5;
--serif: 'Cinzel', 'Playfair Display', serif;
--sans: 'Outfit', 'Inter', sans-serif;
--display: 'Outfit', sans-serif;
--ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
--ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    background: #050505; /* Garante que o fundo do documento nunca apareça */
}
html::-webkit-scrollbar {
    display: none;
}

.pin-spacer {
  overflow: visible !important;
  border: none !important;
  margin: 0 !important;
  background: #050505 !important; /* Fundo preto no espaçador do GSAP */
  padding: 0 !important;
}
body {
font-family: var(--sans);
background: var(--black);
color: var(--white);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ========== GLOWS & TECH VIBE ========== */
.ambient-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.4;
}
.glow-purple {
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--accent) 0%, transparent 60%);
    top: -20vh;
    left: -20vw;
}
.glow-dark {
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--accent-dark) 0%, transparent 60%);
    bottom: -10vh;
    right: -10vw;
}

/* ========== NAVIGATION ========== */
.nav {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 1000;
padding: 1.5rem 3rem;
display: flex;
align-items: center;
justify-content: space-between;
transition: all 0.4s var(--ease-out-quart);
}
.nav.scrolled {
padding: 1rem 3rem;
background: rgba(5, 5, 5, 0.95);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border-bottom: 1px solid rgba(157, 78, 221, 0.15);
}
.nav-logo {
font-family: var(--display);
font-size: 1.5rem;
font-weight: 600;
letter-spacing: 0.25em;
color: var(--white);
display: flex;
align-items: center;
gap: 0.75rem;
text-transform: uppercase;
text-shadow: 0 0 20px rgba(199, 125, 255, 0.4);
}
.nav-links {
display: flex;
align-items: center;
gap: 2.5rem;
list-style: none;
}
.nav-links a {
font-size: 0.8rem;
font-weight: 300;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--gray-light);
transition: color 0.3s ease;
position: relative;
}
.nav-links a::after {
content: '';
position: absolute;
bottom: -6px;
left: 0;
width: 0;
height: 1px;
background: var(--accent-light);
box-shadow: 0 0 10px var(--accent-light);
transition: width 0.3s var(--ease-out-expo);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
font-size: 0.75rem;
font-weight: 500;
letter-spacing: 0.25em;
text-transform: uppercase;
padding: 0.75rem 2rem;
border: 1px solid var(--accent);
color: var(--accent-light);
transition: all 0.4s ease;
background: rgba(157, 78, 221, 0.05);
box-shadow: 0 0 20px rgba(157, 78, 221, 0.1);
}
.nav-cta:hover {
background: var(--accent);
color: var(--white);
box-shadow: 0 0 30px rgba(157, 78, 221, 0.5);
}

/* ========== NAVIGATION ON HERO (NOT SCROLLED) ========== */
.nav:not(.scrolled) .nav-links a {
    color: var(--white-dim);
}
.nav:not(.scrolled) .nav-links a::after {
    background: var(--accent-light);
    box-shadow: 0 0 10px var(--accent-light);
}
.nav:not(.scrolled) .nav-links a:hover {
    color: var(--white);
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--black);
}
/* Faixa preta que garante que NENHUMA borda do video vaze para baixo */
.hero::after {
    content: '';
    position: absolute;
    bottom: -2px; /* Ultrapassa a borda da section */
    left: 0;
    width: 100%;
    height: 30px;
    background: #050505;
    z-index: 50; /* Acima de absolutamente tudo */
    pointer-events: none;
}
.hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: calc(100% + 15px); /* Estende 15px além da borda inferior da hero */
    z-index: 0;
}
.hero-video {
    width: 100%; height: 100%;
    object-fit: cover;
    transform: scale(1.05); /* scale e transform unificados sem conflito */
}
.hero-bg::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    height: 20px;
    background: #050505;
    z-index: 6;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(90deg, #050505 0%, rgba(5,5,5,0.85) 25%, transparent 55%),
        linear-gradient(to top, #050505 0%, #050505 15%, rgba(5,5,5,0.92) 28%, rgba(5,5,5,0.4) 42%, transparent 60%);
    pointer-events: none;
    z-index: 5;
}
/* O blackout de baixo não é mais necessário porque a seção `.suites` avançou pra cima (margin-top -5px) e faz o bloqueio fisicamente! */
.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 5rem 5rem;
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.hero-tag {
display: inline-flex;
align-items: center;
gap: 1rem;
margin-bottom: 2.5rem;
opacity: 0;
transform: translateY(30px);
animation: fadeUp 0.8s var(--ease-out-expo) 0.8s forwards;
}
.hero-tag-line {
width: 40px;
height: 1px;
background: var(--accent);
box-shadow: 0 0 10px var(--accent-light);
}
.hero-tag-text {
font-size: 0.8rem;
font-weight: 300;
letter-spacing: 0.35em;
text-transform: uppercase;
color: var(--accent-light);
}
.hero-title {
    font-family: var(--display);
    font-size: clamp(2.2rem, 3.5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: 0.02em;
    color: var(--white);
    margin-bottom: 2rem;
}
.hero-title span {
    display: block;
    opacity: 0;
    transform: translateY(60px);
}
.hero-title span:nth-child(1) { animation: fadeUp 1s var(--ease-out-expo) 1s forwards; }
.hero-title span:nth-child(2) { animation: fadeUp 1s var(--ease-out-expo) 1.15s forwards; font-weight: 600; }
.hero-title span:nth-child(3) { animation: fadeUp 1s var(--ease-out-expo) 1.30s forwards; }
.hero-title .title-stroke {
    font-family: var(--sans);
    font-weight: 600;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--accent-light);
    text-shadow: 0 0 30px rgba(199, 125, 255, 0.4);
}
.hero-desc {
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--white);
    max-width: 500px;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s var(--ease-out-expo) 1.5s forwards;
}
.glass-desc {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    padding: 1.5rem;
    border-left: 2px solid var(--accent-light);
    border-radius: 0 4px 4px 0;
}
.hero-actions {
display: flex;
align-items: center;
gap: 2rem;
opacity: 0;
transform: translateY(30px);
animation: fadeUp 0.8s var(--ease-out-expo) 1.7s forwards;
}
.btn-primary {
display: inline-flex;
align-items: center;
gap: 1rem;
background: var(--accent);
color: var(--white);
padding: 1.2rem 2.5rem;
font-size: 0.8rem;
font-weight: 600;
letter-spacing: 0.25em;
text-transform: uppercase;
transition: all 0.4s var(--ease-out-expo);
box-shadow: 0 0 20px rgba(157, 78, 221, 0.3);
}
.btn-primary:hover {
background: var(--accent-light);
box-shadow: 0 0 40px rgba(199, 125, 255, 0.6);
transform: translateY(-2px);
}

    /* Removed old hero-image properties since we moved it into full bg */
@keyframes heroImgReveal {
from { opacity: 0; scale: 1.2; }
to { opacity: 1; scale: 1.05; }
}
@keyframes fadeUp {
0% { opacity: 0; transform: translateY(30px); filter: blur(10px); }
100% { opacity: 1; transform: translateY(0); filter: blur(0px); }
}

@keyframes marquee {
0% { transform: translateX(0); }
100% { transform: translateX(-50%); }
}
.animate-marquee { animation: marquee 40s linear infinite; }

@keyframes shimmer {
from { transform: translateX(-100%) skewX(-15deg); }
to { transform: translateX(200%) skewX(-15deg); }
}

@keyframes textSlide {
0% { transform: translateY(110%); opacity: 0; }
100% { transform: translateY(0); opacity: 1; }
}

.text-clip-anim span {
display: inline-block;
animation: textSlide 0.9s var(--ease-out-expo) forwards;
opacity: 0;
}

/* Flashlight Effect (Gemini standard) */
.flashlight-card { 
background: rgba(255, 255, 255, 0.01); 
position: relative;
}
.flashlight-card::before {
content: "";
position: absolute;
inset: 0px;
background: radial-gradient(
800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
rgba(255, 255, 255, 0.08),
transparent 40%
);
opacity: 0;
transition: opacity 0.5s;
pointer-events: none;
z-index: 2;
}
.flashlight-card:hover::before { opacity: 1; }

/* Glass Panel Utility */
.glass-panel {
background: rgba(23, 23, 23, 0.6);
backdrop-filter: blur(20px);
}

/* ========== SUITES SECTION (Básico / Grid) ========== */
.suites {
  padding: 4vh 5rem; /* Redução para vh flexível garantindo que caiba no monitor */
  background: var(--black);
  margin-top: -12px;  /* Aumentado para garantir cobertura total da borda do hero */
  position: relative;
  z-index: 20;
  overflow: hidden; 
  min-height: 100vh; /* Garante tamanho de tela inteira limpo */
  display: flex;
  flex-direction: column;
  justify-content: center; /* Centraliza verticalmente */
}
.suites-inner {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}
.suites-header {
  margin-bottom: 2rem; /* Mais enxuto para os cards subirem e o botão aparecer */
}
.suites-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 2rem;
  margin-top: 2rem;
  padding-bottom: 2rem;
  width: max-content; 
}

.suite-card {
  min-width: 350px;
  width: 350px;
  flex-shrink: 0;
  scroll-snap-align: start;
  background: rgba(28, 20, 39, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease;
  display: flex;
  flex-direction: column;
}
.suite-card:hover {
  border-color: rgba(157, 78, 221, 0.4);
  transform: translateY(-10px);
}
.suite-img-wrapper {
  height: 190px;
  overflow: hidden;
  position: relative;
}
.suite-img-wrapper::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to top, rgba(11, 11, 14, 1) 0%, transparent 80%);
}
.suite-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s ease, filter 0.5s ease;
  filter: grayscale(100%);
}
.suite-card:hover .suite-img {
  transform: scale(1.05);
  filter: grayscale(0%);
}
.suite-info {
  padding: 1.2rem 1.5rem 1.5rem;
  background: rgba(11, 11, 14, 1);
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.suite-meta {
  color: var(--accent-light);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
}
.suite-title {
  font-family: var(--sans);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.suite-desc {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.5;
  font-weight: 300;
  margin-bottom: 1rem;
  flex: 1; /* Empurra o botão para o baixo naturalmente */
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 50px;
  transition: all 0.3s ease;
  background: transparent;
  align-self: flex-start;
  margin-top: auto;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
}

@media (max-width: 1000px) {
  .suite-card { min-width: 85vw; width: 85vw; }
  .suites { padding: 4rem 2rem; }
}

}

/* ========== GASTRONOMIA SECTION ========== */
.services {
padding: 8rem 5rem 10rem;
position: relative;
}
.services-header {
display: flex;
justify-content: space-between;
align-items: flex-end;
margin-bottom: 5rem;
}
.section-title {
font-family: var(--display);
font-size: clamp(2.5rem, 4vw, 4rem);
font-weight: 300;
letter-spacing: 0.05em;
line-height: 1.1;
margin-bottom: 2rem;
}
.section-title .italic {
font-weight: 600;
color: var(--accent-light);
text-shadow: 0 0 20px rgba(199, 125, 255, 0.3);
}
.services-header-right {
text-align: right;
max-width: 450px;
}
.services-header-right p {
font-size: 1rem;
font-weight: 300;
line-height: 1.8;
color: var(--gray-light);
}
.services-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
}
.service-card {
background: rgba(28, 20, 39, 0.4);
border: 1px solid rgba(157, 78, 221, 0.15);
padding: 1rem;
transition: all 0.5s var(--ease-out-expo);
position: relative;
overflow: hidden;
backdrop-filter: blur(10px);
}
.service-card::before {
content: '';
position: absolute;
top: 0; left: 0; width: 100%; height: 100%;
background: linear-gradient(45deg, transparent, rgba(199, 125, 255, 0.05), transparent);
transform: translateX(-100%);
transition: transform 0.8s ease;
}
.service-card:hover::before { transform: translateX(100%); }
.service-card:hover {
transform: translateY(-10px);
border-color: rgba(199, 125, 255, 0.5);
box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 30px rgba(157, 78, 221, 0.2);
}
.service-img {
width: 100%;
height: 480px;
object-fit: cover;
margin-bottom: 2rem;
filter: grayscale(20%) brightness(0.8);
transition: all 0.6s ease;
border-radius: 2px;
}
.service-card:hover .service-img {
filter: grayscale(0%) brightness(1.1);
transform: scale(1.02);
}
.service-content { padding: 0 1.5rem 1.5rem; }
.service-title {
font-size: 1.6rem;
font-weight: 600;
margin-bottom: 1rem;
display: flex;
justify-content: space-between;
align-items: center;
color: var(--white);
}
.service-price {
font-family: var(--sans);
color: var(--accent-light);
font-size: 1rem;
font-weight: 500;
}
.service-desc {
font-size: 0.9rem;
line-height: 1.7;
color: var(--gray);
font-weight: 300;
margin-bottom: 2rem;
}
.service-link {
display: inline-flex;
align-items: center;
gap: 0.75rem;
font-size: 0.75rem;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--accent);
transition: all 0.3s ease;
font-weight: 500;
}
.service-link:hover { color: var(--accent-light); gap: 1rem; }

/* ========== GASTRONOMIA SECTION ========== */
.gastronomia {
padding: 8rem 5rem;
position: relative;
background: linear-gradient(180deg, var(--black), var(--black-medium));
}
.gastronomia-inner {
max-width: 1000px;
margin: 0 auto;
}
.gastro-subtitle {
font-size: 1.1rem;
color: var(--gray-light);
margin-bottom: 4rem;
font-weight: 300;
}
.menu-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 5rem;
}
.menu-col h3 {
font-family: var(--display);
font-size: 1.2rem;
color: var(--accent-light);
margin-bottom: 2rem;
letter-spacing: 0.1em;
text-transform: uppercase;
}
.menu-list {
list-style: none;
}
.menu-list li {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 0;
border-bottom: 1px solid rgba(255,255,255,0.05);
font-size: 1rem;
color: var(--white-dim);
font-weight: 300;
}
.menu-list li .price {
font-weight: 500;
color: var(--accent);
}

/* ========== EXPERIÊNCIAS & SEX SHOP ========== */
.experiencias {
padding: 8rem 5rem;
position: relative;
}
.exp-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
}
.exp-card {
background: rgba(28, 20, 39, 0.4);
border: 1px solid rgba(157, 78, 221, 0.15);
padding: 4rem 3rem;
backdrop-filter: blur(10px);
border-radius: 2px;
}
.neon-border {
position: relative;
}
.neon-border::before {
content: '';
position: absolute;
top: 0; left: 0; width: 2px; height: 100%;
background: var(--accent-light);
box-shadow: 0 0 15px var(--accent-light);
}
.exp-title {
font-family: var(--display);
font-size: 2rem;
margin-bottom: 1.5rem;
color: var(--white);
}
.exp-title .italic {
color: var(--accent-light);
font-weight: 600;
}
.exp-desc {
font-size: 1rem;
color: var(--gray);
line-height: 1.8;
font-weight: 300;
}
.review-item {
margin-bottom: 2rem;
}
.review-item .stars {
color: var(--accent-light);
margin-bottom: 0.5rem;
font-size: 0.9rem;
}
.review-item .text {
font-style: italic;
color: var(--gray-light);
line-height: 1.6;
}

/* ========== FOOTER ========== */
.footer {
background: #050505;
padding: 6rem 5rem 2rem;
border-top: 1px solid rgba(157, 78, 221, 0.1);
}
.footer-grid {
display: grid;
grid-template-columns: 2fr 1fr 1fr;
gap: 3rem;
margin-bottom: 4rem;
}
.footer-col h4 {
font-size: 0.9rem;
text-transform: uppercase;
letter-spacing: 0.15em;
color: var(--white);
margin-bottom: 1.5rem;
}
.footer-col p {
color: var(--gray);
font-size: 0.9rem;
margin-bottom: 0.75rem;
font-weight: 300;
}
.footer-link {
display: block;
color: var(--gray);
font-size: 0.9rem;
margin-bottom: 0.75rem;
font-weight: 300;
transition: color 0.3s ease;
}
.footer-link:hover {
color: var(--accent-light);
}
.footer-bottom {
border-top: 1px solid rgba(255,255,255,0.05);
padding-top: 2rem;
text-align: center;
color: var(--gray-light);
font-size: 0.8rem;
}

/* ========== SCROLL REVEAL (INTERSECTION OBSERVER) ========== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(10px);
  transition: all 1s var(--ease-out-expo);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0px);
}
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }

/* Responsive */
@media (max-width: 1000px) {
.hero { min-height: 100svh; }
.hero-title { font-size: 2.5rem; }
.services-header { flex-direction: column; align-items: flex-start; gap: 2rem; }
.services-header-right { text-align: left; }
.services-grid { grid-template-columns: 1fr; gap: 4rem; }
.service-img { height: 400px; }
.menu-grid { grid-template-columns: 1fr; gap: 3rem; }
.exp-grid { grid-template-columns: 1fr; }
.footer-grid { grid-template-columns: 1fr; gap: 2rem; }
.gastronomia, .experiencias, .footer { padding: 4rem 2rem; }
.nav { padding: 1.5rem 2rem; }
}

/* ========== GASTRONOMIA SECTION ========== */
.gastronomia {
    padding: 8rem 5rem 10rem;
    position: relative;
    background: var(--black);
}
.gastronomia-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.gastro-subtitle {
    font-size: 1.1rem;
    color: var(--gray-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}
.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    margin-top: 5rem;
}
.menu-col h3 {
    font-family: var(--display);
    font-size: 2rem;
    color: var(--accent-light);
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 1rem;
}
.menu-list {
    list-style: none;
    padding: 0;
}
.menu-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px dashed rgba(255,255,255,0.05);
    font-size: 1.1rem;
}
.menu-list li .price {
    color: var(--accent);
    font-weight: 500;
}

/* ========== EXPERIENCIAS SECTION ========== */
.experiencias {
    padding: 5rem;
    background: var(--black-medium);
}
.exp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}
.exp-card {
    background: rgba(28, 20, 39, 0.6);
    padding: 3rem;
    border-radius: 4px;
    backdrop-filter: blur(10px);
}
.exp-title {
    font-family: var(--display);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}
.exp-title .italic {
    color: var(--accent-light);
    font-style: italic;
}
.exp-desc {
    color: var(--gray-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}
.review-item {
    margin-bottom: 1.5rem;
}
.review-item .stars {
    color: gold;
    margin-bottom: 0.5rem;
}
.review-item .text {
    font-style: italic;
    color: var(--white-dim);
}

/* ========== FOOTER ========== */
.footer {
    background: #000;
    padding: 4rem 5rem 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 4rem;
}
.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--accent-light);
}
.footer-col p {
    color: var(--gray-light);
    margin-bottom: 0.5rem;
}
.footer-link {
    display: block;
    color: var(--gray-light);
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}
.footer-link:hover {
    color: var(--accent);
}
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--gray);
    font-size: 0.85rem;
}

/* RESPONSIVE ADDITIONS */
@media (max-width: 1000px) {
    .menu-grid, .exp-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== MOBILE MENU & FIXES ========== */
.mobile-menu-btn { display: none; }
.mobile-menu { display: none; }

@media (max-width: 900px) {
    .nav { padding: 1rem 1.5rem !important; }
    .nav.scrolled { padding: 1rem 1.5rem !important; }
    .nav-links, .nav-cta { display: none !important; }
    
    .mobile-menu-btn {
        display: flex;
        color: var(--white);
        font-size: 2rem;
        cursor: pointer;
        z-index: 1001;
    }
    .mobile-menu {
        position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
        background: rgba(5,5,5,0.98);
        backdrop-filter: blur(10px);
        display: flex; flex-direction: column; align-items: center; justify-content: center;
        gap: 2rem; z-index: 1000;
        transform: translateY(-100%); transition: transform 0.4s var(--ease-out-expo);
    }
    .mobile-menu.active { transform: translateY(0); display: flex; }
    .mobile-menu a { font-size: 1.5rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--white); transition: color 0.3s ease; }
    .mobile-menu a:hover { color: var(--accent-light); }
    
    /* Adjust paddings for mobile */
    .hero-content { padding: 6rem 1.5rem 3rem !important; }
    section, .services, .about-suite { padding: 4rem 1.5rem !important; }
    .suites { padding: 4rem 1.5rem !important; overflow-x: auto !important; -webkit-overflow-scrolling: touch; min-height: auto !important; }
    .suites-header { position: sticky; left: 0; width: 100%; z-index: 5; }
    .footer { padding: 3rem 1.5rem 1.5rem !important; }
    .experiencias { padding: 4rem 1.5rem !important; }
    .amenities-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 1rem !important; }
    .gallery-grid { grid-template-columns: 1fr !important; grid-template-rows: auto !important; }
    .pricing-grid { grid-template-columns: 1fr !important; }
    .hero-title { font-size: clamp(2.2rem, 8vw, 3.5rem) !important; }
    .about-suite > div { grid-template-columns: 1fr !important; gap: 3rem !important; }
    .suite-card { min-width: 85vw !important; width: 85vw !important; }
    .gastronomia-inner { padding: 4rem 1.5rem !important; }
    .gastro-mosaic { grid-template-columns: 1fr !important; grid-template-rows: auto !important; }
}
