/* ================================================================
   FL CORPORATE EVENTS — PREMIUM CSS
   Palette: Black (#0a0a0a), White (#ffffff), Gold (#c9a84c / #e8c96d)
================================================================ */

/* ── Variables ── */
:root {
  --black:      #0a0a0a;
  --black-soft: #111111;
  --black-mid:  #1a1a1a;
  --black-card: #141414;
  --white:      #ffffff;
  --white-off:  #f5f5f0;
  --white-dim:  rgba(255,255,255,0.85);
  --gold:       #c9a84c;
  --gold-light: #e8c96d;
  --gold-dark:  #a07830;
  --gold-glow:  rgba(201,168,76,0.25);
  --gray-light: #e8e8e4;
  --gray-mid:   #888880;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Montserrat', Arial, sans-serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-gold: 0 4px 30px rgba(201,168,76,0.2);
  --shadow-dark: 0 8px 40px rgba(0,0,0,0.5);
  --radius: 2px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--black);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: var(--font-sans); }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 600; line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
em { font-style: italic; color: var(--gold); }

/* ── Container ── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Section ── */
.section { padding: 100px 0; }
.dark-bg { background: var(--black-soft); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header.light h2 { color: var(--white); }
.section-header.light h2 em { color: var(--gold); }

.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 4px 16px;
  margin-bottom: 16px;
}

.gold-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 20px auto;
}

.section-sub {
  max-width: 600px;
  margin: 0 auto;
  color: var(--gray-mid);
  font-size: 1rem;
}
.section-sub.light { color: rgba(255,255,255,0.6); }

/* ================================================================
   BUTTONS
================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--black);
  border: none;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(201,168,76,0.4);
  filter: brightness(1.1);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-gold-sm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-gold-sm:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  filter: brightness(1.1);
}

.btn-whatsapp-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 0.78rem;
  font-weight: 700;
  background: #25D366;
  color: #fff;
  border-radius: 4px;
  transition: var(--transition);
}
.btn-whatsapp-inline:hover { background: #1da851; transform: translateY(-2px); }

.btn-email-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 0.78rem;
  font-weight: 700;
  background: var(--black-mid);
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 4px;
  transition: var(--transition);
}
.btn-email-inline:hover { background: var(--gold); color: var(--black); transform: translateY(-2px); }

.btn-submit {
  width: 100%;
  padding: 18px 40px;
  font-size: 0.9rem;
  justify-content: center;
  margin-top: 8px;
}

/* ================================================================
   NAVBAR
================================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 2rem;
  transition: var(--transition);
}
.navbar.scrolled .nav-container { padding: 14px 2rem; }

/* Logo */
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}
.logo-fl {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0.05em;
}
.logo-text {
  font-family: var(--font-sans);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--white-dim);
  text-transform: uppercase;
}
.logo-text em {
  font-style: normal;
  color: var(--gold);
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right var(--transition);
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { right: 0; }

.nav-cta-link {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  border-radius: var(--radius);
  transition: var(--transition);
}
.nav-cta-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  filter: brightness(1.1);
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 3px;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gray-mid);
  border-radius: 3px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-sans);
}
.lang-btn.active,
.lang-btn:hover {
  background: var(--gold);
  color: var(--black);
}
.flag { font-size: 1rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  display: block;
}
.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); }

/* ================================================================
   HERO
================================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.6) 0%,
    rgba(0,0,0,0.5) 50%,
    rgba(0,0,0,0.75) 80%,
    rgba(10,10,10,1) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  max-width: 900px;
  animation: heroFadeIn 1.2s ease forwards;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 6px 20px;
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}
.hero-title em {
  color: var(--gold);
  display: block;
}

.hero-subtitle {
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  margin-bottom: 40px;
}

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

/* Hero Stats Bar */
.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.85));
  padding: 28px 2rem;
  gap: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
}
.stat-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(201,168,76,0.3);
}

