/*
Theme Name: AUMA Residencial
Theme URI: https://grupothal.com.br
Author: Grupo Thal
Description: Tema exclusivo para o empreendimento AUMA Residencial - Cabral, Curitiba/PR
Version: 2.0
License: Proprietary
Text Domain: auma
*/

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

:root {
  --gold: hsl(36, 50%, 45%);
  --gold-light: hsl(38, 55%, 60%);
  --gold-dark: hsl(34, 45%, 35%);
  --navy: hsl(220, 25%, 25%);
  --navy-light: hsl(220, 20%, 35%);
  --cream: hsl(40, 25%, 96%);
  --cream-muted: hsl(40, 15%, 70%);
  --foreground: hsl(220, 20%, 20%);
  --card-bg: hsl(40, 20%, 98%);
  --secondary-bg: hsl(40, 15%, 90%);
  --border-color: hsl(40, 15%, 85%);
  --gradient-gold: linear-gradient(135deg, var(--gold), var(--gold-light));
  --shadow-soft: 0 15px 50px hsla(220, 20%, 20%, 0.08);
  --shadow-gold: 0 0 50px hsla(36, 50%, 45%, 0.2);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--cream);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: hidden; /* Prevent vertical scroll globally */
  height: 100vh;
}

@media (max-width: 1024px) {
  body:not(.is-customize-preview) { overflow-y: auto; height: auto; }
}
@media (max-width: 800px) {
  body.is-customize-preview { overflow-y: auto; height: auto; }
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* ============================================
   UTILITY
   ============================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 4rem;
}

.horizontal-scroller {
  display: flex;
  flex-wrap: nowrap;
  height: 100vh;
  width: 100vw;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 1024px) {
  body:not(.is-customize-preview) .horizontal-scroller {
    display: block;
    height: auto;
    width: auto;
    overflow: visible;
    scroll-snap-type: none;
  }
}
@media (max-width: 800px) {
  body.is-customize-preview .horizontal-scroller {
    display: block;
    height: auto;
    width: auto;
    overflow: visible;
    scroll-snap-type: none;
  }
}

section { 
  width: 100vw; 
  height: 100vh; 
  flex-shrink: 0; 
  scroll-snap-align: start;
  padding: 0 !important; /* Overriding previous request as each slide is a screen */
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1024px) {
  body:not(.is-customize-preview) section { width: auto; height: auto; padding: 80px 0 !important; }
}
@media (max-width: 800px) {
  body.is-customize-preview section { width: auto; height: auto; padding: 80px 0 !important; }
}

.hero-section { padding: 0 !important; }

.text-gold { color: var(--gold); }
.text-gold-light { color: var(--gold-light); }
.text-cream { color: var(--cream); }
.text-cream-muted { color: var(--cream-muted); }
.font-display { font-family: 'Cormorant Garamond', serif; }
.font-body { font-family: 'Montserrat', sans-serif; }
.tracking-wide { letter-spacing: 0.3em; }

.gold-line {
  width: 80px; height: 4px;
  background: var(--gold);
}
.gold-line-center {
  width: 80px; height: 4px;
  background: var(--gold);
  margin: 0 auto;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.5rem 2rem;
  transition: all 0.4s ease;
  background: transparent;
}
.site-header.scrolled {
  background: hsla(40, 25%, 96%, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  padding: 1rem 2rem;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
}
.site-logo { position: relative; display: flex; align-items: center; margin-right: 3rem; }
.site-logo img { height: 48px; object-fit: contain; transition: all 0.4s ease; }
.logo-dark { display: none; }
.site-header.scrolled .logo-light { display: none; }
.site-header.scrolled .logo-dark { display: block; height: 36px; }
/* Filtro preciso para o tom marrom #AC7E39 */
.site-header.scrolled .logo-dark { filter: invert(53%) sepia(76%) saturate(464%) hue-rotate(3deg) brightness(91%) contrast(85%); }
.site-header.scrolled .site-logo .logo-light { height: 36px; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
  color: white;
  transition: color 0.3s;
  position: relative;
}
.site-header.scrolled .main-nav a { color: var(--foreground); }
.main-nav a:hover { color: var(--gold); }
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}
.main-nav a:hover::after { width: 100%; }

.nav-cta {
  padding: 0.75rem 2rem;
  background: var(--gradient-gold);
  color: white !important;
  border-radius: 9999px;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
}
.nav-cta:hover { transform: scale(1.05); box-shadow: var(--shadow-gold); }
.nav-cta::after { display: none !important; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}
.menu-toggle span {
  display: block;
  width: 28px; height: 2px;
  background: white;
  margin: 6px 0;
  transition: all 0.3s;
}
.site-header.scrolled .menu-toggle span { background: var(--foreground); }

/* ============================================
   HERO
   ============================================ */
