/* ═══════════════════════════════════════════════════
   CHÂTEAU JARDIN — style.css
   Paleta: #F8F5F0 (creme) | #6B1F2A (vinho) | #C9A84C (dourado)
═══════════════════════════════════════════════════ */

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

:root {
  --cream: #F8F5F0;
  --cream-dark: #EDE9E2;
  --wine: #6B1F2A;
  --wine-dark: #4E1620;
  --wine-light: #8B3040;
  --gold: #C9A84C;
  --gold-light: #D9BE7A;
  --gold-dark: #A8882C;
  --dark: #1A1008;
  --dark2: #2C1F10;
  --text: #3A2A1A;
  --text-light: #7A6A5A;
  --white: #FFFFFF;
  --shadow: 0 8px 40px rgba(26,16,8,0.15);
  --shadow-lg: 0 20px 60px rgba(26,16,8,0.25);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --header-h: 80px;
}

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

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
  /* Espaço para os botões flutuantes não cobrirem o rodapé */
  padding-bottom: 100px;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
textarea, input, select { font-family: inherit; }

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}

.section { padding: 100px 0; }
.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-label.light { color: var(--gold-light); }
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--wine-dark);
  margin-bottom: 24px;
}
.section-title.light { color: var(--cream); }
.section-title.center { text-align: center; }
.section-title em { font-style: italic; color: var(--gold); }
.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 640px;
  margin-bottom: 48px;
}
.section-sub.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-sub.light { color: rgba(248,245,240,0.75); }

/* ─── REVEAL ANIMATION ─── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--wine);
  color: var(--white);
  padding: 14px 32px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: var(--transition);
}
.btn-primary:hover {
  background: var(--wine-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(107,31,42,0.35);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--wine);
  padding: 13px 30px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid var(--wine);
  border-radius: 4px;
  transition: var(--transition);
}
.btn-secondary:hover {
  background: var(--wine);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--dark);
  padding: 16px 40px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: var(--transition);
}
.btn-hero-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(201,168,76,0.45);
}
.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  padding: 15px 36px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.7);
  color: var(--white);
  border-radius: 4px;
  transition: var(--transition);
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}
.btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--wine);
  color: var(--white);
  padding: 16px 32px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: var(--transition);
  margin-top: 8px;
}
.btn-submit:hover {
  background: var(--wine-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(107,31,42,0.35);
}
.btn-submit.wpp-btn { background: #25D366; }
.btn-submit.wpp-btn:hover { background: #128C7E; }
.btn-planta {
  width: 100%;
  padding: 12px;
  background: transparent;
  border: 1.5px solid var(--wine);
  color: var(--wine);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: var(--transition);
  margin-top: 16px;
}
.btn-planta:hover, .planta-card:hover .btn-planta {
  background: var(--wine);
  color: var(--white);
}
.btn-footer-cta {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: var(--transition);
}
.btn-footer-cta:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline-sm {
  display: inline-block;
  padding: 10px 22px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.6);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: var(--transition);
  margin-top: 12px;
}
.btn-outline-sm:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}
.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--wine);
  transition: var(--transition);
}
.btn-phone:hover { color: var(--gold-dark); }
.link-privacy, .link-privacy-footer {
  background: none; border: none;
  color: var(--gold-dark);
  font-size: inherit;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}
.link-privacy-footer { color: var(--gold-light); font-size: 0.8rem; }

/* ─── HEADER ─── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(248,245,240,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(26,16,8,0.12);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: var(--header-h);
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}
.header-logo { flex: 0 0 auto; }
.logo-text {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--wine-dark);
}
.logo-text em { font-style: italic; color: var(--gold); }
.logo-sub {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 2px;
  line-height: 1.4;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: center;
}
.header-nav a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  padding: 6px 14px;
  border-radius: 4px;
  transition: var(--transition);
}
.header-nav a:hover { color: var(--wine); background: rgba(107,31,42,0.06); }
.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--wine);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 40px 24px;
  border-top: 1px solid var(--cream-dark);
  background: rgba(248,245,240,0.98);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  padding: 12px 0;
  border-bottom: 1px solid var(--cream-dark);
}
.mobile-menu .btn-primary { margin-top: 12px; width: 100%; justify-content: center; }

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  transform: scale(1.04);
  animation: kenBurns 8s ease-in-out infinite alternate;
}
.hero-slide.active { opacity: 1; }
@keyframes kenBurns {
  from { transform: scale(1.04); }
  to   { transform: scale(1); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,16,8,0.3) 0%,
    rgba(26,16,8,0.55) 50%,
    rgba(26,16,8,0.75) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 20px;
  max-width: 900px;
  margin-top: var(--header-h);
  animation: fadeUp 1.2s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.badge-lancamento {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 2px;
  margin-bottom: 24px;
  animation: fadeUp 1.2s 0.2s ease both;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  animation: fadeUp 1.2s 0.35s ease both;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 8px;
  line-height: 1.35;
  font-weight: 400;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeUp 1.2s 0.45s ease both;
}
.hero-address {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
  animation: fadeUp 1.2s 0.5s ease both;
}
.hero-features {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 8px;
  padding: 20px 32px;
  margin-bottom: 40px;
  animation: fadeUp 1.2s 0.65s ease both;
}
.hero-feat { text-align: center; }
.feat-icon { font-size: 1.4rem; display: block; margin-bottom: 6px; }
.feat-text { font-size: 0.75rem; line-height: 1.5; }
.feat-text strong { color: var(--gold-light); display: block; }
.hero-sep { width: 1px; height: 40px; background: rgba(255,255,255,0.3); }
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1.2s 0.8s ease both;
}
.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: var(--transition);
}
.dot.active { background: var(--gold); width: 24px; border-radius: 4px; }
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  right: 40px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { transform: scaleY(1); opacity: 0.6; }
  50% { transform: scaleY(1.3); opacity: 1; }
}

/* ─── SOBRE ─── */
.sobre { background: var(--cream); }
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sobre-text p { margin-bottom: 16px; color: var(--text); line-height: 1.8; }
.sobre-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 32px;
}
.pill {
  display: inline-block;
  background: rgba(107,31,42,0.08);
  color: var(--wine);
  border: 1px solid rgba(107,31,42,0.2);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.img-stack {
  position: relative;
  padding-bottom: 60px;
  padding-right: 50px;
}
.img-main {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
}
.img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 4px solid var(--cream);
}
.img-stat-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
  padding: 24px 32px;
  background: var(--wine);
  border-radius: var(--radius);
}
.stat { text-align: center; flex: 1; }
.stat strong { display: block; font-family: var(--font-serif); font-size: 1.6rem; font-weight: 600; color: var(--gold); }
.stat span { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
.stat-sep { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

/* ─── HERO STATS BAR ─── */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 36px auto 0;
  padding: 16px 32px;
  background: rgba(26,16,8,0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-lg);
  max-width: 720px;
  width: 100%;
}

/* ─── SOBRE IMAGEM E BADGE ─── */
.sobre-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.sobre-accent-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(19,19,18,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: var(--radius);
  padding: 14px 22px;
  color: var(--white);
  box-shadow: var(--shadow);
}
.sobre-accent-badge .sab-title {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold-light);
}
.sobre-accent-badge .sab-sub {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.75);
  margin-top: 2px;
}