/* ================================================================
   BANNER STRIP
================================================================ */
.banner-strip {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-dark));
  padding: 22px 2rem;
}
.banner-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  text-align: center;
}
.banner-inner i {
  font-size: 1.4rem;
  color: var(--black);
}
.banner-inner p {
  color: var(--black);
  font-size: 0.95rem;
  font-weight: 500;
}
.banner-inner strong {
  font-weight: 800;
}

/* ================================================================
   ABOUT
================================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text h2 {
  color: var(--white);
  margin-bottom: 24px;
}
.about-text p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 18px;
  font-size: 0.97rem;
  line-height: 1.8;
}
.about-text strong { color: var(--white); }

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(201,168,76,0.2);
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-dim);
}
.highlight-item i {
  color: var(--gold);
  width: 20px;
  font-size: 1rem;
}

.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.about-card-big {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  padding: 40px;
  text-align: center;
  border-radius: var(--radius);
}
.about-card-sm {
  background: var(--black-card);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 30px 20px;
  text-align: center;
  border-radius: var(--radius);
  transition: var(--transition);
}
.about-card-sm:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.about-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--black);
}
.about-card-sm .about-number { color: var(--gold); }
.about-card-sm .about-star { font-size: 2.5rem; color: var(--gold); }
.about-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
  margin-top: 8px;
}
.about-card-sm .about-label { color: rgba(255,255,255,0.6); }

/* ================================================================
   SERVICES
================================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--black-card);
  border: 1px solid rgba(201,168,76,0.12);
  padding: 40px 30px;
  text-align: center;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  transition: right 0.5s ease;
}
.service-card:hover::before { right: 0; }
.service-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: var(--transition);
}
.service-icon i {
  font-size: 1.6rem;
  color: var(--gold);
}
.service-card:hover .service-icon {
  background: var(--gold);
  border-color: var(--gold);
}
.service-card:hover .service-icon i { color: var(--black); }
.service-card h3 { color: var(--white); margin-bottom: 12px; font-size: 1.25rem; }
.service-card p  { color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.7; }

/* ================================================================
   PROCESS
================================================================ */
.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 60px;
}
.step-card {
  flex: 1;
  max-width: 300px;
  text-align: center;
  padding: 40px 30px;
  background: var(--black-card);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius);
  position: relative;
  transition: var(--transition);
}
.step-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.step-num {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(201,168,76,0.15);
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 20px;
}
.step-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.step-icon i { font-size: 1.8rem; color: var(--black); }
.step-card h3 { color: var(--white); margin-bottom: 12px; }
.step-card p  { color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.7; }

.step-arrow {
  display: flex;
  align-items: center;
  padding: 0 20px;
  margin-top: 80px;
  color: var(--gold);
  font-size: 1.4rem;
}

.process-cta-box {
  display: flex;
  align-items: center;
  gap: 30px;
  background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(201,168,76,0.03));
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius);
  padding: 40px 50px;
}
.process-cta-text {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex: 1;
}
.process-cta-text i {
  font-size: 2rem;
  color: var(--gold);
  margin-top: 4px;
  flex-shrink: 0;
}
.process-cta-text p { color: rgba(255,255,255,0.75); font-size: 1rem; }
.process-cta-text strong { color: var(--gold); font-weight: 700; }

/* ================================================================
   SPACES
================================================================ */
/* Wrapper para evitar overflow horizontal da página */
.filter-scroll-wrapper {
  overflow-x: auto;
  overflow-y: visible;
  width: 100%;
  max-width: 100%;
  margin-bottom: 40px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}
.filter-scroll-wrapper::-webkit-scrollbar { height: 4px; }
.filter-scroll-wrapper::-webkit-scrollbar-track { background: transparent; }
.filter-scroll-wrapper::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

