/* ==========================================================================
   PATRÍCIA BUFFET — LUXURY DESIGN SYSTEM (AL MARKETING DIGITAL STANDARD)
   - Sharp Corners (100% border-radius: 0)
   - High Contrast Dark / Light Mode
   - Cormorant Garamond / Manrope / JetBrains Mono Typography
   - Zero Cumulative Layout Shift (CLS)
   - High Performance & Mobile Responsive
   ========================================================================== */

:root {
  /* Dark Mode (Default Obsidian Luxury) */
  --bg-body: #0a0a0a;
  --bg-card: #141414;
  --bg-card-hover: #1c1c1c;
  --bg-header: rgba(10, 10, 10, 0.95);
  --bg-glass: rgba(18, 18, 18, 0.85);
  
  --color-gold: #c8a96e;
  --color-gold-hover: #d8ba82;
  --color-gold-dark: #9f8045;
  --color-gold-glow: rgba(200, 169, 110, 0.15);
  
  --text-main: #f5f2ec;
  --text-muted: #a39e93;
  --text-light: #736f66;
  
  --border-color: rgba(200, 169, 110, 0.25);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-active: #c8a96e;
  
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.8);
  --shadow-glow: 0 0 25px rgba(200, 169, 110, 0.2);

  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --header-height: 84px;
}

[data-theme="light"] {
  --bg-body: #faf8f5;
  --bg-card: #ffffff;
  --bg-card-hover: #f3efe6;
  --bg-header: rgba(250, 248, 245, 0.98);
  --bg-glass: rgba(255, 255, 255, 0.92);
  
  --color-gold: #b38f4d;
  --color-gold-hover: #987538;
  --color-gold-dark: #82622b;
  --color-gold-glow: rgba(179, 143, 77, 0.12);
  
  --text-main: #1c1a17;
  --text-muted: #5e594f;
  --text-light: #8c8577;
  
  --border-color: rgba(179, 143, 77, 0.3);
  --border-subtle: rgba(0, 0, 0, 0.08);
  --border-active: #b38f4d;
  
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 0 20px rgba(179, 143, 77, 0.15);
}

/* ==========================================================================
   GLOBAL RESET — STRICT SHARP CORNERS (ZERO BORDER RADIUS)
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-radius: 0 !important;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-body);
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: background-color 0.4s ease, color 0.4s ease;
}

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

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

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography Tokens */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text-main);
}

.section-tag {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  margin-bottom: 12px;
  display: inline-block;
  font-weight: 700;
  position: relative;
  padding-bottom: 4px;
}

.section-tag::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-gold);
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 48px auto;
  font-weight: 400;
}

.text-center {
  text-align: center;
}

/* Luxury Sharp Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 14px 28px;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
  gap: 8px;
}

.btn-primary {
  background-color: var(--color-gold);
  color: #0a0a0a !important;
  border-color: var(--color-gold);
}

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

.btn-secondary {
  background-color: rgba(10, 10, 10, 0.7);
  color: var(--text-main);
  border-color: var(--border-color);
  backdrop-filter: blur(8px);
}

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

/* ==========================================================================
   SITE HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition);
  background: linear-gradient(to bottom, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
}

.site-header.scrolled {
  background: var(--bg-header);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid var(--border-subtle);
  height: 72px;
}

.header-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  z-index: 1001;
  text-decoration: none;
}

.brand-logo .logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.6));
  transition: var(--transition);
}

.site-header.scrolled .brand-logo .logo-img {
  height: 44px;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 32px;
}

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

.nav-link {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
  font-weight: 500;
}

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

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-gold);
}

.nav-cta-btn {
  padding: 8px 18px !important;
  border: 1px solid var(--color-gold) !important;
  color: var(--color-gold) !important;
  font-weight: 700;
}

.nav-cta-btn:hover {
  background-color: var(--color-gold);
  color: #0a0a0a !important;
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Compact Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-color);
  background: rgba(10, 10, 10, 0.4);
  padding: 2px;
}

.lang-btn {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 8px;
  color: var(--text-muted);
  transition: var(--transition);
}

.lang-btn:hover, .lang-btn.active {
  background-color: var(--color-gold);
  color: #0a0a0a;
}

/* Theme Toggle Button */
.theme-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--border-color);
  background: rgba(10, 10, 10, 0.4);
  color: var(--color-gold);
  transition: var(--transition);
}

.theme-toggle-btn:hover {
  background-color: var(--color-gold);
  color: #0a0a0a;
}

.theme-toggle-btn svg {
  width: 16px;
  height: 16px;
}

/* Mobile Hamburger Button */
.hamburger {
  display: none;
  background: transparent;
  cursor: pointer;
  padding: 8px;
  z-index: 1002;
  border: 1px solid var(--border-color);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--color-gold);
  margin: 4px 0;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* Mobile Navigation Backdrop & Drawer */