.hero-section {
  position: relative; width: 100%; height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-video { position: absolute; inset: 0; z-index: 0; }
.hero-video video { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; z-index: 1; }
.hero-overlay-gradient-1 { background: linear-gradient(to bottom, rgba(0,0,0,0.1), transparent, rgba(0,0,0,0.3)); }
.hero-overlay-gradient-2 { background: linear-gradient(to right, rgba(0,0,0,0.1), transparent, rgba(0,0,0,0.1)); }

.hero-corner { position: absolute; width: 64px; height: 64px; z-index: 2; }
.hero-corner-tl { top: 64px; left: 64px; border-left: 2px solid hsla(36,50%,45%,0.3); border-top: 2px solid hsla(36,50%,45%,0.3); }
.hero-corner-tr { top: 64px; right: 64px; border-right: 2px solid hsla(36,50%,45%,0.3); border-top: 2px solid hsla(36,50%,45%,0.3); }
.hero-corner-bl { bottom: 128px; left: 64px; border-left: 2px solid hsla(36,50%,45%,0.3); border-bottom: 2px solid hsla(36,50%,45%,0.3); }
.hero-corner-br { bottom: 128px; right: 64px; border-right: 2px solid hsla(36,50%,45%,0.3); border-bottom: 2px solid hsla(36,50%,45%,0.3); }

.hero-deco-line {
  position: absolute; width: 1px; height: 160px;
  background: linear-gradient(to bottom, transparent, hsla(36,50%,45%,0.4), transparent);
  z-index: 2;
}
.hero-content {
  position: relative; z-index: 10;
  text-align: center; max-width: 960px; padding: 0 2rem;
}
.hero-logo img {
  height: 160px; margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
}
.hero-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  max-width: 480px; margin: 2rem auto;
}
.hero-card {
  display: inline-block;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(20px);
  border-radius: 1rem;
  padding: 2.5rem;
  border: 1px solid hsla(36,50%,45%,0.4);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  position: relative;
}
.hero-card .glow {
  position: absolute; inset: 0;
  background: hsla(36,50%,45%,0.1);
  filter: blur(48px); border-radius: 9999px; z-index: -1;
}
.hero-card .label {
  font-family: 'Montserrat', sans-serif;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem; letter-spacing: 0.4em;
  text-transform: uppercase; margin-bottom: 1.5rem;
}
.hero-sizes { display: flex; align-items: center; justify-content: center; gap: 3rem; }
.hero-sizes .size { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; color: white; }
.hero-sizes .size span { color: var(--gold); }
.hero-sizes .divider-v { width: 1px; height: 64px; background: hsla(36,50%,45%,0.4); }

/* ============================================
   CONCEITO
   ============================================ */
.concept-section {
  position: relative; width: 100%; min-height: 80vh;
  display: flex; align-items: center; overflow: hidden;
  padding: 4rem 0;
}
.concept-video { position: absolute; inset: 0; z-index: 0; }
.concept-video video { width: 100%; height: 100%; object-fit: cover; }
.concept-overlay-1 { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.5), rgba(0,0,0,0.2), transparent); z-index: 1; }
.concept-overlay-2 { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.3), transparent, rgba(0,0,0,0.1)); z-index: 1; }
.concept-content { position: relative; z-index: 10; max-width: 1280px; margin: 0 auto; padding: 0 4rem; width: 100%; }
.concept-content h2 { font-size: 4.5rem; line-height: 1.1; color: var(--gold); margin-bottom: 1.5rem; }
.concept-content h2 span { color: white; font-style: italic; }
.concept-content p { color: var(--gold); font-family: 'Montserrat', sans-serif; font-size: 1.25rem; line-height: 1.7; max-width: 580px; }

/* ============================================
   ÁREAS COMUNS
   ============================================ */
.areas-section { position: relative; padding: 3rem 0; overflow: hidden; }
.areas-section .bg-shape { position: absolute; border-radius: 9999px; filter: blur(80px); background: hsla(36, 50%, 45%, 0.15); }
.areas-section .bg-shape-1 { top: 80px; left: 25%; width: 256px; height: 256px; }
.areas-section .bg-shape-2 { bottom: 80px; right: 25%; width: 256px; height: 256px; }
.areas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.areas-image-wrapper { position: relative; }
.areas-image-frame { position: absolute; inset: -16px; border: 1px solid hsla(36,50%,45%,0.2); border-radius: 1.5rem; transition: border-color 0.5s; }
.areas-image-wrapper:hover .areas-image-frame { border-color: hsla(36,50%,45%,0.4); }
.areas-image-box { aspect-ratio: 4/3; border-radius: 1rem; overflow: hidden; border: 1px solid hsla(36,50%,45%,0.3); position: relative; cursor: pointer; }
.areas-image-box img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.areas-image-wrapper:hover .areas-image-box img { transform: scale(1.05); }
.areas-image-box .overlay { position: absolute; inset: 0; background: linear-gradient(to top, hsla(40,25%,96%,0.9), hsla(40,25%,96%,0.3), transparent); }
.areas-image-box .badge { position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem; }
.areas-image-box .badge-line { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.areas-image-box .badge-line .line { width: 32px; height: 4px; background: var(--gold); }
.areas-image-box .badge-label { font-size: 0.8rem; color: var(--gold); letter-spacing: 0.3em; text-transform: uppercase; }
.areas-image-box .badge-title { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--foreground); }
.amenities-header .subtitle { font-size: 0.8rem; color: var(--gold); letter-spacing: 0.4em; text-transform: uppercase; margin-bottom: 0.75rem; }
.amenities-header h2 { font-size: 3.5rem; color: var(--foreground); }
.amenities-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2.5rem; }
.amenity-item { display: flex; align-items: center; gap: 1rem; padding: 1rem; background: hsla(40,20%,98%,0.8); border: 1px solid hsla(36,50%,45%,0.2); border-radius: 0.75rem; transition: all 0.3s; box-shadow: 0 2px 8px rgba(0,0,0,0.03); }
.amenity-item:hover { border-color: hsla(36,50%,45%,0.4); background: var(--card-bg); }
.amenity-icon { width: 48px; height: 48px; border-radius: 0.75rem; background: hsla(36,50%,45%,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.3s; }
.amenity-item:hover .amenity-icon { background: hsla(36,50%,45%,0.25); }
.amenity-icon svg { width: 24px; height: 24px; color: var(--gold); }
.amenity-name { font-size: 0.875rem; line-height: 1.3; }
.areas-cta { display: inline-flex; align-items: center; gap: 1rem; background: hsla(36,50%,45%,0.1); border: 1px solid hsla(36,50%,45%,0.3); border-radius: 9999px; padding: 1rem 2rem; margin-top: 1.5rem; }
.areas-cta svg { width: 24px; height: 24px; color: var(--gold); }
.areas-cta span { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--gold); }

