/* ============================================================
   VARIÁVEIS & RESET GLOBAL
============================================================ */
:root {
  --primary-gold: #c5a867;
  --gold-hover: #b0914d;
  --dark-bg: #14171c;
  --dark-card: #1d2127;
  --text-main: #2b2b2b;
  --text-muted: #6b7280;
  --text-light: #f3f4f6;
  --white: #ffffff;
  --bg-light: #f8f9fa;
  --border-color: #e5e7eb;
  
  --font-serif: 'Cinzel', serif;
  --font-sans: 'Montserrat', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text-main);
  background-color: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* ============================================================
   CONTAINER & UTILITÁRIOS
============================================================ */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-padding {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 50px auto;
}

.sub-title {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--primary-gold);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--dark-bg);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-muted);
}

/* BOTÕES */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
}

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

.btn-primary:hover {
  background-color: var(--gold-hover);
  transform: translateY(-2px);
}

.btn-outline {
  border-color: var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--dark-bg);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

/* ============================================================
   TOP BAR & NAVEGAÇÃO
============================================================ */
.topbar {
  background-color: var(--dark-bg);
  color: var(--text-light);
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.topbar-info span {
  margin-right: 20px;
}

.topbar-info i {
  color: var(--primary-gold);
  margin-right: 6px;
}

.topbar-btn {
  color: var(--primary-gold);
  font-weight: 500;
}

.navbar {
  background-color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo-gold {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark-bg);
  letter-spacing: 2px;
}

.logo-sub {
  font-size: 0.65rem;
  letter-spacing: 3px;
  color: var(--primary-gold);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-bg);
}

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

.btn-nav {
  background-color: var(--dark-bg);
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: 4px;
}

.btn-nav:hover {
  background-color: var(--primary-gold);
}

/* ============================================================
   HERO SECTION
============================================================ */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: url('../img/hero-banner1.jpg?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  color: var(--white);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(15, 23, 42, 0.85) 30%, rgba(15, 23, 42, 0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.hero-badge {
  display: inline-block;
  font-size: 0.8rem;
  background: rgba(197, 168, 103, 0.2);
  color: var(--primary-gold);
  border: 1px solid var(--primary-gold);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.1rem;
  color: #e2e8f0;
  margin-bottom: 30px;
}

.hero-btns {
  display: flex;
  gap: 15px;
}

/* ============================================================
   BARRA DE RESERVA RÁPIDA
============================================================ */
.booking-bar {
  position: relative;
  margin-top: -45px;
  z-index: 20;
}

.booking-form {
  background: var(--white);
  padding: 24px 30px;
  border-radius: 8px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 20px;
  align-items: flex-end;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-bg);
  margin-bottom: 6px;
}

.form-group label i {
  color: var(--primary-gold);
  margin-right: 4px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--dark-bg);
  outline: none;
  background-color: var(--bg-light);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--primary-gold);
}

/* ============================================================
   SOBRE O HOTEL
============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--dark-bg);
  margin-bottom: 18px;
}

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

.about-features li {
  margin-bottom: 12px;
  font-weight: 500;
  color: var(--dark-bg);
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-features i {
  color: var(--primary-gold);
}

.about-image-wrapper {
  position: relative;
}

.main-img {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.experience-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background-color: var(--dark-bg);
  color: var(--white);
  padding: 16px 20px;
  border-radius: 6px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary-gold);
}

.exp-number {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-gold);
  display: block;
}

.exp-text {
  font-size: 0.8rem;
  color: #cbd5e1;
}

/* ============================================================
   ACOMODAÇÕES (ROOMS)
============================================================ */
.rooms {
  background-color: var(--bg-light);
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.room-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.room-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.room-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.room-card:hover .room-img-wrapper img {
  transform: scale(1.05);
}

.room-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: rgba(20, 23, 28, 0.85);
  color: var(--primary-gold);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}

.room-details {
  padding: 24px;
}

.room-details h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.room-details p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.room-amenities {
  display: flex;
  gap: 15px;
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 12px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 18px;
}

.room-amenities i {
  color: var(--primary-gold);
  margin-right: 4px;
}

.room-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-from {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.price-val {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-bg);
}

.price-val small {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
}

/* ============================================================
   DIFERENCIAIS
============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.feature-item {
  background: var(--white);
  padding: 30px 20px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.feature-item:hover {
  border-color: var(--primary-gold);
  transform: translateY(-4px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(197, 168, 103, 0.12);
  color: var(--primary-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 18px auto;
}

.feature-item h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

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

/* ============================================================
   GASTRONOMIA / BANNER DESTAQUE
============================================================ */
.gastronomy {
  position: relative;
  padding: 100px 0;
  background: url('../img/hero-banner2.jpg?auto=format&fit=crop&w=1600&q=80') center/cover fixed;
  color: var(--white);
  text-align: center;
}

.gastronomy-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.78);
}

.gastronomy-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

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

.gastronomy h2 {
  font-family: var(--font-serif);
  font-size: 2.3rem;
  margin: 12px 0 16px 0;
}

.gastronomy p {
  font-size: 1rem;
  color: #cbd5e1;
  margin-bottom: 25px;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background-color: var(--dark-bg);
  color: #cbd5e1;
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  padding-bottom: 40px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 18px;
  position: relative;
}

.footer-col p {
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul a {
  color: #cbd5e1;
  font-size: 0.9rem;
}

.footer-col ul a:hover {
  color: var(--primary-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  color: #94a3b8;
}

/* ============================================================
   BOTÃO FLUTUANTE DO WHATSAPP
============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 58px;
  height: 58px;
  background-color: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* ============================================================
   RESPONSIVIDADE (MEDIA QUERIES)
============================================================ */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.3rem;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .experience-card {
    position: static;
    margin-top: 15px;
    display: inline-block;
  }
}

@media (max-width: 768px) {
  .topbar {
    display: none; /* Simplifica o topo no mobile */
  }

  .nav-links {
    display: none; /* Pode ser expandido com menu hambúrguer */
  }

  .hero {
    min-height: 70vh;
    text-align: center;
  }

  .hero-btns {
    justify-content: center;
  }

  .booking-bar {
    margin-top: 20px;
  }

  .booking-form {
    grid-template-columns: 1fr;
  }
}

/* Seção do Mapa Panorâmico */
.hotel-map-section {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.hotel-map-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Card flutuante sobre o mapa */
.hotel-map-card {
  position: absolute;
  top: 35px;
  left: 35px;
  z-index: 10;
  background: #ffffff;
  padding: 22px 26px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  border-left: 5px solid #c89d56;
  max-width: 320px;
}

.hotel-map-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #c89d56;
  margin-bottom: 6px;
}

.hotel-map-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  color: #222222;
  margin-bottom: 4px;
}

.hotel-map-card p {
  font-size: 0.88rem;
  color: #666666;
  margin-bottom: 16px;
}

.hotel-map-actions a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: 0.85rem;
}

/* Ajuste Responsivo para Celular */
@media (max-width: 768px) {
  .hotel-map-section {
    height: 420px;
  }
  .hotel-map-card {
    top: auto;
    bottom: 20px;
    left: 15px;
    right: 15px;
    max-width: none;
    padding: 16px 20px;
  }
}