.spaces-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 0;
}
.spaces-filter-names {
  flex-wrap: nowrap;
  justify-content: flex-start;
  padding-bottom: 6px;
  min-width: max-content;
}
.filter-btn {
  padding: 8px 20px;
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 30px;
  transition: var(--transition);
  cursor: pointer;
  font-family: var(--font-sans);
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.spaces-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.space-card.hidden { display: none !important; }

.space-card {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.space-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.space-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.space-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.space-card:hover .space-img-wrap img { transform: scale(1.06); }

.space-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(10,10,10,0.85);
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid rgba(201,168,76,0.4);
}
.space-badge-special { background: rgba(201,168,76,0.9); color: var(--black); border: none; }
.space-badge-luxury  { background: var(--gold); color: var(--black); border: none; }

.space-info { padding: 24px; }
.space-info h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.space-location {
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.space-location i { font-size: 0.7rem; }

.space-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 14px;
}
.space-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}
.space-meta i { color: var(--gold); font-size: 0.8rem; }

.space-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-bottom: 20px;
}

.spaces-footer-note {
  text-align: center;
  padding: 40px;
  background: rgba(201,168,76,0.05);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius);
}
.spaces-footer-note p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-bottom: 20px;
}
.spaces-footer-note i { color: var(--gold); }

/* ================================================================
   WHY US
================================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.why-card {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius);
  transition: var(--transition);
}
.why-card:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.04);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.why-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}
.why-icon i { font-size: 1.8rem; color: var(--gold); }
.why-card:hover .why-icon { background: var(--gold); }
.why-card:hover .why-icon i { color: var(--black); }
.why-card h3 { color: var(--white); margin-bottom: 12px; font-size: 1.1rem; }
.why-card p  { color: rgba(255,255,255,0.55); font-size: 0.85rem; line-height: 1.7; }

.why-cta {
  display: flex;
  justify-content: center;
}
.cta-box {
  display: flex;
  align-items: center;
  gap: 30px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  padding: 36px 50px;
  border-radius: var(--radius);
  max-width: 900px;
  width: 100%;
}
.cta-box-icon { font-size: 2.8rem; color: var(--black); flex-shrink: 0; }
.cta-box-text { flex: 1; }
.cta-box-text h3 { color: var(--black); font-size: 1.4rem; margin-bottom: 4px; }
.cta-box-text p  { color: rgba(0,0,0,0.65); font-size: 0.9rem; }
.cta-box .btn-gold { background: var(--black); color: var(--gold); flex-shrink: 0; }
.cta-box .btn-gold:hover { background: var(--black-soft); }

/* ================================================================
   GOOGLE REVIEWS
================================================================ */
.google-badge-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}
.google-badge {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--black-card);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 8px;
  padding: 24px 40px;
  transition: var(--transition);
}
.google-badge:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}
.google-logo { width: 40px; height: 40px; object-fit: contain; }
.google-badge-info {}
.google-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 4px;
}
.google-stars i { color: #FBBC04; font-size: 1.2rem; }
.google-score {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-left: 8px;
}
.google-badge-info p { color: rgba(255,255,255,0.65); font-size: 0.85rem; margin-bottom: 4px; }
.google-view { font-size: 0.78rem; color: var(--gold); font-weight: 600; }

/* ================================================================
   CLIENTS SECTION — QUEM CONFIA EM NÓS
================================================================ */
.clients-section {
  background: var(--black-soft);
  padding: 70px 0 55px;
  overflow: hidden;
}

/* Marquee track */
.clients-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 48px;
  /* fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.clients-marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marqueeScroll 32s linear infinite;
}

.clients-marquee:hover .clients-marquee-track {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.client-logo-wrap {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid rgba(201,168,76,0.25);
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  flex-shrink: 0;
  cursor: default;
}

.client-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
}

.client-logo-wrap:hover {
  transform: scale(1.1);
  border-color: rgba(201,168,76,0.7);
  box-shadow: 0 8px 28px rgba(201,168,76,0.25);
}

@media (max-width: 768px) {
  .client-logo-wrap {
    width: 72px;
    height: 72px;
    padding: 11px;
  }
}

@media (max-width: 480px) {
  .client-logo-wrap {
    width: 62px;
    height: 62px;
    padding: 9px;
  }
}

/* ================================================================ */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--black-card);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--font-serif);
  font-size: 5rem;
  color: rgba(201,168,76,0.12);
  line-height: 1;
}
.testimonial-card:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testimonial-stars i { color: #FBBC04; font-size: 0.9rem; }
.testimonial-text { color: rgba(255,255,255,0.7); font-size: 0.9rem; line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--black);
  font-size: 0.85rem;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; color: var(--white); font-size: 0.9rem; }