/* ============================================
   GALERIA
   ============================================ */
.gallery-section { position: relative; padding: 120px 0 60px !important; overflow-y: auto !important; align-items: flex-start !important; }
.gallery-section .bg-shape { position: absolute; border-radius: 9999px; filter: blur(80px); background: hsla(36, 50%, 45%, 0.15); }
.gallery-header { text-align: center; margin-bottom: 2rem; }
.gallery-header .subtitle { font-size: 0.8rem; color: var(--gold); letter-spacing: 0.4em; text-transform: uppercase; margin-bottom: 0.75rem; }
.gallery-header h2 { font-size: 4rem; color: var(--foreground); margin-bottom: 1rem; }
.gallery-header p { font-size: 1.125rem; color: hsla(220,20%,20%,0.6); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.gallery-item { position: relative; aspect-ratio: 4/3; border-radius: 1rem; overflow: hidden; border: 1px solid hsla(36,50%,45%,0.2); cursor: pointer; box-shadow: 0 4px 15px rgba(0,0,0,0.06); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item .overlay { position: absolute; inset: 0; background: linear-gradient(to top, hsla(220,20%,20%,0.8), transparent); opacity: 0; transition: opacity 0.3s; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay .zoom-icon { width: 48px; height: 48px; border-radius: 9999px; background: hsla(36,50%,45%,0.3); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.gallery-item .overlay .zoom-icon svg { width: 24px; height: 24px; color: white; }
.gallery-item .overlay .title { font-family: 'Cormorant Garamond', serif; color: white; font-size: 1.25rem; }

/* ============================================
   RESIDÊNCIAS
   ============================================ */
.residences-section { position: relative; padding: 160px 0; overflow: hidden; }
.residences-section .bg-shape { position: absolute; border-radius: 9999px; filter: blur(80px); background: hsla(36, 50%, 45%, 0.15); }
.residences-header { text-align: center; margin-bottom: 2rem; }
.residences-header .subtitle { font-size: 0.8rem; color: var(--gold); letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: 0.5rem; }
.residences-header h2 { font-size: 3.5rem; color: var(--foreground); }
.residences-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 2rem; }
.plan-list { display: flex; flex-direction: column; gap: 0.75rem; }
.plan-btn { width: 100%; text-align: left; padding: 1.25rem; border-radius: 0.75rem; border: 1px solid hsla(36,50%,45%,0.2); background: hsla(40,20%,98%,0.8); cursor: pointer; transition: all 0.3s; box-shadow: 0 2px 8px rgba(0,0,0,0.03); }
.plan-btn:hover { border-color: hsla(36,50%,45%,0.4); background: var(--card-bg); }
.plan-btn.active { background: hsla(36,50%,45%,0.2); border-color: var(--gold); }
.plan-btn .plan-name { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--foreground); }
.plan-btn .plan-size { font-size: 1.125rem; color: hsla(220,20%,20%,0.5); }
.plan-btn.active .plan-size { color: var(--gold); }
.plan-preview { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.plan-preview.no-photos { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
.plan-preview.no-photos .plan-photo-box { display: none; }

.plan-image-box { 
  position: relative; 
  background: hsla(40,20%,98%,0.8); 
  border-radius: 1.5rem; 
  border: 1px solid hsla(36,50%,45%,0.2); 
  padding: 3rem 2rem; 
  cursor: pointer; 
  box-shadow: 0 4px 20px rgba(0,0,0,0.03); 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  justify-content: center; 
  min-height: 540px; 
  text-align: center;
}

.plan-image-box img { 
  width: 100%; 
  height: auto; 
  max-height: 380px; 
  object-fit: contain; 
  margin-bottom: 2rem;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.plan-image-box:hover img { transform: scale(1.03); }

.duplex-toggle { 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  gap: 0.75rem; 
  margin-bottom: 1.5rem;
  background: hsla(36, 50%, 45%, 0.05);
  padding: 0.5rem;
  border-radius: 9999px;
}

.duplex-toggle button { 
  padding: 0.6rem 1.25rem; 
  border-radius: 9999px; 
  border: 1px solid transparent;
  background: transparent; 
  font-size: 0.8rem; 
  font-family: 'Montserrat', sans-serif; 
  font-weight: 600; 
  color: var(--gold); 
  cursor: pointer; 
  transition: all 0.3s ease; 
}

.duplex-toggle button.active { 
  background: var(--gold); 
  color: white; 
  box-shadow: 0 4px 12px rgba(172, 126, 57, 0.3); 
}

.clique-ampliar {
  font-size: 0.85rem;
  color: hsla(220,20%,20%,0.5);
  margin-top: 0.5rem;
  letter-spacing: 0.05em;
}

.plan-photo-box { position: relative; border-radius: 1.5rem; overflow: hidden; border: 1px solid hsla(36,50%,45%,0.2); cursor: pointer; box-shadow: 0 4px 20px rgba(0,0,0,0.03); }
.plan-photo-box img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1); }
.plan-photo-box:hover img { transform: scale(1.05); }

/* ============================================
   DIFERENCIAIS
   ============================================ */
.features-section { position: relative; padding: 3rem 0; overflow: hidden; }
.features-section .deco-circle { position: absolute; border-radius: 9999px; border: 1px solid hsla(36,50%,45%,0.2); }
.features-section .deco-circle-1 { top: -160px; right: -160px; width: 384px; height: 384px; }
.features-section .deco-circle-2 { bottom: -160px; left: -160px; width: 384px; height: 384px; }
.features-section .glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 800px; height: 800px; background: hsla(36,50%,45%,0.1); border-radius: 9999px; filter: blur(80px); }
.features-header { text-align: center; margin-bottom: 2rem; }
.features-header .subtitle { font-size: 0.8rem; color: var(--gold); letter-spacing: 0.4em; text-transform: uppercase; margin-bottom: 0.75rem; }
.features-header h2 { font-size: 3.5rem; color: var(--foreground); margin-bottom: 1rem; }
.features-header p { font-size: 1.125rem; color: hsla(220,20%,20%,0.7); max-width: 720px; margin: 0 auto; line-height: 1.7; }
.features-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.feature-card { position: relative; background: hsla(40,20%,98%,0.8); border: 1px solid hsla(36,50%,45%,0.2); border-radius: 0.75rem; padding: 1rem; overflow: hidden; transition: all 0.3s; box-shadow: 0 2px 8px rgba(0,0,0,0.03); }
.feature-card:hover { border-color: hsla(36,50%,45%,0.4); }
.feature-card .hover-glow { position: absolute; inset: 0; background: linear-gradient(135deg, hsla(36,50%,45%,0.15), transparent); opacity: 0; transition: opacity 0.3s; }
.feature-card:hover .hover-glow { opacity: 1; }
.feature-icon { width: 48px; height: 48px; border-radius: 0.75rem; background: hsla(36,50%,45%,0.15); display: flex; align-items: center; justify-content: center; margin-bottom: 0.75rem; border: 1px solid hsla(36,50%,45%,0.3); transition: background 0.3s; }
.feature-card:hover .feature-icon { background: hsla(36,50%,45%,0.25); }
.feature-icon svg { width: 24px; height: 24px; color: var(--gold); }
.feature-card h3 { font-size: 1rem; color: var(--foreground); margin-bottom: 0.25rem; }
.feature-card p { font-size: 0.75rem; color: hsla(220,20%,20%,0.6); line-height: 1.5; }
.features-note { text-align: center; margin-top: 2.5rem; font-size: 0.75rem; color: hsla(220,20%,20%,0.5); }

/* ============================================
   LOCALIZAÇÃO
   ============================================ */
.location-section { position: relative; padding: 120px 0 60px !important; overflow-y: auto !important; align-items: flex-start !important; }
.location-section .bg-shape { position: absolute; border-radius: 9999px; filter: blur(80px); background: hsla(36, 50%, 45%, 0.15); }
.location-header { text-align: center; margin-bottom: 2rem; }
.location-header .address { display: inline-flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.location-header .address svg { width: 24px; height: 24px; color: var(--gold); }
.location-header .address span { font-size: 0.8rem; color: var(--gold); letter-spacing: 0.3em; text-transform: uppercase; }
.location-header h2 { font-size: 4rem; color: var(--foreground); }
.walkscore-card { background: hsla(40,20%,98%,0.9); backdrop-filter: blur(20px); border-radius: 1.5rem; padding: 2rem; border: 1px solid hsla(36,50%,45%,0.3); max-width: 640px; margin: 0 auto 2rem; box-shadow: 0 10px 40px rgba(0,0,0,0.05); display: flex; align-items: center; justify-content: space-between; }
.walkscore-info .label { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; }
.walkscore-info .label svg { width: 20px; height: 20px; color: var(--gold); }
.walkscore-info .label span { font-size: 0.8rem; color: var(--gold); letter-spacing: 0.3em; text-transform: uppercase; }
.walkscore-info h3 { font-size: 1.75rem; color: var(--foreground); margin-bottom: 0.5rem; }
.walkscore-info p { font-size: 1rem; color: hsla(220,20%,20%,0.6); }
.walkscore-number { text-align: center; padding-left: 2.5rem; border-left: 1px solid hsla(36,50%,45%,0.3); }
.walkscore-number .score { font-family: 'Cormorant Garamond', serif; font-size: 5rem; color: var(--gold); line-height: 1; }
.walkscore-number .label-sm { font-size: 0.8rem; color: hsla(36,50%,45%,0.8); letter-spacing: 0.15em; text-transform: uppercase; }
.nearby-label { text-align: center; font-size: 0.8rem; color: hsla(220,20%,20%,0.5); letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: 2rem; }
.nearby-grid { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.nearby-card { width: 208px; flex-shrink: 0; }
.nearby-card .image-box { position: relative; aspect-ratio: 4/3; border-radius: 1rem; overflow: hidden; border: 1px solid hsla(36,50%,45%,0.2); margin-bottom: 1rem; box-shadow: 0 4px 15px rgba(0,0,0,0.06); }
.nearby-card .image-box img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.nearby-card:hover .image-box img { transform: scale(1.1); }
.nearby-card .image-box .overlay { position: absolute; inset: 0; background: linear-gradient(to top, hsla(40,25%,96%,0.9), hsla(40,25%,96%,0.3), transparent); }
.nearby-card .time-badge { position: absolute; bottom: 1rem; left: 1rem; display: flex; align-items: center; gap: 0.5rem; }
.nearby-card .time-badge .icon { width: 32px; height: 32px; border-radius: 9999px; background: hsla(36,50%,45%,0.3); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; }
.nearby-card .time-badge .icon svg { width: 16px; height: 16px; color: var(--gold); }
.nearby-card .time-badge span { font-size: 0.875rem; color: var(--gold); font-weight: 600; }
.nearby-card .name { font-family: 'Cormorant Garamond', serif; font-size: 1.125rem; color: var(--foreground); text-align: center; transition: color 0.3s; }
.nearby-card:hover .name { color: var(--gold); }

/* ============================================
   MAP
   ============================================ */
.map-wrapper { margin-top: 2rem; }

.map-frame {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid hsla(36,50%,45%,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.07);
  aspect-ratio: 16/6;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: grayscale(20%) contrast(1.05);
  transition: filter 0.4s;
}

.map-frame:hover iframe { filter: grayscale(0%) contrast(1); }

.map-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: hsla(40,25%,96%,0.95);
  backdrop-filter: blur(12px);
  border: 1px solid hsla(36,50%,45%,0.3);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.map-badge svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }
.map-badge span { font-size: 0.78rem; color: var(--foreground); letter-spacing: 0.05em; white-space: nowrap; }

/* ============================================
   TOUR VIRTUAL
   ============================================ */
.tour-section { position: relative; padding: 120px 0 60px !important; overflow-y: auto !important; align-items: flex-start !important; }
.tour-section .container { max-width: 1520px; width: 90%; }
.tour-section .bg-shape { position: absolute; border-radius: 9999px; filter: blur(80px); background: hsla(36, 50%, 45%, 0.15); }
.tour-header { text-align: center; margin-bottom: 1.5rem; }
.tour-header .subtitle { font-size: 0.8rem; color: var(--gold); letter-spacing: 0.4em; text-transform: uppercase; margin-bottom: 0.5rem; }
.tour-header h2 { font-size: 3.5rem; color: var(--foreground); margin-bottom: 0.75rem; }
.tour-header p { font-size: 1.125rem; color: hsla(220,20%,20%,0.6); max-width: 640px; margin: 0 auto; }
.tour-content { display: flex; gap: 2rem; width: 100%; }
.tour-sidebar { width: 288px; flex-shrink: 0; display: flex; flex-direction: column; gap: 1.5rem; }
.tour-info-card { padding: 1.5rem; background: hsla(40,20%,98%,0.8); border-radius: 1rem; border: 1px solid hsla(36,50%,45%,0.2); box-shadow: 0 2px 8px rgba(0,0,0,0.03); }
.tour-info-card .top { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.tour-info-card .icon-box { padding: 0.75rem; border-radius: 0.75rem; background: var(--gold); color: white; }
.tour-info-card .icon-box svg { width: 24px; height: 24px; }
.tour-info-card h4 { font-size: 1.25rem; color: var(--gold); }
.tour-info-card .sub { font-size: 0.8rem; color: hsla(220,20%,20%,0.5); }
.tour-info-card p { font-size: 0.875rem; color: hsla(220,20%,20%,0.6); line-height: 1.6; }
.tour-instructions { padding: 1.5rem; background: hsla(40,20%,98%,0.6); border-radius: 1rem; border: 1px solid hsla(36,50%,45%,0.15); flex: 1; }
.tour-instructions .label { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: hsla(220,20%,20%,0.4); margin-bottom: 1rem; }
.tour-instructions .label svg { width: 16px; height: 16px; }
.tour-instructions ul { display: flex; flex-direction: column; gap: 0.75rem; }
.tour-instructions li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; color: hsla(220,20%,20%,0.6); }
.tour-instructions li .dot { width: 8px; height: 8px; background: var(--gold); border-radius: 9999px; margin-top: 6px; flex-shrink: 0; }
.tour-iframe-wrapper { flex: 1; position: relative; border-radius: 1.5rem; overflow: hidden; border: 2px solid hsla(36,50%,45%,0.3); box-shadow: 0 20px 60px rgba(0,0,0,0.08); min-height: 800px; }
.tour-iframe-wrapper iframe { width: 100%; height: 100%; min-height: 800px; border: none; }
.tour-iframe-overlay { position: absolute; top: 0; left: 0; right: 0; padding: 1.25rem; background: linear-gradient(to bottom, hsla(40,25%,96%,0.9), transparent); z-index: 5; display: flex; align-items: center; justify-content: space-between; }
.tour-iframe-overlay .tour-label { font-size: 0.8rem; color: var(--gold); letter-spacing: 0.15em; text-transform: uppercase; }
.tour-iframe-overlay h3 { font-size: 1.5rem; color: var(--foreground); }
.tour-fullscreen-btn { padding: 0.75rem; background: hsla(40,20%,98%,0.8); border: 1px solid hsla(36,50%,45%,0.2); border-radius: 0.75rem; cursor: pointer; transition: all 0.3s; }
.tour-fullscreen-btn:hover { background: var(--gold); color: white; }
.tour-fullscreen-btn svg { width: 24px; height: 24px; }

/* ============================================
   CONTATO
   ============================================ */
.contact-section { position: relative; min-height: 80vh; display: flex; align-items: center; overflow: hidden; padding: 4rem 0; }
.contact-video { position: absolute; inset: 0; z-index: 0; }
.contact-video video { width: 100%; height: 100%; object-fit: cover; }
.contact-overlay-1 { position: absolute; inset: 0; background: linear-gradient(to right, hsla(40,25%,96%,0.98), hsla(40,25%,96%,0.85), hsla(40,25%,96%,0.7)); z-index: 1; }
.contact-overlay-2 { position: absolute; inset: 0; background: linear-gradient(to top, hsla(40,25%,96%,0.85), transparent, hsla(40,25%,96%,0.5)); z-index: 1; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.contact-form .subtitle { font-size: 0.8rem; color: var(--gold); letter-spacing: 0.4em; text-transform: uppercase; margin-bottom: 1rem; }
.contact-form h2 { font-size: 3.5rem; color: var(--foreground); margin-bottom: 2rem; line-height: 1.2; }
.contact-form h2 span { color: var(--gold); font-style: italic; }
.contact-form form { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-form input { width: 100%; background: hsla(40,20%,98%,0.9); backdrop-filter: blur(8px); border: 1px solid hsla(36,50%,45%,0.3); border-radius: 0.75rem; padding: 1rem 1.5rem; font-family: 'Montserrat', sans-serif; font-size: 1rem; color: var(--foreground); transition: border-color 0.3s; outline: none; box-shadow: 0 2px 8px rgba(0,0,0,0.03); }
.contact-form input::placeholder { color: hsla(220,20%,20%,0.4); }
.contact-form input:focus { border-color: hsla(36,50%,45%,0.6); }
.contact-form .submit-btn { width: 100%; background: var(--gradient-gold); color: white; font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 1.125rem; padding: 1.25rem; border: none; border-radius: 0.75rem; cursor: pointer; transition: all 0.3s; }
.contact-form .submit-btn:hover { box-shadow: var(--shadow-gold); transform: scale(1.02); }
.contact-form .privacy-note { font-size: 0.75rem; color: hsla(220,20%,20%,0.4); text-align: center; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-card { background: hsla(40,20%,98%,0.9); backdrop-filter: blur(20px); border-radius: 1rem; padding: 2rem; border: 1px solid hsla(36,50%,45%,0.2); box-shadow: 0 2px 8px rgba(0,0,0,0.03); transition: border-color 0.3s; }
.contact-card:hover { border-color: hsla(36,50%,45%,0.5); }
.contact-card .card-inner { display: flex; align-items: flex-start; gap: 1.5rem; }
.contact-card .card-icon { width: 64px; height: 64px; border-radius: 1rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-card .card-icon.whatsapp { background: hsla(142, 71%, 45%, 0.2); }
.contact-card .card-icon.whatsapp svg { color: hsl(142, 71%, 45%); }
.contact-card .card-icon.gold { background: hsla(36,50%,45%,0.15); }
.contact-card .card-icon.gold svg { color: var(--gold); }
.contact-card .card-icon svg { width: 32px; height: 32px; }
.contact-card .card-label { font-size: 0.8rem; color: hsla(220,20%,20%,0.6); margin-bottom: 0.25rem; }
.contact-card .card-title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--foreground); transition: color 0.3s; }
.contact-card.whatsapp:hover .card-title { color: hsl(142, 71%, 45%); }
.contact-card .card-label.gold { color: var(--gold); letter-spacing: 0.15em; text-transform: uppercase; }
.contact-card .card-subtitle { font-size: 1rem; color: hsla(220,20%,20%,0.6); }
.social-links { display: flex; gap: 1rem; }
.social-link { flex: 1; display: flex; align-items: center; justify-content: center; gap: 0.75rem; background: hsla(40,20%,98%,0.8); border: 1px solid hsla(36,50%,45%,0.2); border-radius: 0.75rem; padding: 1rem 1.5rem; transition: all 0.3s; box-shadow: 0 2px 8px rgba(0,0,0,0.03); }
.social-link:hover { border-color: hsla(36,50%,45%,0.5); background: var(--card-bg); }
.social-link svg { width: 20px; height: 20px; color: var(--gold); }
.social-link span { font-size: 0.875rem; }
.contact-logo { text-align: center; padding-top: 1rem; }
.contact-logo img { height: 56px; object-fit: contain; opacity: 0.6; margin: 0 auto; }

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox { position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,0.85); backdrop-filter: blur(20px); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 1rem; box-shadow: 0 20px 80px rgba(0,0,0,0.5); }
.lightbox .close-btn { position: absolute; top: 1.5rem; right: 1.5rem; width: 48px; height: 48px; border-radius: 9999px; background: rgba(0,0,0,0.5); border: 1px solid hsla(36,50%,45%,0.4); color: white; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.3s; font-size: 1.5rem; }
.lightbox .close-btn:hover { background: rgba(0,0,0,0.7); }
.lightbox .nav-btn { position: absolute; top: 50%; transform: translateY(-50%); padding: 0.75rem; background: hsla(40,20%,98%,0.9); border-radius: 9999px; border: 1px solid hsla(36,50%,45%,0.2); cursor: pointer; box-shadow: 0 4px 15px rgba(0,0,0,0.15); transition: all 0.3s; }
.lightbox .nav-btn:hover { background: var(--gold); color: white; }
.lightbox .nav-btn.prev { left: 1.5rem; }
.lightbox .nav-btn.next { right: 1.5rem; }
.lightbox .nav-btn svg { width: 32px; height: 32px; }
.lightbox .caption { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); font-family: 'Cormorant Garamond', serif; font-size: 1.75rem; color: white; text-align: center; }
.lightbox .dots { position: absolute; bottom: 5rem; left: 50%; transform: translateX(-50%); display: flex; gap: 0.5rem; }
.lightbox .dot { width: 10px; height: 10px; border-radius: 9999px; background: rgba(255,255,255,0.3); border: none; cursor: pointer; transition: all 0.3s; }
.lightbox .dot.active { width: 32px; background: var(--gold); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: var(--navy); color: hsla(40,25%,96%,0.7); padding: 3rem 4rem 1.5rem; }
.footer-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.footer-logo img { height: 40px; object-fit: contain; opacity: 0.7; }
.footer-copy { font-size: 0.8rem; text-align: center; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.8rem; color: hsla(40,25%,96%,0.5); transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   404
   ============================================ */
.page-404 { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 2rem; }
.page-404 h1 { font-size: 8rem; color: var(--gold); line-height: 1; margin-bottom: 1rem; }
.page-404 h2 { font-size: 2rem; color: var(--foreground); margin-bottom: 1rem; }
.page-404 p { color: hsla(220,20%,20%,0.6); margin-bottom: 2rem; }
.page-404 .btn-home { display: inline-block; padding: 1rem 2.5rem; background: var(--gradient-gold); color: white; border-radius: 9999px; font-weight: 600; transition: all 0.3s; }
.page-404 .btn-home:hover { box-shadow: var(--shadow-gold); transform: scale(1.05); }

/* ============================================
   RESPONSIVE — ≤1024px (Tablet)
   ============================================ */
@media (max-width: 1024px) {
  body:not(.is-customize-preview) .container { padding: 0 2rem; }
  body:not(.is-customize-preview) .site-header { padding: 1rem 2rem; }
  body:not(.is-customize-preview) .site-header.scrolled { padding: 0.75rem 2rem; }
  body:not(.is-customize-preview) .areas-grid, 
  body:not(.is-customize-preview) .contact-grid, 
  body:not(.is-customize-preview) .residences-grid { grid-template-columns: 1fr; }
  body:not(.is-customize-preview) .features-grid { grid-template-columns: repeat(3, 1fr); }
  body:not(.is-customize-preview) .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  body:not(.is-customize-preview) .tour-content { flex-direction: column; }
  body:not(.is-customize-preview) .tour-sidebar { width: 100%; flex-direction: row; }
  body:not(.is-customize-preview) .plan-preview { grid-template-columns: 1fr; }
  body:not(.is-customize-preview) .hero-sizes { flex-direction: column; gap: 1rem; }
  body:not(.is-customize-preview) .hero-sizes .divider-v { width: 96px; height: 1px; }
  body:not(.is-customize-preview) .hero-sizes .size { font-size: 2.5rem; }
  body:not(.is-customize-preview) .concept-content h2 { font-size: 3rem; }
  body:not(.is-customize-preview) .walkscore-card { flex-direction: column; text-align: center; }
  body:not(.is-customize-preview) .walkscore-number { padding-left: 0; border-left: none; padding-top: 1.5rem; border-top: 1px solid hsla(36,50%,45%,0.3); }
  body:not(.is-customize-preview) .map-frame { aspect-ratio: 16/5; }
}
@media (max-width: 800px) {
  body.is-customize-preview .container { padding: 0 2rem; }
  body.is-customize-preview .site-header { padding: 1rem 2rem; }
  body.is-customize-preview .site-header.scrolled { padding: 0.75rem 2rem; }
  body.is-customize-preview .areas-grid, 
  body.is-customize-preview .contact-grid, 
  body.is-customize-preview .residences-grid { grid-template-columns: 1fr; }
  body.is-customize-preview .features-grid { grid-template-columns: repeat(2, 1fr); }
  body.is-customize-preview .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  body.is-customize-preview .tour-content { flex-direction: column; }
  body.is-customize-preview .tour-sidebar { width: 100%; flex-direction: row; }
  body.is-customize-preview .plan-preview { grid-template-columns: 1fr; }
  body.is-customize-preview .hero-sizes { flex-direction: column; gap: 1rem; }
  body.is-customize-preview .hero-sizes .divider-v { width: 96px; height: 1px; }
  body.is-customize-preview .hero-sizes .size { font-size: 2.5rem; }
  body.is-customize-preview .concept-content h2 { font-size: 2.5rem; }
  body.is-customize-preview .walkscore-card { flex-direction: column; text-align: center; }
  body.is-customize-preview .walkscore-number { padding-left: 0; border-left: none; padding-top: 1.5rem; border-top: 1px solid hsla(36,50%,45%,0.3); }
  body.is-customize-preview .map-frame { aspect-ratio: 4/3; }
}

/* ============================================
   RESPONSIVE — ≤768px (Mobile)
   ============================================ */
@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .main-nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: hsla(40,25%,96%,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 999;
  }
  .main-nav.open { display: flex; }
  .main-nav a { color: var(--foreground); font-size: 1rem; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: 1fr; }
  .nearby-grid { flex-direction: column; align-items: center; }
  .map-frame { aspect-ratio: 4/3; }
  .map-badge span { max-width: 200px; overflow: hidden; text-overflow: ellipsis; }
  .hero-logo img { height: 100px; }
  .hero-card { padding: 1.5rem; }
  .concept-content h2 { font-size: 2.5rem; }
  .concept-content { padding: 0 2rem; }
  .tour-sidebar { flex-direction: column; }
  .social-links { flex-direction: column; }
  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
  .contact-grid { gap: 3rem; }
}

/* ============================================
   RESPONSIVE — ≤480px (Small Mobile)
   ============================================ */
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .site-header { padding: 0.75rem 1.25rem; }

  .hero-logo img { height: 80px; }
  .hero-card { padding: 1.25rem 1rem; }
  .hero-card .label { font-size: 0.7rem; letter-spacing: 0.2em; }
  .hero-sizes { gap: 0.75rem; }
  .hero-sizes .size { font-size: 2rem; }

  .concept-content h2 { font-size: 2rem; }
  .concept-content p { font-size: 1rem; }

  .areas-section { padding: 5rem 0; }
  .amenities-grid { grid-template-columns: 1fr; }
  .amenities-header h2 { font-size: 2.5rem; }

  .gallery-section { padding: 5rem 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .gallery-header h2 { font-size: 2.5rem; }

  .residences-section { padding: 5rem 0; }
  .residences-grid { grid-template-columns: 1fr; }
  .residences-header h2 { font-size: 2.5rem; }
  .plan-btn .plan-name { font-size: 1.25rem; }
  .plan-btn .plan-size { font-size: 0.95rem; }

  .features-section { padding: 5rem 0; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .features-header h2 { font-size: 2.5rem; }

  .location-section { padding: 5rem 0; }
  .location-header h2 { font-size: 2.5rem; }
  .walkscore-card { padding: 1.5rem; }
  .walkscore-number .score { font-size: 3.5rem; }
  .nearby-card { width: 100%; max-width: 320px; }
  .map-frame { aspect-ratio: 1/1; border-radius: 1rem; }
  .map-badge span { display: none; }

  .tour-section { padding: 5rem 0; }
  .tour-header h2 { font-size: 2.5rem; }
  .tour-iframe-wrapper { min-height: 350px; }
  .tour-iframe-wrapper iframe { min-height: 350px; }

  .contact-section { padding: 5rem 0; }
  .contact-form h2 { font-size: 2.5rem; }
  .social-links { flex-direction: column; }

  .site-footer { padding: 2rem 1.25rem 1rem; }
  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
}

/* ============================================
   RESPONSIVE — ≤360px (XS Mobile)
   ============================================ */
@media (max-width: 360px) {
  .container { padding: 0 1rem; }

  .hero-logo img { height: 64px; }
  .hero-card { padding: 1rem; border-radius: 0.75rem; }
  .hero-sizes .size { font-size: 1.75rem; }
  .hero-card .label { font-size: 0.65rem; }

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

  .features-grid { grid-template-columns: 1fr; }

  .concept-content h2 { font-size: 1.75rem; }

  .contact-form h2, .features-header h2,
  .gallery-header h2, .residences-header h2,
  .location-header h2, .tour-header h2 { font-size: 2rem; }

  .contact-card { padding: 1.25rem; }
  .contact-card .card-inner { gap: 1rem; }
  .contact-card .card-icon { width: 48px; height: 48px; }
  .contact-card .card-icon svg { width: 24px; height: 24px; }

  .plan-preview { grid-template-columns: 1fr; }
}

/* ============================================
   HORIZONTAL LAYOUT & TOTEM NAV (FINAL)
   ============================================ */
.footer-section {
  width: 100vw;
  height: 100vh;
  flex-shrink: 0;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--navy);
}

.footer-section .site-footer {
  width: 100%;
  padding: 0;
  margin: 0;
}

.fixed-horizontal-nav {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
}

.horiz-nav-btn {
  width: 80px;
  height: 80px;
  border-radius: 9999px;
  border: 1px solid hsla(36, 50%, 45%, 0.3);
  background: hsla(40, 25%, 96%, 0.85);
  backdrop-filter: blur(15px);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.horiz-nav-btn:hover {
  background: var(--gold);
  color: white;
  transform: scale(1.15);
  box-shadow: 0 15px 50px rgba(172, 126, 57, 0.25);
}

.horiz-nav-btn svg {
  width: 44px;
  height: 44px;
}

@media (max-width: 1024px) {
  .fixed-horizontal-nav { display: none; }
  .footer-section { width: auto; height: auto; display: block; background: transparent; }
  .horizontal-scroller { display: block; overflow-x: hidden; height: auto; width: auto; }
}

/* Scrollbar reset for Totem */
.horizontal-scroller::-webkit-scrollbar { display: none; }
.horizontal-scroller { -ms-overflow-style: none; scrollbar-width: none; }