.mobile-nav-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-nav-backdrop.active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 991px) {
  .hamburger {
    display: block;
  }

  .nav-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: #0d0d0d;
    border-left: 1px solid var(--border-color);
    box-shadow: -10px 0 30px rgba(0,0,0,0.8);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 28px 40px 28px;
    gap: 28px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
    overflow-y: auto;
  }

  .nav-wrapper.active {
    transform: translateX(0);
  }

  .main-nav .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
  }

  .nav-link {
    font-size: 0.95rem;
    display: block;
    width: 100%;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-subtle);
  }

  .header-controls {
    width: 100%;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
  }
}

/* ==========================================================================
   HERO SLIDESHOW & BACKGROUND VIDEO
   ========================================================================== */
.hero-slider-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background-color: #050505;
}

.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}

.hero-video-bg.loaded {
  opacity: 0.6;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

.slide-img-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slide-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 6s ease-out;
}

.slide.active .slide-img-wrapper img {
  transform: scale(1);
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.85) 100%),
              linear-gradient(to top, rgba(10,10,10,0.95) 0%, transparent 50%);
}

.slide-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
}

.slide-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 16px;
  font-weight: 700;
}

.slide-title {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.slide-desc {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #e0ded8;
  max-width: 680px;
  margin: 0 auto 36px auto;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.slide-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Slider Controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(10, 10, 10, 0.7);
  border: 1px solid var(--border-color);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  backdrop-filter: blur(6px);
}

.slider-btn:hover {
  background-color: var(--color-gold);
  color: #0a0a0a;
}

.slider-btn-prev { left: 32px; }
.slider-btn-next { right: 32px; }

.slider-dots-wrapper {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background: var(--color-gold);
  width: 28px;
}

.slider-counter {
  position: absolute;
  bottom: 38px;
  right: 40px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--color-gold);
  letter-spacing: 0.1em;
  z-index: 10;
}

/* ==========================================================================
   SEÇÃO O BUFFET & CARROSSEL INTEGRADO (FOTO ÚNICA)
   ========================================================================== */
.about-section {
  padding: 100px 0;
  background-color: var(--bg-body);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 70px;
}

.about-content h3 {
  font-size: 1.7rem;
  color: var(--color-gold);
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.about-content p strong {
  color: var(--text-main);
}

/* O Buffet Mini-Carousel Single Frame */
.about-carousel-container {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
  background: #111111;
}

.about-carousel-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.about-slide {
  flex: 0 0 100%;
  min-width: 100%;
  max-width: 100%;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.about-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 60%, transparent 100%);
  padding: 16px 20px;
  color: #ffffff;
  z-index: 5;
}

.about-slide-title {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.about-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid rgba(200, 169, 110, 0.6);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 15;
  transition: var(--transition);
}

.about-nav-btn:hover {
  background: var(--color-gold);
  color: #0a0a0a;
}

.about-nav-prev { left: 14px; }
.about-nav-next { right: 14px; }

.about-dots {
  position: absolute;
  bottom: 14px;
  right: 20px;
  display: flex;
  gap: 8px;
  z-index: 15;
}

.about-dot {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: var(--transition);
}

.about-dot.active {
  background: var(--color-gold);
  width: 24px;
}

.about-badge {
  position: absolute !important;
  top: 16px !important;
  right: 16px !important;
  bottom: auto !important;
  left: auto !important;
  width: auto !important;
  max-width: 140px !important;
  background: var(--color-gold) !important;
  color: #0a0a0a !important;
  padding: 8px 12px !important;
  text-align: center !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.5) !important;
  z-index: 25 !important;
  pointer-events: none !important;
}

.about-badge-year {
  font-family: var(--font-heading) !important;
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  color: #0a0a0a !important;
  line-height: 1 !important;
  margin-bottom: 2px !important;
}

.about-badge-text {
  font-family: var(--font-mono) !important;
  font-size: 0.6rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  color: #111111 !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
}

/* Highlights Grid */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.highlight-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 32px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
}

.highlight-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-4px);
  background: var(--bg-card-hover);
}

.highlight-icon {
  width: 48px;
  height: 48px;
  color: var(--color-gold);
  margin-bottom: 20px;
}

.highlight-icon svg {
  width: 100%;
  height: 100%;
}

.highlight-title {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.highlight-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   GOOGLE REVIEWS / TESTIMONIALS SECTION (HORIZONTAL SLIDER)
   ========================================================================== */
.reviews-section {
  padding: 90px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.reviews-google-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-body);
  border: 1px solid var(--border-color);
  padding: 10px 18px;
}

.google-stars {
  color: #ffb400;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.google-score {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-gold);
}

