:root {
  --gold: #C5A059;
  --gold-light: #e0c07a;
  --dark: #121212;
  --dark2: #1a1a1a;
  --glass: rgba(255, 255, 255, 0.05);
  --text: #f4f4f4;
  --text-muted: #aaa
}

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

html {
  scroll-behavior: smooth
}

body {
  background: var(--dark);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  line-height: 1.7;
  overflow-x: hidden
}

h1,
h2,
h3 {
  font-family: 'Playfair Display', serif
}

header {
  position: fixed;
  width: 100%;
  padding: 18px 6%;
  background: transparent;
  backdrop-filter: blur(0px);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: all .4s ease
}

header.scrolled {
  background: rgba(18, 18, 18, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(197, 160, 89, 0.25);
  box-shadow: 0 4px 30px rgba(0, 0, 0, .4)
}

.logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px
}

nav a {
  color: var(--text);
  text-decoration: none;
  margin-left: 25px;
  font-size: .9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: .3s;
  position: relative
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: .3s
}

nav a:hover {
  color: var(--gold)
}

nav a:hover::after {
  width: 100%
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--gold);
  transition: .3s
}

.hero {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, .55), rgba(0, 0, 0, .8)), url('../images/hero_hotel_noite.png') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative
}

.hero-badge {
  background: rgba(197, 160, 89, .15);
  border: 1px solid rgba(197, 160, 89, .4);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: .8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 15px;
  color: var(--gold);
  text-shadow: 0 2px 20px rgba(0, 0, 0, .5)
}

.hero p {
  font-size: 1.15rem;
  max-width: 650px;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, .85)
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center
}

.btn-cta {
  padding: 16px 45px;
  background: var(--gold);
  color: #000;
  text-decoration: none;
  font-weight: 700;
  border-radius: 50px;
  transition: .3s;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .9rem
}

.btn-cta:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(197, 160, 89, .3)
}

.btn-outline {
  padding: 16px 40px;
  background: transparent;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, .4);
  transition: .3s;
  font-size: .9rem;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px)
}

/* WhatsApp Flutuante */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25D366;
  color: #fff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  z-index: 9999;
  box-shadow: 0 6px 25px rgba(37, 211, 102, .5);
  transition: .3s;
  text-decoration: none
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 35px rgba(37, 211, 102, .7)
}

/* FAQ */
.faq-section {
  background: rgba(255, 255, 255, .02)
}

.faq-list {
  max-width: 800px;
  margin: 0 auto
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  overflow: hidden
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 22px 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  transition: color .3s
}

.faq-question:hover {
  color: var(--gold)
}

.faq-question i {
  color: var(--gold);
  font-size: .85rem;
  transition: transform .4s;
  flex-shrink: 0
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease
}

.faq-answer p {
  color: var(--text-muted);
  font-size: .93rem;
  padding-bottom: 20px;
  line-height: 1.8
}

.faq-item.open .faq-question i {
  transform: rotate(180deg)
}

.faq-item.open .faq-answer {
  max-height: 300px
}

.scroll-arrow {
  position: absolute;
  bottom: 30px;
  animation: bounce 2s infinite
}

.scroll-arrow i {
  font-size: 1.5rem;
  color: var(--gold)
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

section {
  padding: 90px 8%
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--gold)
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 55px;
  font-size: .95rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto
}

.grid-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 25px
}

.feature-card {
  background: var(--glass);
  padding: 40px 30px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .08);
  text-align: center;
  transition: .4s;
  cursor: default
}

.feature-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
  background: rgba(197, 160, 89, .06)
}

.feature-card .icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 20px
}

.feature-card h3 {
  margin-bottom: 12px;
  color: var(--text);
  font-size: 1.2rem
}

.feature-card p {
  color: var(--text-muted);
  font-size: .9rem
}

.suite-section {
  background: rgba(255, 255, 255, .02)
}

.suite-info {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap
}

.suite-text {
  flex: 1;
  min-width: 280px
}

.suite-text h3 {
  color: var(--gold);
  margin-bottom: 12px;
  font-size: 1.4rem
}

.suite-text p {
  color: var(--text-muted);
  margin-bottom: 18px;
  font-size: .95rem
}

.suite-text ul {
  list-style: none
}

.suite-text li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  font-size: .95rem
}

.suite-text li i {
  color: var(--gold);
  margin-right: 12px;
  font-size: .85rem
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  margin-top: 55px
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s;
  opacity: .8
}

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

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, .5));
  opacity: 0;
  transition: .3s
}

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

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px
}

.testimonial-card {
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  padding: 30px;
  transition: .3s
}

.testimonial-card:hover {
  border-color: rgba(197, 160, 89, .4)
}

.stars {
  color: var(--gold);
  margin-bottom: 12px;
  font-size: .9rem
}

.testimonial-card p {
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 18px;
  font-size: .9rem
}

.guest-name {
  font-weight: 700;
  color: var(--text);
  font-size: .85rem;
  letter-spacing: 1px
}

.localizacao-content {
  text-align: center;
  max-width: 750px;
  margin: 0 auto
}

.localizacao-content p {
  color: var(--text-muted);
  margin-bottom: 35px
}

.map-container {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(197, 160, 89, .2);
  margin-top: 30px
}

.pontos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 35px
}

.ponto {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  color: var(--text-muted)
}

.ponto i {
  color: var(--gold)
}

.contato-section {
  background: var(--dark2)
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center
}

.contato-text h2 {
  color: var(--gold);
  margin-bottom: 15px
}

.contato-text p {
  color: var(--text-muted);
  margin-bottom: 30px
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1rem;
  transition: .3s;
  letter-spacing: 1px
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, .3)
}

.contato-info {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: var(--glass);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .07)
}

.info-item i {
  font-size: 1.4rem;
  color: var(--gold)
}

.info-item span {
  font-size: .95rem;
  color: var(--text-muted)
}

footer {
  padding: 40px 8%;
  background: #080808;
  text-align: center;
  border-top: 1px solid rgba(197, 160, 89, .15)
}

.footer-img-logo {
  max-width: 150px;
  margin-bottom: 15px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.footer-logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 10px
}

footer p {
  color: var(--text-muted);
  font-size: .85rem
}

.footer-social {
  margin: 15px 0;
  display: flex;
  justify-content: center;
  gap: 15px
}

.footer-social a {
  color: var(--text-muted);
  font-size: 1.2rem;
  transition: .3s
}

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

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: .7s ease
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

@media (max-width: 900px) {
  .contato-grid {
    grid-template-columns: 1fr
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.6rem
  }

  section {
    padding: 70px 5%
  }

  .hamburger {
    display: flex
  }

  nav {
    display: none;
    position: fixed;
    top: 65px;
    left: 0;
    width: 100%;
    background: rgba(18, 18, 18, .97);
    flex-direction: column;
    padding: 20px;
    gap: 15px
  }

  nav.open {
    display: flex
  }

  nav a {
    margin: 0;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06)
  }

  .contato-grid {
    grid-template-columns: 1fr
  }
}
