/* assets/css/style.css */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Syne:wght@700;800&display=swap');

/* ==========================================================================
   CSS VARIABLES
   ========================================================================== */
:root {
  --bg-primary: #0b0b0b;
  --bg-secondary: #141414;
  --bg-tertiary: #1f1f1f;
  --accent-gold: #c5a880;
  --accent-gold-hover: #b0936b;
  --accent-gold-rgb: 197, 168, 128;
  --accent-red: #9e2a2b;
  --accent-red-hover: #801f20;
  --text-primary: #ffffff;
  --text-secondary: #bcbcbc;
  --text-muted: #767676;
  --border-color: rgba(197, 168, 128, 0.15);
  --border-glow: rgba(197, 168, 128, 0.3);
  
  --font-title: 'Playfair Display', Georgia, serif;
  --font-accent: 'Syne', sans-serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  
  --container-width: 1200px;
  --header-height: 140px;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-gold) var(--bg-primary);
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  color: inherit;
  background: none;
  border: none;
}

button {
  cursor: pointer;
}

ul {
  list-style: none;
}

/* ==========================================================================
   REUSABLE UTILITIES
   ========================================================================== */
.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 80px 0;
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.js-enabled .reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-subtitle {
  font-family: var(--font-accent);
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-title);
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.section-title span {
  font-style: italic;
  color: var(--accent-gold);
}

.divider {
  width: 60px;
  height: 2px;
  background-color: var(--accent-gold);
  margin: 20px auto 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
  text-transform: uppercase;
}

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

.btn-primary:hover {
  background-color: var(--accent-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(197, 168, 128, 0.25);
}

.btn-outline {
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
}

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

.btn-red {
  background-color: var(--accent-red);
  color: var(--text-primary);
}

.btn-red:hover {
  background-color: var(--accent-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(158, 42, 43, 0.3);
}

/* ==========================================================================
   HEADER (NAVBAR)
   ========================================================================== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition-smooth);
  border-bottom: 1px solid transparent;
}

.main-header.sticky {
  background-color: rgba(11, 11, 11, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  height: 85px;
}

.header-container {
  width: 90%;
  max-width: var(--container-width);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Left-align content to push CTA to right */
}

.logo-link {
  height: 90%;
  display: flex;
  align-items: center;
}

.logo-img {
  height: auto;
  max-height: 150px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-smooth);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.main-header.sticky .logo-img {
  max-height: 70px;
}

/* Push navigation to center and booking button to extreme right */
.nav-links {
  display: flex;
  gap: 16px;
  margin-left: auto;
  margin-right: auto;
}

.nav-link {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-gold);
}

.header-cta {
  display: flex;
  align-items: center;
}

.header-cta .btn {
  padding: 10px 20px;
  font-size: 0.8rem;
}

/* Menu Toggle Mobile */
.menu-toggle-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  margin-left: auto;
  z-index: 1010;
}

.menu-toggle-btn span {
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  transition: var(--transition-fast);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 20px);
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(11, 11, 11, 0.95) 45%, rgba(11, 11, 11, 0.5) 100%);
  z-index: 1;
}

.hero-grid {
  position: relative;
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
  z-index: 2;
}

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

.hero-tagline {
  font-family: var(--font-accent);
  color: var(--accent-gold);
  font-size: 0.9rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}

.hero-title {
  font-family: var(--font-title);
  font-size: 3.8rem;
  line-height: 1.15;
  margin-bottom: 25px;
  font-weight: 700;
  letter-spacing: -1px;
}

.hero-title span {
  color: var(--accent-gold);
  font-style: italic;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 35px;
  font-weight: 300;
}

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

/* ==========================================================================
   SMARTPHONE REELS MOCKUP
   ========================================================================== */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  position: relative;
  width: 290px;
  height: 580px;
  border-radius: 40px;
  background-color: #000;
  border: 10px solid #1c1c1c;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(197, 168, 128, 0.15);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.phone-mockup:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.9), 0 0 50px rgba(197, 168, 128, 0.25);
}

