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

:root {
  --bg:       #0d0d0d;
  --bg2:      #111111;
  --bg3:      #181818;
  --accent:   #c4a35a;
  --accent2:  #a8883e;
  --text:     #ffffff;
  --text-muted: #999999;
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
}

.btn--reservar {
  background: var(--accent);
  color: #0d0d0d;
}
.btn--reservar:hover { background: var(--accent2); }

.btn--outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}
.btn--outline:hover { background: var(--accent); color: #0d0d0d; }

.btn--descubra {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.7);
  color: #fff;
  font-size: 0.75rem;
  padding: 0.5rem 1.4rem;
  letter-spacing: 0.2em;
}
.btn--descubra:hover { background: var(--accent); border-color: var(--accent); color: #0d0d0d; }

.btn--light {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}
.btn--light:hover { background: #fff; color: #0d0d0d; }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}
.header.scrolled { background: rgba(10,10,10,0.98); }

.header__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}
.logo__main {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.12em;
  color: #fff;
}
.logo__sub {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: var(--accent);
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}
.nav__link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav__link:hover { color: var(--accent); }

.header .btn--reservar {
  flex-shrink: 0;
  margin-left: 1.5rem;
  font-size: 0.8rem;
  padding: 0.6rem 1.5rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero__slides { position: absolute; inset: 0; }

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero__slide.active { opacity: 1; }

.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.2) 100%);
}

.hero__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
  max-width: 700px;
  padding-bottom: 80px;
}

.hero__tag {
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
}
.hero__sub strong { color: var(--accent); font-size: 1.3rem; }

.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 2.5rem;
  width: 52px;
  height: 52px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 10;
  line-height: 1;
  padding-bottom: 4px;
}
.hero__arrow:hover { background: var(--accent); border-color: var(--accent); color: #0d0d0d; }
.hero__arrow--prev { left: 2rem; }
.hero__arrow--next { right: 2rem; }

.hero__dots {
  position: absolute;
  bottom: 130px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.hero__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s;
}
.hero__dot.active { background: var(--accent); width: 24px; border-radius: 4px; }

/* Booking Bar */
.booking-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 10;
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.booking-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  height: 72px;
}
.booking-bar__field {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0 1.5rem;
}
.booking-bar__field label {
  font-family: var(--font-head);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 2px;
}
.booking-bar__field input,
.booking-bar__field select {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  cursor: pointer;
  -webkit-appearance: none;
}
.booking-bar__field input::-webkit-calendar-picker-indicator { filter: invert(1); }
.booking-bar__field select option { background: #111; color: #fff; }

.booking-bar__divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

.booking-bar__btn {
  background: var(--accent);
  color: #0d0d0d;
  border: none;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  padding: 0 2.5rem;
  height: 100%;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
  margin-left: 1rem;
}
.booking-bar__btn:hover { background: var(--accent2); }

/* ===== SOBRE ===== */
.sobre {
  position: relative;
  background: var(--bg2);
  overflow: hidden;
  padding: 6rem 2rem;
}

.sobre__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(5rem, 14vw, 14rem);
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.03);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  text-transform: uppercase;
}

.sobre__inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.sobre__logo-icon {
  width: 50px;
  height: 50px;
  color: var(--accent);
  margin-bottom: 1rem;
}

.sobre__coords {
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  transform: rotate(-90deg);
  transform-origin: left center;
  white-space: nowrap;
  margin-bottom: 3rem;
  margin-left: 1rem;
}

.sobre__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  margin-top: 1rem;
}

.sobre__accent {
  width: 40px;
  height: 3px;
  background: var(--accent);
  margin-top: 1.5rem;
}

.sobre__text {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem;
}

.sobre__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.sobre__feat {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}
.sobre__feat-icon { font-size: 1.4rem; flex-shrink: 0; }

.sobre__right {
  position: relative;
}
.sobre__right img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  box-shadow: -20px 20px 60px rgba(0,0,0,0.5);
}

/* ===== QUARTOS ===== */
.quartos {
  background: var(--bg);
  padding: 5rem 0 4rem;
}

.quartos__header {
  text-align: center;
  padding: 0 2rem;
  margin-bottom: 3rem;
}

.quartos__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}
.quartos__title span {
  color: var(--accent);
  font-weight: 300;
}

.quartos__accent {
  width: 50px;
  height: 3px;
  background: var(--accent);
  margin: 1rem auto 0;
}

.quartos__carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.quartos__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 2.5rem;
  width: 52px;
  height: 52px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  line-height: 1;
  padding-bottom: 4px;
}
.quartos__arrow:hover { background: var(--accent); border-color: var(--accent); color: #0d0d0d; }
.quartos__arrow--prev { left: 1rem; }
.quartos__arrow--next { right: 1rem; }

.quartos__track-outer {
  overflow: hidden;
  width: 100%;
}

.quartos__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.quarto-card {
  flex: 0 0 calc(100% / 3);
  padding: 0 4px;
}

.quarto-card__img {
  position: relative;
  height: 520px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  cursor: pointer;
}
.quarto-card__img:hover .quarto-card__overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.1) 100%);
}