.testimonial-author span  { display: block; color: var(--gray-mid); font-size: 0.75rem; margin-top: 2px; }

/* ================================================================
   QUOTE FORM
================================================================ */
.form-wrap {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 40px;
  align-items: start;
}

.form-sidebar-inner {
  background: linear-gradient(160deg, var(--black-card), var(--black-mid));
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 40px 30px;
  position: sticky;
  top: 100px;
}
.form-sidebar-inner h3 {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 24px;
}
.form-benefits { display: flex; flex-direction: column; gap: 14px; }
.form-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}
.form-benefits .fa-check-circle { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.form-contact-quick {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.form-contact-quick p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
}
.form-contact-quick { display: flex; flex-direction: column; gap: 10px; }
.form-contact-quick .btn-whatsapp-inline,
.form-contact-quick .btn-email-inline {
  width: 100%;
  justify-content: center;
}

/* Form Main */
.form-main {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 50px 40px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group.full-width { grid-column: 1 / -1; margin-bottom: 20px; }

.form-group label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--white);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.04);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-group select { cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group select option { background: var(--black-mid); color: var(--white); }

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  cursor: pointer;
  transition: var(--transition);
}
.check-item:hover { color: var(--white); }
.check-item input[type="checkbox"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 2px;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  padding: 0;
}
.check-item input[type="checkbox"]:checked {
  background: var(--gold);
  border-color: var(--gold);
}
.check-item input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 900;
}
.form-consent { margin-bottom: 20px; }
.form-consent .check-item { font-size: 0.78rem; align-items: flex-start; }
.form-consent .check-item input { margin-top: 2px; }

.form-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}
.form-note i { color: var(--gold); flex-shrink: 0; }

/* Form Success */
.form-success {
  text-align: center;
  padding: 60px 40px;
}
.success-icon { font-size: 5rem; color: var(--gold); margin-bottom: 24px; }
.form-success h3 { color: var(--white); font-size: 2rem; margin-bottom: 16px; }
.form-success p { color: rgba(255,255,255,0.65); font-size: 0.95rem; margin-bottom: 16px; }
.form-success strong { color: var(--gold); }

/* ================================================================
   CONTACT SECTION
================================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
}
.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon i { color: var(--gold); font-size: 1rem; }
.contact-item h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-item a { color: rgba(255,255,255,0.75); transition: var(--transition); font-size: 0.9rem; }
.contact-item a:hover { color: var(--gold); }
.contact-item p { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.5; }

.contact-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}
.social-link i { font-size: 1.3rem; }
.social-link.instagram { background: rgba(225,48,108,0.1); color: #e1306c; border: 1px solid rgba(225,48,108,0.2); }
.social-link.instagram:hover { background: #e1306c; color: var(--white); }
.social-link.linkedin  { background: rgba(0,119,181,0.1); color: #0077B5; border: 1px solid rgba(0,119,181,0.2); }
.social-link.linkedin:hover  { background: #0077B5; color: var(--white); }

.contact-map iframe {
  border-radius: var(--radius);
  filter: grayscale(80%) invert(90%) contrast(0.9);
  transition: var(--transition);
}
.contact-map:hover iframe { filter: grayscale(30%) invert(80%) contrast(0.95); }

/* ================================================================
   FOOTER
================================================================ */
.footer { background: #060606; border-top: 1px solid rgba(201,168,76,0.12); }

.footer-top { padding: 80px 0 60px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
}

.footer-brand p { color: rgba(255,255,255,0.45); font-size: 0.85rem; line-height: 1.7; margin: 16px 0 24px; }
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-mid);
  font-size: 1rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