/* Speaker notch */
.phone-mockup::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 15px;
  background-color: #000;
  border-radius: 10px;
  z-index: 10;
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #111;
}

.phone-screen video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Reels Controls Overlay */
.reels-overlay-controls {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0) 80%, rgba(0,0,0,0.4) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 15px 20px;
  z-index: 5;
}

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

.live-badge {
  background-color: var(--accent-red);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 3px;
  letter-spacing: 1px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { opacity: 0.6; }
  50% { opacity: 1; }
  100% { opacity: 0.6; }
}

.reels-info {
  color: rgba(255, 255, 255, 0.9);
  text-align: left;
}

.reels-info h5 {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.reels-info h5::before {
  content: '⚡';
}

.reels-info p {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
}

.reels-buttons-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.reel-nav-btn {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-fast);
}

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

.reel-center-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reel-action-btn {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255,255,255,0.15);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: var(--transition-fast);
}

.reel-action-btn:hover {
  transform: scale(1.1);
  background: rgba(0, 0, 0, 0.8);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

#reel-counter {
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  background: rgba(0,0,0,0.5);
  padding: 3px 10px;
  border-radius: 10px;
}

/* ==========================================================================
   PARALLAX SECTION INSTRUCTIONS
   ========================================================================== */
.parallax-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

.parallax-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  z-index: 1;
}

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

/* ==========================================================================
   A EXPERIÊNCIA
   ========================================================================== */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.experience-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 40px 30px;
  border-radius: 4px;
  text-align: center;
  transition: var(--transition-smooth);
}

.experience-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-gold);
  box-shadow: 0 10px 30px rgba(197, 168, 128, 0.08);
}

.experience-icon {
  font-size: 2.2rem;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.experience-card h3 {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.experience-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 300;
}

/* ==========================================================================
   BUFFET SECTION (Tabbed Gallery)
   ========================================================================== */
.buffet-switcher {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.buffet-tab {
  font-family: var(--font-accent);
  padding: 15px 30px;
  border-bottom: 2px solid transparent;
  color: var(--text-muted);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: var(--transition-fast);
}

.buffet-tab:hover, .buffet-tab.active {
  color: var(--accent-gold);
  border-bottom: 2px solid var(--accent-gold);
}

.buffet-content {
  display: none;
}

.buffet-content.active {
  display: block;
}

.buffet-desc-block {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.buffet-desc-block p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 20px;
}

.buffet-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.tag-feature {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--accent-gold);
  font-weight: 500;
}

/* Masonry/Collage Photo Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-auto-rows: 220px;
  gap: 15px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--border-color);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-item.grid-landscape {
  grid-column: span 2;
}

.gallery-item.grid-portrait {
  grid-row: span 2;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition-fast);
}

.gallery-overlay span {
  font-family: var(--font-title);
  color: var(--accent-gold);
  font-size: 1.1rem;
  font-style: italic;
}

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

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

/* ==========================================================================
   VALORES E HORÁRIOS
   ========================================================================== */
.prices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.price-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border-color: var(--accent-gold);
  box-shadow: 0 0 20px rgba(197, 168, 128, 0.1);
}

.price-badge {
  position: absolute;
  top: 15px;
  right: -30px;
  background-color: var(--accent-gold);
  color: var(--bg-primary);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 30px;
  transform: rotate(45deg);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-card h3 {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  color: var(--accent-gold);
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.price-value {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

.price-value span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-secondary);
}

.price-hours {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.price-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 25px;
  font-weight: 300;
  flex-grow: 1;
}

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

.rule-box {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  padding: 30px;
  border-radius: 4px;
  display: flex;
  gap: 20px;
}

.rule-icon {
  font-size: 1.8rem;
  color: var(--accent-gold);
  line-height: 1;
}

.rule-content h4 {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.rule-content p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 300;
}

.rule-content ul li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 4px;
  position: relative;
  padding-left: 15px;
}

.rule-content ul li::before {
  content: '•';
  color: var(--accent-gold);
  position: absolute;
  left: 0;
}