.quarto-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0.05) 100%);
  transition: background 0.4s;
}

.quarto-card__info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 1.5rem;
}

.quarto-card__tag {
  font-family: var(--font-head);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.quarto-card__name {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.6rem;
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.5rem;
}

.quarto-card__sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.quarto-card__meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

/* ===== ARRAIAL ===== */
.arraial {
  position: relative;
  height: 85vh;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.arraial__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.55);
}

.arraial__coords {
  position: absolute;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center center;
  font-family: var(--font-head);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
}

.arraial__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 2rem;
  max-width: 800px;
}

.arraial__bg-text {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(3rem, 10vw, 8rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,0.25);
  line-height: 1;
  margin-bottom: 2rem;
}

.arraial__desc {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  max-width: 580px;
  margin: 0 auto 2.5rem;
}

/* ===== GASTRONOMIA ===== */
.gastro {
  background: var(--bg2);
  padding: 6rem 2rem;
}

.gastro__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.gastro__img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: 20px 20px 60px rgba(0,0,0,0.5);
}

.gastro__label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.gastro__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
}

.gastro__accent {
  width: 40px;
  height: 3px;
  background: var(--accent);
  margin: 1.2rem 0;
}

.gastro__text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
}

.gastro__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.gastro__list li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}

/* ===== RELAX ===== */
.relax {
  position: relative;
  height: 80vh;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.relax__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.6);
}

.relax__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 2rem;
}

.relax__bg-text {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.5rem, 8vw, 7rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,0.2);
  line-height: 1.1;
  margin-bottom: 2rem;
}

.relax__desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

/* ===== CONTATO ===== */
.contato {
  background: var(--bg);
  padding: 6rem 2rem;
}

.contato__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contato__label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.contato__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
}

.contato__accent {
  width: 40px;
  height: 3px;
  background: var(--accent);
  margin: 1.2rem 0 2rem;
}

.contato__details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contato__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contato__icon { font-size: 1.4rem; flex-shrink: 0; }
.contato__item strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.2rem;
}
.contato__item p, .contato__item a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.contato__item a:hover { color: var(--accent); }

.contato__map {
  height: 480px;
  background: var(--bg3);
  overflow: hidden;
}
.contato__map iframe { width: 100%; height: 100%; }

/* ===== FOOTER ===== */
.footer {
  background: #080808;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

.footer__brand p {
  margin-top: 1.2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 280px;
  line-height: 1.6;
}

.footer__nav, .footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__nav h4, .footer__contact h4 {
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.footer__nav a, .footer__contact a, .footer__contact p {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.2s;
  line-height: 1.6;
}
.footer__nav a:hover, .footer__contact a:hover { color: #fff; }

.footer__social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: var(--text-muted);
  transition: all 0.2s;
}
.footer__social a svg { width: 16px; height: 16px; }
.footer__social a:hover { border-color: var(--accent); color: var(--accent); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  padding: 1.5rem 2rem;
}
.footer__bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
}

/* ===== WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  background: #25d366;
  color: #fff;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float svg { width: 28px; height: 28px; }
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .sobre__inner { grid-template-columns: 1fr 1fr; }
  .sobre__right { display: none; }
  .quarto-card { flex: 0 0 50%; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    padding: 2rem;
    gap: 1.5rem;
    z-index: 999;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav.open .nav__link { font-size: 1.2rem; }
  .header .btn--reservar { display: none; }
  .hamburger { display: flex; }

  .hero__content { padding: 0 1rem 80px; }
  .hero__arrow { display: none; }

  .booking-bar__inner {
    flex-wrap: wrap;
    height: auto;
    padding: 0.75rem 1rem;
    gap: 0.5rem;
  }
  .booking-bar__field { flex: 1 1 calc(50% - 1rem); padding: 0.25rem 0.5rem; }
  .booking-bar__divider { display: none; }
  .booking-bar__btn { width: 100%; padding: 0.75rem; margin-left: 0; }

  .sobre__inner { grid-template-columns: 1fr; gap: 2rem; }
  .sobre__coords { transform: none; margin: 0; }

  .quarto-card { flex: 0 0 85%; }

  .gastro__inner { grid-template-columns: 1fr; }
  .gastro__img { order: -1; }

  .contato__inner { grid-template-columns: 1fr; }
  .contato__map { height: 300px; }

  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }

  .arraial { background-attachment: scroll; }
  .relax { background-attachment: scroll; }
}

@media (max-width: 480px) {
  .quarto-card { flex: 0 0 90%; }
  .hero__title { font-size: 2.5rem; }
}