/* ─── VIDEO SECTION ─── */
.section-video {
  position: relative;
  height: 70vh;
  min-height: 500px;
  background: url('assets/images/CJ-decor-harmonie-1-2-1920x1200_c.jpg') center/cover fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* iOS não suporta background-attachment:fixed — fallback */
@supports (-webkit-touch-callout: none) {
  .section-video {
    background-attachment: scroll;
  }
}
.section-video::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26,16,8,0.65);
}
.video-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}
.video-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  margin: 12px 0;
}
.video-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}
.btn-play {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(201,168,76,0.9);
  color: var(--dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: none;
}
.btn-play svg { width: 32px; height: 32px; margin-left: 4px; }
.btn-play:hover {
  background: var(--gold);
  transform: scale(1.12);
  box-shadow: 0 0 0 12px rgba(201,168,76,0.2);
}

/* ─── GALERIA (CAROUSEL) ─── */
.galeria { background: var(--cream); overflow: hidden; }
.carousel-wrapper {
  position: relative;
  overflow: hidden;
  padding: 0;
}
.carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Hide scrollbar for Firefox */
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.carousel-track::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome/Safari/Edge */
}
.carousel-item {
  flex: 0 0 33.333%;
  padding: 8px;
  scroll-snap-align: center;
}
.carousel-item img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.5s ease;
}
.carousel-item:hover img { transform: scale(1.04); }
.tall-track .carousel-item img { height: 500px; }
.carousel-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--white);
  color: var(--wine);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  z-index: 5;
  transition: var(--transition);
  border: none;
}
.carousel-btn:hover { background: var(--wine); color: var(--white); transform: translateY(-50%) scale(1.1); }
.carousel-btn.prev { left: 20px; }
.carousel-btn.next { right: 20px; }

/* ─── LAZER ─── */
.lazer {
  background: var(--wine-dark);
  position: relative;
}
.lazer-hero-img {
  margin-bottom: 48px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.lazer-hero-img img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}
.lazer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.lazer-card {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  background: rgba(255,255,255,0.05);
}
.lazer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.lazer-img { overflow: hidden; }
.lazer-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.lazer-card:hover .lazer-img img { transform: scale(1.08); }
.lazer-info { padding: 16px; }
.lazer-cat {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.lazer-info h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.3;
}

/* ─── AMBIENTES ─── */
.ambientes { background: var(--dark2); }
.ambientes .section-title { color: var(--cream); }
.ambientes .section-sub { color: rgba(248,245,240,0.7); }
.ambientes .section-label { color: var(--gold); }

