/* ==========================================================================
   RESET & VARIÁVEIS GLOBAIS
   ========================================================================== */
:root {
  --primary: #b8860b;        /* Dourado Simão */
  --primary-hover: #996515;
  --dark: #1e160e;
  --dark-surface: #2a221a;
  --gray-light: #f8f9fa;
  --gray-border: #e2e8f0;
  --text-main: #2d3748;
  --text-muted: #718096;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --transition: all 0.3s ease;

  /* CAMINHO DA IMAGEM DO BANNER (Troque aqui quando quiser!) */
  --bg-hero: url('../images/banner1.png');
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text-main);
  background-color: var(--white);
}

body {
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-border);
  z-index: 1000;
  display: flex;
  align-items: center;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.logo-text span:first-child {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--dark);
  text-transform: uppercase;
}

.logo-text span:last-child {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--primary);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-main);
}

.nav-link:hover {
  color: var(--primary);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--primary);
  color: var(--white);
  padding: 0.65rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 0.65rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--dark);
  cursor: pointer;
}

/* ==========================================================================
   HERO / BANNER PRINCIPAL (EXPANDIDO & CINEMATOGRÁFICO)
   ========================================================================== */
.hero {
  position: relative;
  min-height: 88vh; /* Faz o banner ocupar quase a tela toda */
  display: flex;
  align-items: center;
  padding: 160px 0 110px;
  background: 
    linear-gradient(180deg, rgba(15, 11, 7, 0.75) 0%, rgba(15, 11, 7, 0.6) 50%, rgba(15, 11, 7, 0.95) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 100%),
    var(--bg-hero) center center / cover no-repeat;
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 40%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 780px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  background: rgba(184, 134, 11, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 222, 130, 0.35);
  color: #ffde82;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero-title {
  font-size: clamp(2.3rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero-title .highlight {
  color: #f1c40f;
  background: linear-gradient(120deg, #ffd700, #ffae19);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: #e2e8f0;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  max-width: 650px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.hero-actions .btn-primary {
  padding: 0.9rem 2rem;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 20px rgba(184, 134, 11, 0.4);
}

.hero-actions .btn-primary:hover {
  box-shadow: 0 6px 25px rgba(184, 134, 11, 0.6);
  transform: translateY(-2px);
}

.hero-actions .btn-outline {
  padding: 0.9rem 2rem;
  font-size: 1rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ==========================================================================
   BOOKING BAR (MOTOR DE RESERVA)
   ========================================================================== */
.booking-section {
  position: relative;
  margin-top: -50px;
  z-index: 10;
}

.booking-box {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-border);
}

.booking-box h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--dark);
}

.booking-box h2 i {
  color: var(--primary);
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.input-group label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
}

.input-group input,
.input-group select {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-main);
  background: var(--white);
  outline: none;
  transition: var(--transition);
}

.input-group input:focus,
.input-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.15);
}

.booking-btn-wrap {
  display: flex;
  align-items: flex-end;
}

.booking-btn-wrap .btn-primary {
  width: 100%;
  height: 44px;
  justify-content: center;
}

/* ==========================================================================
   SEÇÕES GERAIS E SOBRE
   ========================================================================== */
.section {
  padding: 90px 0;
}

.section-bg {
  background-color: var(--gray-light);
}

.section-tag {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 1px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-top: 0.35rem;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.image-badge-wrap {
  position: relative;
}

.image-badge-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  height: 420px;
}

.floating-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.floating-badge .val {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.floating-badge .lbl {
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

.features-list {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
}

.feature-item i {
  color: var(--primary);
  font-size: 1.5rem;
}

/* ==========================================================================
   ACOMODAÇÕES (CARDS)
   ========================================================================== */
.center-heading {
  text-align: center;
  margin-bottom: 3.5rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.room-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}

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

.room-card.featured {
  border: 2px solid var(--primary);
}

.featured-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
}

.room-card-img {
  height: 220px;
  width: 100%;
}

.room-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.room-card-body h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.room-card-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.room-amenities {
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.room-amenities li {
  font-size: 0.85rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.room-amenities li i {
  color: var(--primary);
}

.room-card .btn-primary,
.room-card .btn-outline-dark {
  text-align: center;
  justify-content: center;
  width: 100%;
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 0.65rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  background: transparent;
  transition: var(--transition);
}

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

/* ==========================================================================
   RESTAURANTE
   ========================================================================== */
.rest-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.rest-gallery img {
  width: 100%;
  height: 260px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.rest-gallery img:last-child {
  margin-top: 2rem;
}

/* ==========================================================================
   CONTATO & FOOTER
   ========================================================================== */
.contact-section {
  background-color: var(--dark);
  color: var(--white);
}

.contact-section .section-title {
  color: var(--white);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-icon {
  width: 46px;
  height: 46px;
  background: var(--dark-surface);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.contact-box {
  background: var(--dark-surface);
  padding: 2.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-box h3 {
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
}

.contact-box form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-box input,
.contact-box textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  color: var(--white);
  outline: none;
  font-family: inherit;
}

.contact-box input:focus,
.contact-box textarea:focus {
  border-color: var(--primary);
}

.footer {
  background: #0f0b07;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ==========================================================================
   BOTÃO FLUTUANTE DO WHATSAPP
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #1ebe5d;
  transform: scale(1.1);
  color: #fff;
}

/* ==========================================================================
   RESPONSIVIDADE (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 992px) {
  .two-cols {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .floating-badge {
    right: 10px;
    bottom: 10px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--gray-border);
  }

  .nav-links.active {
    display: flex;
  }

  .header .btn-primary {
    display: none;
  }

  .hero {
    min-height: 75vh;
    padding: 140px 0 80px;
    text-align: center;
  }

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

  .rest-gallery {
    grid-template-columns: 1fr;
  }

  .rest-gallery img:last-child {
    margin-top: 0;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   SEÇÃO INSTAGRAM / REDES SOCIAIS
   ========================================================================== */
.instagram-section {
  padding: 60px 0 80px;
  background-color: #faf7f2;
}

.instagram-banner {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--gray-border);
  box-shadow: var(--shadow-sm);
}

.instagram-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-border);
}

.insta-profile-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 12px rgba(220, 39, 67, 0.3);
}

.insta-info {
  flex: 1;
  min-width: 250px;
}

.insta-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #dc2743;
  letter-spacing: 1px;
}

.insta-handle {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  margin: 0.2rem 0;
}

.insta-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: var(--white);
  padding: 0.75rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 15px rgba(220, 39, 67, 0.35);
  transition: var(--transition);
}

.btn-instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 39, 67, 0.5);
  color: var(--white);
}

/* Grid de Fotos Estilo Feed */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.insta-item {
  position: relative;
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.insta-item:hover img {
  transform: scale(1.08);
}

.insta-item:hover .insta-overlay {
  opacity: 1;
}

/* Responsividade da Seção Instagram */
@media (max-width: 768px) {
  .instagram-banner {
    padding: 1.5rem;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .btn-instagram {
    width: 100%;
    justify-content: center;
  }
}