/* ==========================================================================
   RESERVAS (TAGME IFRAME)
   ========================================================================== */
.booking-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: flex-start;
}

.booking-info-panel h3 {
  font-family: var(--font-title);
  font-size: 2rem;
  margin-bottom: 20px;
}

.booking-info-panel > p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 40px;
  font-weight: 300;
}

.booking-rule-step {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.step-num {
  font-family: var(--font-accent);
  color: var(--bg-primary);
  background-color: var(--accent-gold);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.step-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 300;
}

.booking-action-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.action-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 25px;
  border-radius: 4px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.action-card h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.action-card p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  flex-grow: 1;
}

.action-card .btn {
  width: 100%;
  padding: 10px 15px;
  font-size: 0.75rem;
}

/* Tagme Widget Frame Wrapper */
.booking-widget-panel {
  display: flex;
  justify-content: center;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.tagme-frame-container {
  width: 100%;
  max-width: 360px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0,0,0,0.8);
}

.tagme-frame-container iframe {
  width: 100%;
  display: block;
}

/* ==========================================================================
   EVENTOS SECTION
   ========================================================================== */
.events-intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}

.events-intro h3 {
  font-family: var(--font-title);
  font-size: 2rem;
  margin-bottom: 20px;
}

.events-intro p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  font-weight: 300;
  margin-bottom: 30px;
}

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

.event-box {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 40px 30px;
}

.event-box h4 {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--accent-gold);
  margin-bottom: 15px;
}

.event-box p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 300;
}

/* Form Container Events block */
.event-form-block {
  margin-top: 80px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 50px;
  border-radius: 8px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.form-group-full {
  grid-column: span 2;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-gold);
}

.form-group input, .form-group select, .form-group textarea {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  padding: 14px;
  border-radius: 4px;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 8px var(--border-glow);
}

.form-group select option {
  background-color: var(--bg-tertiary);
  color: #fff;
}

.form-submit-btn-row {
  margin-top: 30px;
  text-align: center;
}

.form-submit-btn-row .btn {
  min-width: 200px;
}

/* ==========================================================================
   NOSSA HISTÓRIA
   ========================================================================== */
.history-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.history-intro h3 {
  font-family: var(--font-title);
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.history-intro p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  font-style: italic;
  font-weight: 300;
}

/* Vertical Timeline */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

/* Central line */
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background-color: var(--border-color);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
  text-align: right;
}

.timeline-item.left {
  left: 0;
}

.timeline-item.right {
  left: 50%;
  text-align: left;
}

/* Bullet nodes */
.timeline-item::after {
  content: '';
  position: absolute;
  top: 25px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--bg-primary);
  border: 3px solid var(--accent-gold);
  z-index: 5;
}

.timeline-item.left::after {
  right: -8px;
}

.timeline-item.right::after {
  left: -8px;
}

.timeline-year {
  font-family: var(--font-accent);
  color: var(--accent-gold);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}

.timeline-box {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 30px;
  border-radius: 4px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.timeline-box h4 {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.timeline-box p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 300;
}

/* ==========================================================================
   GOOGLE REVIEWS UI
   ========================================================================== */
.reviews-section {
  background-color: var(--bg-secondary);
}

.google-rating-score-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 15px;
}

.rating-score-num {
  font-size: 1.8rem;
  font-weight: 700;
  font-family: var(--font-accent);
}

.rating-stars {
  color: #ffb703;
  font-size: 1.4rem;
  letter-spacing: 2px;
}

.rating-source {
  font-size: 0.85rem;
  color: var(--text-secondary);
  border-left: 1px solid var(--border-color);
  padding-left: 12px;
}

.reviews-carousel-outer {
  position: relative;
  max-width: 800px;
  margin: 40px auto 0;
  display: flex;
  align-items: center;
  gap: 20px;
}

.reviews-viewport {
  width: 100%;
  overflow: hidden;
}

.reviews-cards-container {
  display: flex;
  width: 100%;
  position: relative;
  min-height: 200px;
}