/* ─── DIFERENCIAIS ─── */
.diferenciais {
  background: linear-gradient(135deg, var(--wine-dark) 0%, var(--dark2) 100%);
}
.dif-grid,
.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dif-card,
.diferencial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.dif-card:hover,
.diferencial-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.dif-icon { font-size: 1.8rem; margin-bottom: 16px; color: var(--gold-light); }
.dif-card h4,
.diferencial-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 10px;
}
.dif-card p,
.diferencial-card p { font-size: 0.88rem; color: rgba(248,245,240,0.7); line-height: 1.6; }

/* ─── TOUR VIRTUAL ─── */
.tour { background: var(--cream); }
.tour-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  min-height: 240px;
  box-shadow: var(--shadow-lg);
}
.tour-frame iframe { width: 100%; height: 100%; border: 0; }
.tour-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(26,16,8,0.7);
  cursor: pointer;
  transition: background 0.3s;
  gap: 16px;
  color: var(--white);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}
.tour-overlay:hover { background: rgba(26,16,8,0.5); }
.tour-overlay.hidden { display: none; }
.tour-play-btn svg { width: 64px; height: 64px; color: var(--gold); }

/* ─── PLANTAS ─── */
.plantas { background: var(--cream-dark); }
.plantas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.planta-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  box-shadow: 0 4px 20px rgba(26,16,8,0.08);
  position: relative;
}
.planta-card:hover {
  border-color: var(--wine);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.planta-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, #fff 60%, rgba(201,168,76,0.08));
}
.planta-card.premium {
  border-color: var(--wine-light);
  background: linear-gradient(135deg, #fff 60%, rgba(107,31,42,0.06));
}
.planta-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.planta-tipo {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
}
.planta-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(107,31,42,0.1);
  color: var(--wine);
}
.planta-badge.destaque { background: var(--gold); color: var(--dark); }
.planta-badge.premium-badge { background: var(--wine); color: var(--white); }
.planta-metragem {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 600;
  color: var(--wine-dark);
  line-height: 1;
  margin-bottom: 8px;
}
.planta-metragem span { font-size: 1.2rem; font-weight: 400; color: var(--text-light); }
.planta-detalhes {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 16px;
}
.planta-thumb {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream);
  padding: 12px;
  margin-bottom: 16px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.planta-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.planta-card:hover .planta-thumb img {
  transform: scale(1.08);
}
.planta-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 16, 8, 0.45);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.planta-card:hover .planta-thumb-overlay {
  opacity: 1;
}
.planta-thumb-badge {
  background: var(--gold);
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  transform: translateY(8px);
  transition: transform 0.3s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}
.planta-card:hover .planta-thumb-badge {
  transform: translateY(0);
}
.plantas-cta {
  text-align: center;
  padding: 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-dark);
}
.plantas-cta p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

/* ─── VIP LEAD CAPTURE PLANTAS (SUBPRODUTOS) ─── */
.plantas-grid.vip-grid {
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 28px;
}
.planta-card-vip {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-color: rgba(201, 168, 76, 0.25);
  background: #ffffff;
  padding: 26px 24px;
}
.planta-card-vip:hover {
  border-color: var(--gold);
  box-shadow: 0 16px 36px rgba(201, 168, 76, 0.15), 0 4px 12px rgba(0, 0, 0, 0.05);
}
.planta-vip-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--wine-dark);
  margin-bottom: 10px;
  line-height: 1.4;
  min-height: 42px;
}
.planta-blueprint-schematic {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: radial-gradient(circle at 50% 50%, #162438 0%, #0c1524 100%);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 24px 16px;
  margin: 16px 0 20px;
  min-height: 175px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.planta-card-vip:hover .planta-blueprint-schematic {
  transform: translateY(-2px);
  border-color: var(--gold);
}
.schematic-blueprint-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(201, 168, 76, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.08) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  opacity: 0.8;
}
.schematic-center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.schematic-cad-icon {
  color: var(--gold);
  filter: drop-shadow(0 2px 8px rgba(201, 168, 76, 0.4));
  transition: transform 0.3s ease;
}
.planta-card-vip:hover .schematic-cad-icon {
  transform: scale(1.1);
}
.schematic-cad-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.02em;
}
.schematic-cad-sub {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.schematic-badge-pill {
  position: relative;
  z-index: 2;
  margin-top: 10px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 12px;
  background: rgba(201, 168, 76, 0.18);
  color: var(--gold-light);
  border: 1px solid rgba(201, 168, 76, 0.35);
}
.planta-vip-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}
.btn-planta-wpp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 18px;
  background: #25D366;
  color: #ffffff !important;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-sm);
  letter-spacing: 0.03em;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.28);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.btn-planta-wpp:hover {
  background: #20ba59;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.38);
  color: #ffffff !important;
}
.btn-planta-subtle {
  background: transparent;
  border: 1px solid rgba(107, 31, 42, 0.2);
  color: var(--wine);
  padding: 10px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
}
.btn-planta-subtle:hover {
  background: var(--wine);
  color: #ffffff;
  border-color: var(--wine);
}
.plantas-vip-concierge {
  margin-top: 48px;
  background: linear-gradient(135deg, #1f1519 0%, #150e12 100%);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius-lg);
  padding: 36px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  box-shadow: var(--shadow-lg);
}
.pvc-left {
  flex: 1;
}
.pvc-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.25);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.pvc-left h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.35;
}
.pvc-left p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  max-width: 620px;
}
.pvc-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 0 0 auto;
}
.wpp-highlight {
  background: #25D366 !important;
  border-color: #25D366 !important;
  color: #ffffff !important;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3) !important;
  text-align: center;
  padding: 14px 28px !important;
}
.wpp-highlight:hover {
  background: #20ba59 !important;
  border-color: #20ba59 !important;
  transform: translateY(-2px) !important;
}
@media (max-width: 900px) {
  .plantas-vip-concierge {
    flex-direction: column;
    text-align: center;
    padding: 28px 20px;
  }
  .pvc-left p {
    margin: 0 auto;
  }
  .pvc-right {
    width: 100%;
  }
  .pvc-right a, .pvc-right button {
    width: 100%;
  }
}