.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 { display: flex; align-items: flex-start; gap: 8px; font-size: 0.83rem; color: rgba(255,255,255,0.45); }
.footer-col li i { color: var(--gold); font-size: 0.8rem; margin-top: 3px; flex-shrink: 0; }
.footer-col a { color: rgba(255,255,255,0.45); transition: var(--transition); }
.footer-col a:hover { color: var(--gold); }
.footer-col p { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 20px; }

.footer-google-rating {
  margin-top: 20px;
}
.footer-google-rating a {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  color: rgba(255,255,255,0.5) !important;
  transition: var(--transition);
}
.footer-google-rating a:hover { color: var(--gold) !important; }
.footer-stars { display: flex; gap: 3px; }
.footer-stars i { color: #FBBC04; font-size: 0.9rem; }
.footer-google-rating span { font-size: 0.8rem; color: inherit; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 24px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-bottom a { color: rgba(255,255,255,0.4); transition: var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* ================================================================
   WHATSAPP FLOAT
================================================================ */
/* Instagram Float */
.instagram-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(214,36,159,0.4);
  transition: var(--transition);
  text-decoration: none;
}
.instagram-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(214,36,159,0.5);
}
.instagram-float .whatsapp-tooltip {
  right: 72px;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 104px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: waPulse 2.5s ease infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.8; }
  70%  { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(1.4); opacity: 0; }
}
.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  background: var(--black-card);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.1);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--black-card);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ================================================================
   BACK TO TOP
================================================================ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 176px;
  z-index: 998;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--gold); color: var(--black); }

/* ================================================================
   SCROLL ANIMATIONS
================================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.services-grid .service-card:nth-child(1) { transition-delay: 0.05s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.10s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.15s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.20s; }
.services-grid .service-card:nth-child(5) { transition-delay: 0.25s; }
.services-grid .service-card:nth-child(6) { transition-delay: 0.30s; }

/* ================================================================
   GALLERY SLIDER — Espaços
================================================================ */
.space-gallery { overflow: hidden; }

.gallery-slides {
  position: relative;
  width: 100%;
  height: 100%;
}
.gallery-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.gallery-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-sans);
  opacity: 0;
}
@media (hover: hover) {
  .space-gallery:hover .gallery-arrow { opacity: 1; }
}
@media (hover: none) {
  /* Touch devices: always show arrows */
  .gallery-arrow { opacity: 0.85; }
}
.gallery-arrow:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.gallery-prev { left: 10px; }
.gallery-next { right: 10px; }

.gallery-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 6px;
}
.gallery-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.3);
}
.gallery-dot.active { background: var(--gold); border-color: var(--gold); }

/* ================================================================
   ESPAÇO DESTAQUE — Envy Summer
================================================================ */
.space-card-featured {
  cursor: pointer;
  border-color: rgba(201,168,76,0.4) !important;
  box-shadow: 0 0 0 1px rgba(201,168,76,0.2);
}
.space-card-featured:hover {
  border-color: var(--gold) !important;
  box-shadow: 0 20px 60px rgba(201,168,76,0.2) !important;
}

.space-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  transition: var(--transition);
}
.space-play-btn i {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(201,168,76,0.9);
  color: var(--black);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.space-card-featured:hover .space-play-btn { opacity: 1; }

.space-featured-label {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
}

.space-card-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-video-sm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  font-family: var(--font-sans);
}
.btn-video-sm:hover {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
}

/* ================================================================
   VIDEO MODAL
================================================================ */
.video-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(8px);
}
.video-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.video-modal-box {
  position: relative;
  background: var(--black-card);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 4px;
  width: 100%;
  max-width: 900px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(201,168,76,0.1);
  overflow: hidden;
  transform: scale(0.95);
  transition: transform 0.35s ease;
}
.video-modal-overlay.open .video-modal-box {
  transform: scale(1);
}