.reviews-slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 10px 4px 20px 4px;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 360px;
  max-width: 360px;
  background: var(--bg-body);
  border: 1px solid var(--border-subtle);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.review-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-4px);
}

.review-stars {
  color: #ffb400;
  font-size: 1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 20px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 14px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  background: var(--color-gold);
  color: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.9rem;
}

.author-info h4 {
  font-size: 1.05rem;
  margin-bottom: 2px;
}

.author-info span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.reviews-nav-controls {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  justify-content: center;
}

.review-nav-btn {
  width: 42px;
  height: 42px;
  background: var(--bg-body);
  border: 1px solid var(--border-color);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.review-nav-btn:hover {
  background: var(--color-gold);
  color: #0a0a0a;
}

/* ==========================================================================
   GALERIA DE FOTOS SECTION (4 COLUNAS X 4 LINHAS = MÁXIMO 16 FOTOS)
   ========================================================================== */
.gallery-section {
  padding: 100px 0;
  background-color: var(--bg-body);
}

.gallery-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 10px 20px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--color-gold);
  color: #0a0a0a;
  border-color: var(--color-gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border-subtle);
  background: #111111;
  transition: var(--transition);
}

.gallery-item.hidden {
  display: none !important;
}

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

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.3) 50%, transparent 100%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  transition: var(--transition);
}

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

.gallery-item-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.gallery-item-title {
  font-size: 1.05rem;
  color: #ffffff;
  font-weight: 600;
}

/* ==========================================================================
   ORÇAMENTO SECTION (WHATSAPP CONVERSION CARDS)
   ========================================================================== */
.quote-section {
  padding: 100px 0;
  background-color: var(--bg-card);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.quote-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.quote-action-card {
  background: var(--bg-body);
  border: 1px solid var(--border-subtle);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.quote-action-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.quote-card-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 20px auto;
  color: var(--color-gold);
}

.quote-card-icon svg {
  width: 100%;
  height: 100%;
}

.quote-card-title {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.quote-card-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
  margin-bottom: 24px;
  flex-grow: 1;
}

.quote-card-btn {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 12px 18px;
  background: var(--color-gold);
  color: #0a0a0a;
  font-weight: 700;
  border: 1px solid var(--color-gold);
  display: inline-block;
  transition: var(--transition);
}

.quote-card-btn:hover {
  background: var(--color-gold-hover);
  color: #0a0a0a;
}

/* ==========================================================================
   CONTATO & MAPA GOOGLE SECTION
   ========================================================================== */
.contact-section {
  padding: 100px 0;
  background-color: var(--bg-body);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.contact-card-full {
  grid-column: span 2;
}

.contact-card-icon {
  width: 32px;
  height: 32px;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.contact-card-icon svg {
  width: 100%;
  height: 100%;
}

.contact-card-title {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.contact-card-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.contact-card-desc a {
  color: var(--color-gold);
}

.map-card {
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  height: 100%;
  min-height: 340px;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: none;
  display: block;
}

@media (max-width: 768px) {
  .contact-info-cards {
    grid-template-columns: 1fr;
  }
  .contact-card-full {
    grid-column: span 1;
  }
  .map-card, .map-card iframe {
    height: 240px;
    min-height: 240px;
    max-height: 260px;
  }
}

/* ==========================================================================
   LIGHTBOX MODAL & FLOATING ACTIONS
   ========================================================================== */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  text-align: center;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 40px rgba(0,0,0,0.9);
}

.lightbox-caption {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--color-gold);
  margin-top: 14px;
  letter-spacing: 0.05em;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 2.2rem;
  color: var(--color-gold);
  cursor: pointer;
  z-index: 2010;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid var(--border-color);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2010;
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* Floating Luxury Buttons */
.floating-actions-lux {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 990;
}

.whatsapp-float-lux, .instagram-float-lux {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #0a0a0a;
  border: 1px solid var(--border-color);
  color: var(--color-gold);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  transition: var(--transition);
}

.whatsapp-float-lux svg, .instagram-float-lux svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.whatsapp-float-lux:hover {
  background: #25d366;
  color: #0a0a0a;
  border-color: #25d366;
  transform: translateX(-4px);
}

.instagram-float-lux:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: #ffffff;
  border-color: transparent;
  transform: translateX(-4px);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: #060606;
  border-top: 1px solid var(--border-subtle);
  padding: 80px 0 30px 0;
  color: var(--text-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand .logo-img {
  height: 48px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 340px;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--text-light);
  font-family: var(--font-mono);
}

/* Responsive Grid Rules */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .about-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-carousel-container {
    height: 380px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .review-card {
    flex: 0 0 290px;
    max-width: 290px;
    padding: 20px;
  }
}