/* ─── SIGNATURE ─── */
.signature { position: relative; padding: 0 !important; }
.signature-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  overflow: hidden;
}
.signature-bg img { width: 100%; height: 100%; object-fit: cover; }
.signature-overlay {
  position: relative;
  width: 100%;
  min-height: 80vh;
  padding: 100px 0;
  background: linear-gradient(105deg, rgba(26,16,8,0.9) 0%, rgba(107,31,42,0.7) 100%);
  display: flex;
  align-items: center;
}
.signature-content {
  max-width: 680px;
  padding: 60px 0;
}
.signature-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--white);
  margin: 12px 0 20px;
  line-height: 1.1;
}
.signature-title em { font-style: italic; color: var(--gold); }
.signature-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 40px;
}
.signature-benefits { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.sig-benefit {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.sig-check {
  flex: 0 0 auto;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 2px;
}
.sig-benefit strong { display: block; color: var(--white); font-size: 0.95rem; margin-bottom: 4px; }
.sig-benefit p { color: rgba(255,255,255,0.65); font-size: 0.85rem; line-height: 1.5; }

/* ─── LOCALIZAÇÃO ─── */
.localizacao { background: var(--cream); }
.loc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 48px;
}
.loc-map iframe {
  width: 100%;
  height: 480px;
  border: 0;
}
.loc-info {
  padding: 48px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.loc-address-block {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 32px;
}
.loc-icon { font-size: 2rem; flex: 0 0 auto; }
.loc-address-block strong { display: block; font-size: 1.1rem; font-family: var(--font-serif); color: var(--wine-dark); margin-bottom: 8px; }
.loc-address-block p { color: var(--text-light); line-height: 1.7; }
.loc-btns { display: flex; gap: 12px; margin-bottom: 32px; flex-wrap: wrap; }
.btn-maps {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: var(--transition);
  text-decoration: none;
}
.btn-maps.gmaps { background: #4285F4; color: var(--white); }
.btn-maps.gmaps:hover { background: #3367D6; }
.btn-maps.waze { background: #33CCFF; color: var(--dark); }
.btn-maps.waze:hover { background: #00b8e0; }
.loc-region-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.loc-region-imgs img { height: 120px; object-fit: cover; border-radius: var(--radius); }

/* ─── PONTOS ─── */
.pontos { background: var(--cream-dark); }
.pontos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ponto-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.ponto-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.ponto-card > img { width: 100%; height: 200px; object-fit: cover; }
.ponto-info { padding: 20px; background: var(--white); }
.ponto-cat {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 6px;
}
.ponto-info h3 { font-family: var(--font-serif); font-size: 1.05rem; color: var(--wine-dark); margin-bottom: 4px; }
.ponto-info p { font-size: 0.8rem; color: var(--text-light); }

/* ─── PROXIMIDADE ─── */
.proximidade {
  background: linear-gradient(135deg, var(--dark) 0%, var(--wine-dark) 100%);
}
.prox-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.prox-col h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201,168,76,0.3);
}
.prox-col ul { display: flex; flex-direction: column; gap: 10px; }
.prox-col li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(248,245,240,0.75);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.prox-col li strong { color: var(--gold-light); font-size: 0.78rem; flex: 0 0 auto; }

/* ─── CONTATO ─── */
.contato {
  background: var(--cream);
}
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.contato-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--wine-dark);
  line-height: 1.2;
  margin-bottom: 20px;
}
.contato-left p { color: var(--text-light); margin-bottom: 24px; }
.contato-beneficios { margin-bottom: 32px; }
.cb-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.9rem;
  color: var(--text);
  border-bottom: 1px solid var(--cream-dark);
}
.cb-item span {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--wine);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex: 0 0 auto;
}
.contato-social { margin-top: 24px; }
.contato-social > p { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); margin-bottom: 12px; }
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-right: 10px;
  margin-bottom: 10px;
  transition: var(--transition);
  text-decoration: none;
}
.social-link.phone { background: rgba(107,31,42,0.1); color: var(--wine); border: 1px solid rgba(107,31,42,0.2); }
.social-link.phone:hover { background: var(--wine); color: var(--white); }
.social-link.whatsapp { background: rgba(37,211,102,0.1); color: #128C7E; border: 1px solid rgba(37,211,102,0.3); }
.social-link.whatsapp:hover { background: #25D366; color: var(--white); }
.contato-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow);
  border: 1px solid var(--cream-dark);
}
.form-header { margin-bottom: 28px; }
.form-header h3 { font-family: var(--font-serif); font-size: 1.5rem; color: var(--wine-dark); margin-bottom: 4px; }
.form-header p { font-size: 0.8rem; color: var(--text-light); }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: 4px;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.2s;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--wine);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.5;
}
.form-check input[type=checkbox] {
  width: 16px; height: 16px;
  flex: 0 0 auto;
  margin-top: 2px;
  accent-color: var(--wine);
}