.review-slide-card {
  width: 100%;
  flex-shrink: 0;
  display: none;
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.review-slide-card.active {
  display: block;
  animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}

.review-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
}

.review-card-header img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-right: 15px;
  border: 2px solid var(--accent-gold);
}

.review-meta {
  text-align: left;
}

.review-meta h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.review-stars-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-stars-row .stars {
  color: #ffb703;
  font-size: 0.85rem;
}

.review-stars-row .date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.google-badge {
  position: absolute;
  top: 0;
  right: 0;
  width: 24px;
  height: 24px;
  background-color: #4285f4;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.review-card-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.95);
  text-align: center;
  font-weight: 300;
  font-style: italic;
}

.carousel-nav-btn {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  color: var(--accent-gold);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

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

.carousel-indicators-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
}

.dot-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--text-muted);
  transition: var(--transition-fast);
}

.dot-indicator.active {
  background-color: var(--accent-gold);
  transform: scale(1.3);
}

.reviews-footer {
  margin-top: 40px;
  text-align: center;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
}

.contact-info-block {
  text-align: left;
}

.contact-details {
  margin-top: 40px;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.contact-item-icon {
  font-size: 1.5rem;
  color: var(--accent-gold);
  flex-shrink: 0;
  line-height: 1;
}

.contact-item-text h4 {
  font-family: var(--font-title);
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.contact-item-text p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 300;
}

.contact-item-text a:hover {
  color: var(--accent-gold);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 40px;
}

.social-icon {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.social-icon:hover {
  background-color: var(--accent-gold);
  color: var(--bg-primary);
  transform: translateY(-3px);
}

.map-container {
  border: 1px solid var(--border-color);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  height: 400px;
  margin-top: 30px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* ==========================================================================
   TRABALHE CONOSCO
   ========================================================================== */
.careers-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.careers-info h3 {
  font-family: var(--font-title);
  font-size: 2rem;
  margin-bottom: 20px;
}

.careers-info > p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  font-weight: 300;
  margin-bottom: 30px;
}

.careers-info h4 {
  font-family: var(--font-title);
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.careers-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 30px;
}

.career-tag {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 10px 15px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
}

/* Form works file upload styled input */
.file-upload-wrapper {
  position: relative;
  background-color: var(--bg-tertiary);
  border: 1px dashed var(--border-color);
  border-radius: 4px;
  padding: 20px;
  text-align: center;
  transition: var(--transition-fast);
  cursor: pointer;
}

.file-upload-wrapper:hover {
  border-color: var(--accent-gold);
  background-color: rgba(197, 168, 128, 0.05);
}

.file-upload-wrapper input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.file-upload-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.file-upload-text span {
  color: var(--accent-gold);
  font-weight: 600;
}

/* ==========================================================================
   FAQ ACCORDION BLOCK
   ========================================================================== */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 10px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 22px 10px;
  text-align: left;
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 500;
  transition: var(--transition-fast);
}

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

.faq-icon-arrow {
  color: var(--accent-gold);
  transition: transform 0.3s ease;
  font-size: 1rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding: 0 10px;
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 300;
  padding-bottom: 22px;
}

/* Active accordion panel */
.faq-item.active .faq-icon-arrow {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  max-height: 200px; /* arbitrary limit for transition */
  padding: 0 10px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
  background-color: #070707;
  border-top: 1px solid var(--border-color);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 50px;
  align-items: start;
}

.footer-logo {
  max-height: 80px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin-bottom: 18px;
  display: block;
}

.footer-tagline {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 12px;
  max-width: 260px;
}

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

.footer-brand h4 {
  font-family: var(--font-accent);
  color: var(--accent-gold);
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  max-width: 280px;
  margin-bottom: 20px;
}

.footer-col h5 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #fff;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a:hover {
  color: var(--text-secondary);
}

/* ==========================================================================
   TOAST & FLOATING BUTTONS
   ========================================================================== */
.toast-notification {
  position: fixed;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--bg-tertiary);
  border: 1px solid var(--accent-gold);
  color: #fff;
  padding: 15px 30px;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  z-index: 1050;
  transition: bottom 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  max-width: 90%;
}