.video-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-sans);
}
.video-modal-close:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.video-modal-header {
  padding: 24px 28px 16px;
  border-bottom: 1px solid rgba(201,168,76,0.12);
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.video-modal-header h3 {
  color: var(--white);
  font-size: 1.5rem;
}
.video-modal-header span {
  color: var(--gold);
  font-size: 0.82rem;
}
.video-modal-header i { font-size: 0.72rem; }

.video-modal-player {
  position: relative;
  background: #000;
}
.video-modal-player video {
  width: 100%;
  display: block;
  max-height: 520px;
  object-fit: contain;
}

.video-modal-footer {
  padding: 20px 28px;
  display: flex;
  justify-content: flex-end;
  border-top: 1px solid rgba(201,168,76,0.12);
}

@media (max-width: 600px) {
  .video-modal-header { padding: 16px; }
  .video-modal-footer { padding: 14px 16px; }
}
@media (max-width: 1100px) {
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-visual { grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; }
  .about-card-big { grid-column: auto; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .spaces-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); margin: 0; }
  .form-wrap { grid-template-columns: 1fr; }
  .form-sidebar-inner { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }

  /* Navbar */
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    flex-direction: column;
    padding: 20px;
    gap: 0;
    border-bottom: 1px solid rgba(201,168,76,0.15);
  }
  .nav-links.open { display: flex; }
  .nav-link, .nav-cta-link {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    width: 100%;
    text-align: center;
  }
  .nav-cta-link { margin-top: 10px; border: none; }
  .hamburger { display: flex; }
  .lang-switcher { order: -1; }

  /* Hero */
  .hero-stats { flex-wrap: wrap; gap: 0; }
  .stat-item { padding: 12px 20px; }
  .stat-divider { display: none; }
  .hero-actions { flex-direction: column; align-items: center; }

  /* Grid adjustments */
  .services-grid { grid-template-columns: 1fr; }
  .spaces-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .about-visual { grid-template-columns: 1fr 1fr; }
  .about-card-big { grid-column: 1 / -1; }
  .form-row { grid-template-columns: 1fr; }
  .checkbox-group { grid-template-columns: 1fr 1fr; }
  .cta-box { flex-direction: column; text-align: center; padding: 30px 24px; }
  .process-cta-box { flex-direction: column; padding: 30px 24px; }
  .process-cta-text { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  /* Back to top & floating buttons — mobile layout */
  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
    right: 20px;
    bottom: 24px;
  }
  .instagram-float {
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
    right: 84px;
    bottom: 24px;
  }
  .back-to-top {
    right: 148px;
    bottom: 30px;
    width: 38px;
    height: 38px;
  }
  /* Show gallery arrows always on mobile (touch devices) */
  .gallery-arrow { opacity: 1; }
}

@media (max-width: 500px) {
  .container { padding: 0 1rem; }
  .form-main { padding: 30px 20px; }
  .checkbox-group { grid-template-columns: 1fr; }
  .lang-switcher { font-size: 0.65rem; }
  .hero-title { font-size: 1.9rem; }
  .hero-subtitle { font-size: 0.9rem; }
  .section { padding: 55px 0; }
  /* Compact floating buttons on very small screens */
  .whatsapp-float {
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
    right: 16px;
    bottom: 20px;
  }
  .instagram-float {
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
    right: 74px;
    bottom: 20px;
  }
  .back-to-top {
    right: 132px;
    bottom: 26px;
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }
  /* Clients marquee smaller on mobile */
  .clients-section { padding: 50px 0 40px; }
  /* Banner strip tighter */
  .banner-strip { padding: 18px 1rem; }
  .banner-inner { gap: 12px; }
  .banner-inner p { font-size: 0.85rem; }
  /* Hero stats full width on tiny screens */
  .hero-stats { padding: 16px 0; }
  .stat-item { padding: 10px 14px; }
  .stat-number { font-size: 1.6rem; }
  /* Form fields comfortable */
  .form-group input,
  .form-group select,
  .form-group textarea { padding: 13px 14px; font-size: 1rem; }
  /* Space cards — ensure image height is sufficient */
  .space-img-wrap { height: 200px; }
}