/* ─── OUTROS ─── */
.outros { background: var(--cream); }
.outros-wrap {
  position: relative;
  overflow: hidden;
}
.outros-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.outros-track::-webkit-scrollbar { display: none; }
.outro-card {
  flex: 0 0 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  scroll-snap-align: start;
  background: var(--wine-dark);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border: 1px solid rgba(201,168,76,0.2);
}
.outro-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.outro-card-img-wrap { position: relative; width: 100%; height: 210px; overflow: hidden; }
.outro-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.outro-card:hover .outro-card-img-wrap img { transform: scale(1.08); }
.outro-status-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(19,19,18,0.85);
  backdrop-filter: blur(8px);
  color: var(--gold-light);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(201,168,76,0.3);
}
.outro-info { padding: 22px; display: flex; flex-direction: column; flex-grow: 1; }
.outro-bairro {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.outro-info h3 { font-family: var(--font-serif); font-size: 1.35rem; color: var(--white); margin-bottom: 6px; font-weight: 400; }
.outro-specs { font-size: 0.85rem; color: rgba(255,255,255,0.75); margin-bottom: 16px; font-weight: 300; }
.outro-link-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  transition: color 0.2s, transform 0.2s;
}
.outro-card:hover .outro-link-btn { color: var(--white); transform: translateX(4px); }
.outros-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--white);
  color: var(--wine);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  z-index: 5;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.outros-btn:hover { background: var(--wine); color: var(--white); }
.outros-btn.prev { left: 8px; }
.outros-btn.next { right: 8px; }