.toast-notification.show {
  bottom: 30px;
}

.whatsapp-float-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
  z-index: 1000;
  transition: var(--transition-fast);
}

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

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* ==========================================================================
   INSTAGRAM SECTION
   ========================================================================== */
.instagram-section {
  position: relative;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 80px 0;
}

.insta-header-desc {
  text-align: center;
  max-width: 600px;
  margin: 15px auto 40px;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.insta-header-desc a {
  color: var(--accent-gold);
  font-weight: 600;
  text-decoration: underline;
  transition: var(--transition-fast);
}

.insta-header-desc a:hover {
  color: #fff;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 45px;
}

.instagram-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  aspect-ratio: 1 / 1;
  display: block;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.instagram-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-gold);
  box-shadow: 0 15px 35px rgba(197, 168, 128, 0.2);
}

.insta-image-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.insta-post-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.instagram-card:hover .insta-post-img {
  transform: scale(1.08);
}

.insta-media-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(11, 11, 11, 0.75);
  backdrop-filter: blur(6px);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 2;
}

.insta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(11, 11, 11, 0.95) 0%, rgba(11, 11, 11, 0.4) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 3;
}

.instagram-card:hover .insta-overlay {
  opacity: 1;
}

.insta-overlay-text {
  font-size: 0.85rem;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.insta-view-btn {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  gap: 5px;
}

.instagram-footer-btn-container {
  text-align: center;
}

.btn-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
  font-weight: 600;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(220, 39, 67, 0.3);
}

.btn-instagram:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(220, 39, 67, 0.5);
  color: #fff;
}


@media (max-width: 991px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .booking-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .booking-widget-panel {
    justify-content: center;
  }
  
  .events-intro {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .careers-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1024px) {
  :root {
    --header-height: 80px;
  }
  
  .main-header {
    height: 80px;
  }
  
  .main-header.sticky {
    height: 70px;
  }
  
  .logo-img {
    max-height: 60px;
  }
  
  .main-header.sticky .logo-img {
    max-height: 50px;
  }
  
  .header-cta .btn {
    padding: 8px 14px;
    font-size: 0.75rem;
  }

  .container {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  /* Mobile Header Navigation */
  .menu-toggle-btn {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--bg-primary);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    transform: translateX(100%);
    transition: var(--transition-smooth);
    border-top: 1px solid var(--border-color);
  }
  
  .nav-links.active {
    transform: translateX(0);
  }
  
  .header-cta {
    margin-left: auto;
    margin-right: 15px;
  }
  
  /* Burger Icon Morph */
  .menu-toggle-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .menu-toggle-btn.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  /* Hero section mobile breathing room */
  .hero-section {
    padding-top: calc(var(--header-height) + 30px);
    padding-bottom: 90px;
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 35px;
    padding-top: 10px;
    padding-bottom: 30px;
  }
  
  .hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 15px;
  }
  
  .hero-desc {
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.6;
  }
  
  .hero-content {
    margin: 0 auto;
  }
  
  .hero-ctas {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 10px;
  }
  
  .hero-ctas .btn {
    padding: 14px 22px;
    font-size: 0.85rem;
    flex: 1 1 180px;
    max-width: 260px;
  }
  
  .hero-visual {
    order: -1; /* Display video Reels mockup at the top of hero content on mobile */
    margin-bottom: 10px;
  }
  
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  /* Timeline stack left */
  .timeline::before {
    left: 40px;
  }
  
  .timeline-item {
    width: 100%;
    text-align: left;
    padding-left: 80px;
    padding-right: 20px;
  }
  
  .timeline-item.left {
    left: 0;
  }
  
  .timeline-item.right {
    left: 0;
  }
  
  .timeline-item::after {
    left: 32px !important;
    right: auto !important;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-group-full {
    grid-column: span 1;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  
  .gallery-item.grid-landscape, .gallery-item.grid-portrait {
    grid-column: span 1;
    grid-row: span 1;
    height: 250px;
  }
  
  .booking-action-cards {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}