/* ─── FOOTER ─── */
.site-footer { background: var(--dark); }
.footer-top { padding: 80px 0 60px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
}
.footer-brand .logo-text { font-size: 1.2rem; margin-bottom: 16px; }
.footer-brand p { font-size: 0.85rem; color: rgba(248,245,240,0.55); line-height: 1.8; max-width: 260px; margin-top: 12px; }
.footer-socials { display: flex; gap: 8px; margin-top: 20px; }
.fs-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(248,245,240,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  transition: var(--transition);
  text-decoration: none;
}
.fs-link:hover { background: var(--wine); color: var(--white); }
.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li { font-size: 0.82rem; line-height: 1.5; }
.footer-col a { color: rgba(248,245,240,0.6); transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-col li { color: rgba(248,245,240,0.5); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}
.footer-disclaimer { font-size: 0.68rem; color: rgba(248,245,240,0.3); line-height: 1.6; margin-bottom: 16px; }
.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-legal span { font-size: 0.75rem; color: rgba(248,245,240,0.4); }

/* ─── FLUTUANTES ─── */
.floating-btns {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.float-btn.wpp { background: #25D366; color: var(--white); }
.float-btn.wpp:hover { background: #128C7E; transform: translateY(-3px) scale(1.04); }
.float-btn.call { background: var(--wine); color: var(--white); }
.float-btn.call:hover { background: var(--wine-dark); transform: translateY(-3px) scale(1.04); }
.float-icon { font-size: 1.1rem; }

/* ─── MODAIS ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(26,16,8,0.75);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open {
  display: flex;
  animation: fadeIn 0.25s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.modal-box.modal-wide { max-width: 800px; }
.modal-box.modal-compact { max-width: 440px; }
.modal-box.modal-video {
  background: var(--dark);
  padding: 0;
  max-width: 960px;
  overflow: visible;
  border-radius: var(--radius);
}
.modal-box.modal-lazer-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
  max-width: 800px;
  overflow: hidden;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--cream-dark);
  color: var(--text);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  z-index: 10;
}
.modal-close:hover { background: var(--wine); color: var(--white); }
.modal-header { margin-bottom: 28px; }
.modal-header h2 { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 500; color: var(--wine-dark); margin-bottom: 8px; }
.modal-header p { color: var(--text-light); font-size: 0.9rem; }
.modal-label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
}
.modal-divider { border: 0; border-top: 1px solid var(--cream-dark); margin: 20px 0; }
.video-embed-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
}
.video-embed-wrap video,
.video-embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: 0;
  border-radius: var(--radius);
}
.wpp-header { display: flex; flex-direction: column; align-items: center; text-align: center; }
.wpp-icon { font-size: 3rem; margin-bottom: 12px; }
.wpp-direct { display: block; text-align: center; margin-top: 16px; font-size: 0.85rem; color: var(--text-light); transition: color 0.2s; text-decoration: underline; }
.wpp-direct:hover { color: var(--wine); }
.call-numbers { display: flex; flex-direction: column; gap: 12px; }
.call-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--cream);
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  color: var(--wine);
  transition: var(--transition);
  text-decoration: none;
}
.call-link:hover { background: var(--wine); color: var(--white); }
.ficha-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 32px; }
.ficha-item {
  padding: 16px;
  background: var(--cream);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}
.ficha-item strong { display: block; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); margin-bottom: 4px; }
.ficha-item span { font-size: 0.9rem; color: var(--wine-dark); font-weight: 500; }
.lazer-modal-img img { width: 100%; height: 100%; object-fit: cover; }
.lazer-modal-info { padding: 40px; display: flex; flex-direction: column; justify-content: center; gap: 16px; }
.lazer-modal-info h2 { font-family: var(--font-serif); font-size: 1.6rem; color: var(--wine-dark); }
.lazer-modal-info p { color: var(--text-light); line-height: 1.7; }
/* ─── STUDIO DE PLANTAS INTERATIVO (WIDESCREEN ARCHITECTURAL STUDIO) ─── */
.modal-box.modal-planta-detail {
  max-width: 1420px !important;
  width: 96vw !important;
  height: 90vh !important;
  max-height: 90vh !important;
  padding: 0 !important;
  margin: auto !important;
  overflow: hidden !important;
  display: grid !important;
  grid-template-columns: 1fr 380px !important;
  background: #110e0b !important;
  border-radius: 16px !important;
  border: 1px solid rgba(201, 168, 76, 0.3) !important;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.85) !important;
  position: relative !important;
}

/* PAINEL ESQUERDO: CANVAS DA PLANTA */
.planta-canvas-pane {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: radial-gradient(circle at center, #ffffff 45%, #f4eee2 100%);
  position: relative;
  overflow: hidden;
  border-right: 1px solid rgba(201, 168, 76, 0.2);
}

.canvas-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  background: rgba(26, 16, 8, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
  z-index: 5;
}

.canvas-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.canvas-tag {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.canvas-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: #fff;
  font-weight: 600;
}

/* Zoom dock flutuante */
.canvas-zoom-dock {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 4px 10px;
  border-radius: 24px;
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.dock-btn {
  background: transparent;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: var(--transition);
}

.dock-btn:hover {
  background: var(--gold);
  color: var(--dark);
  transform: scale(1.1);
}

.dock-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-light);
  padding: 0 4px;
  min-width: 44px;
  text-align: center;
}

/* Palco de Exibição com Zoom & Drag */
.canvas-stage-area {
  flex: 1;
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: zoom-in;
  user-select: none;
}

.canvas-stage-area.is-zoomed {
  cursor: grab;
}

.canvas-stage-area.is-zoomed:active {
  cursor: grabbing;
}

#plantaMainImg {
  max-width: 92%;
  max-height: 88%;
  object-fit: contain;
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.2s ease;
  transform-origin: center center;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.12));
}

.canvas-hint-pill {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(20, 14, 10, 0.82);
  backdrop-filter: blur(8px);
  color: var(--cream);
  font-size: 0.78rem;
  padding: 8px 20px;
  border-radius: 30px;
  pointer-events: none;
  border: 1px solid rgba(201, 168, 76, 0.35);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.02em;
  z-index: 4;
}

/* PAINEL DIREITO: CONTROLES & ESPECIFICAÇÕES */
.planta-sidebar-pane {
  background: #19130e;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
  position: relative;
}

.modal-close-sidebar {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.25);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10;
}

.modal-close-sidebar:hover {
  background: var(--wine);
  border-color: var(--wine-light);
  transform: rotate(90deg);
}

.sidebar-header {
  margin-bottom: 24px;
}

.sidebar-label {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 4px;
}

.sidebar-metragem {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  color: #fff;
  line-height: 1;
  font-weight: 600;
  margin: 0 0 6px;
}

.sidebar-metragem span {
  font-size: 1.4rem;
  color: var(--gold-light);
  font-weight: 400;
}

.sidebar-suites {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.sidebar-section {
  margin-bottom: 22px;
}

.sidebar-section-title {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 12px;
}

/* Cards interativos de variação de layout */
.sidebar-variant-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.variant-card-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(201, 168, 76, 0.2);
  border-radius: 12px;
  padding: 10px 14px;
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
  width: 100%;
}

.variant-card-btn img {
  width: 60px;
  height: 44px;
  object-fit: contain;
  background: #fff;
  border-radius: 6px;
  padding: 2px;
  flex-shrink: 0;
}

.variant-card-info strong {
  display: block;
  font-size: 0.86rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 2px;
}

.variant-card-info span {
  display: block;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.6);
}

.variant-card-btn:hover {
  background: rgba(201, 168, 76, 0.08);
  border-color: var(--gold);
  transform: translateX(4px);
}

.variant-card-btn.active {
  background: linear-gradient(135deg, rgba(107, 31, 42, 0.45) 0%, rgba(201, 168, 76, 0.2) 100%);
  border-color: var(--gold);
  box-shadow: 0 4px 18px rgba(201, 168, 76, 0.25);
}

.variant-card-btn.active .variant-card-info strong {
  color: var(--gold-light);
}

/* Checklist de especificações */
.sidebar-specs-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-specs-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4;
}

.sidebar-specs-list li span {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
}

/* Ações VIP */
.sidebar-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.btn-block {
  width: 100%;
  padding: 14px 20px;
  font-size: 0.9rem;
  text-align: center;
  justify-content: center;
}

.btn-whatsapp-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 13px 18px;
  border-radius: 30px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-block:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

/* Responsivo para Tablets e Smartphones */
@media (max-width: 980px) {
  .modal-box.modal-planta-detail {
    grid-template-columns: 1fr !important;
    grid-template-rows: 52vh auto !important;
    height: 94vh !important;
    max-height: 94vh !important;
    overflow-y: auto !important;
  }
  .planta-canvas-pane {
    height: 52vh;
    border-right: none;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  }
  .canvas-title-wrap {
    display: none;
  }
  .canvas-top-bar {
    justify-content: center;
    padding: 12px;
  }
  .planta-sidebar-pane {
    padding: 24px 20px;
  }
  .sidebar-metragem {
    font-size: 2.4rem;
  }
}
.privacy-content h4 { font-family: var(--font-serif); font-size: 1.1rem; color: var(--wine-dark); margin: 20px 0 8px; }
.privacy-content p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }

/* ─── TOAST ─── */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 3000;
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--wine-dark);
  color: var(--white);
  padding: 16px 28px;
  border-radius: 40px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  min-width: 320px;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex: 0 0 auto;
}
.toast-text strong { display: block; font-size: 0.9rem; }
.toast-text span { display: block; font-size: 0.78rem; opacity: 0.75; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1200px) {
  .dif-grid, .diferenciais-grid, .lazer-grid { grid-template-columns: repeat(3, 1fr); }
  .plantas-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  .sobre-grid, .contato-grid { grid-template-columns: 1fr; gap: 48px; }
  .prox-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .pontos-grid { grid-template-columns: repeat(2, 1fr); }
  .loc-layout { grid-template-columns: 1fr; }
  .loc-map iframe { height: 300px; }
  .loc-info { padding: 32px; }
  .img-stack { padding-bottom: 40px; padding-right: 30px; }
  .dif-grid, .diferenciais-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root { --header-h: 60px; }

  /* Container */
  .container { padding: 0 16px; }
  .section { padding: 56px 0; }
  .signature-overlay { padding: 56px 0; }

  /* Header */
  .header-inner { padding: 0 16px; gap: 8px; }
  .logo-text { font-size: 1.1rem; }
  .logo-sub { display: none; }  /* Oculta o CRECI no mobile — espaço insuficiente */
  .header-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { padding: 16px 16px 20px; }
  .mobile-menu a { padding: 14px 0; font-size: 0.95rem; }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero-content { padding: 0 16px; max-width: 100%; }
  .hero-features {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    width: 100%;
    max-width: 100%;
  }
  .hero-feat { display: flex; align-items: center; gap: 12px; text-align: left; }
  .feat-icon { font-size: 1.2rem; margin-bottom: 0; }
  .hero-sep { width: 100%; height: 1px; }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .btn-hero-primary,
  .btn-hero-outline {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 16px 24px;
    font-size: 0.85rem;
  }
  .hero-dots { bottom: 20px; }

  /* Sobre */
  .sobre-images { display: none; }
  .img-stat-bar { display: none; }
  .sobre-text .btn-secondary { width: 100%; justify-content: center; }

  /* Stats (hero) */
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 16px;
    margin-top: 24px;
  }
  .hero-stats .stat-sep { display: none; }
  .hero-stats .stat strong { font-size: 1.35rem; }

  /* Galeria / Carousel */
  .carousel-item { flex: 0 0 88%; }
  .carousel-item img { height: 240px; }
  .tall-track .carousel-item img { height: 300px; }
  .carousel-btn { width: 40px; height: 40px; font-size: 1.2rem; }

  /* Lazer */
  .lazer-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 16px;
    padding: 0 4px 20px;
    scroll-padding-left: 4px;
  }
  .lazer-grid::-webkit-scrollbar { display: none; }
  .lazer-card {
    flex: 0 0 82%;
    scroll-snap-align: center;
  }
  .lazer-img img { height: 200px; }
  .lazer-hero-img img { height: 240px; }

  /* Diferenciais */
  .dif-grid, .diferenciais-grid { grid-template-columns: 1fr; }
  .dif-card, .diferencial-card { padding: 20px 18px; }

  /* Tour */
  .tour-frame { aspect-ratio: unset; min-height: 280px; height: 56vw; }

  /* Plantas */
  .plantas-grid { grid-template-columns: 1fr; }
  .planta-card { padding: 20px 16px; }
  .planta-metragem { font-size: 2.4rem; }
  .plantas-cta { padding: 24px 16px; }
  .plantas-cta .btn-primary { width: 100%; justify-content: center; }

  /* Signature */
  .signature-content { padding: 40px 0; }
  .signature-content .btn-hero-primary { width: 100%; justify-content: center; }

  /* Localização */
  .prox-grid { grid-template-columns: 1fr; }
  .loc-map iframe { height: 260px; }
  .loc-info { padding: 20px 16px; }
  .loc-region-imgs { grid-template-columns: 1fr 1fr; gap: 8px; }
  .loc-region-imgs img { height: 100px; }

  /* Pontos */
  .pontos-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .ponto-card > img { height: 140px; }
  .ponto-info { padding: 14px; }

  /* Proximidade */
  .prox-col li { font-size: 0.78rem; }
  .prox-col li span { flex: 1; margin-right: 8px; }

  /* Contato */
  .contato-grid { gap: 32px; }
  .contato-title { font-size: 1.8rem; }
  .contato-form-wrap { padding: 24px 16px; }
  .form-row.two { grid-template-columns: 1fr; }
  .social-link { display: flex; width: 100%; margin-right: 0; }

  /* Outros empreendimentos */
  .outro-card { flex: 0 0 85%; }
  .outros-btn { display: none; }
  .outros-track { padding: 0 4px 16px; scroll-padding-left: 4px; }

  /* Footer */
  .footer-top { padding: 48px 0 36px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand p { max-width: 100%; }
  .ficha-grid { grid-template-columns: 1fr; }

  /* Botões flutuantes */
  .floating-btns { bottom: 16px; right: 12px; gap: 8px; }
  .float-btn span:last-child { display: none; }
  .float-btn { padding: 14px; border-radius: 50%; }

  /* Modais */
  .modal-box { padding: 36px 16px 24px; max-height: 94vh; }
  .modal-box.modal-lazer-detail {
    grid-template-columns: 1fr;
    max-height: 90vh;
    overflow-y: auto;
  }
  .lazer-modal-img { height: 220px; overflow: hidden; }
  .lazer-modal-img img { width: 100%; height: 100%; object-fit: cover; }
  .lazer-modal-info { padding: 24px 20px; }
  .modal-header h2 { font-size: 1.4rem; }

  /* Misc */
  .hero-scroll-hint, .hero-scroll-indicator { display: none; }
  .section-sub { font-size: 0.95rem; }
  .section-title { font-size: clamp(1.7rem, 5.5vw, 2.5rem); }
}

@media (max-width: 480px) {
  :root { --header-h: 56px; }

  /* Hero */
  .hero-title { font-size: clamp(2.4rem, 12vw, 3.5rem); }
  .badge-lancamento { font-size: 0.65rem; padding: 5px 14px; margin-bottom: 16px; }
  .hero-address { font-size: 0.75rem; letter-spacing: 0.08em; margin-bottom: 20px; }
  .hero-features { padding: 12px 16px; margin-bottom: 24px; }
  .btn-hero-primary { font-size: 0.8rem; padding: 14px 20px; letter-spacing: 0.06em; }
  .btn-hero-outline { font-size: 0.78rem; padding: 13px 20px; }

  /* Lazer */
  .lazer-img img { height: 200px; }

  /* Plantas */
  .planta-card { padding: 16px 14px; }
  .planta-thumb { height: 170px; }

  /* Diferenciais */
  .dif-card, .diferencial-card { padding: 18px 14px; }
  .dif-icon { font-size: 1.5rem; margin-bottom: 12px; }

  /* Pontos */
  .pontos-grid { grid-template-columns: 1fr; }

  /* Sobre */
  .sobre-accent-badge { bottom: 12px; left: 12px; padding: 10px 14px; }
  .sobre-accent-badge .sab-title { font-size: 1rem; }

  /* Contato form */
  .contato-form-wrap { border-radius: var(--radius); }
  .form-header h3 { font-size: 1.3rem; }

  /* Stats hero */
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 8px; padding: 12px; }
  .hero-stats .stat strong { font-size: 1.2rem; }

  /* Modais */
  .modal-box { padding: 32px 14px 20px; }
  .modal-box.modal-video { max-width: 98vw; }

  /* Footer */
  .footer-legal { flex-direction: column; gap: 8px; text-align: center; }
  .footer-disclaimer { font-size: 0.65rem; }
}
