/* ==========================================================================
   IMPERATRIZ LUXURY BRAND SYSTEM - VERSION 2000%
   Aesthetic: Ultra-Premium Luxury Minimalist, Glassmorphism, Cinematic Video Hero,
              Dynamic Keyframe Transitions, Floating Glow Blobs, Shape Separators.
   Colors: Deep Royal Indigo (#3c3585), Brand Red Accent (#cd0304), WhatsApp (#4fce5d)
   ========================================================================== */

/* Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Strict Palette */
  --color-indigo: #3c3585;
  --color-indigo-dark: #1f1a54;
  --color-indigo-light: #ecebf3;
  --color-red: #cd0304;
  --color-red-hover: #b50203;
  --color-whatsapp: #4fce5d;
  
  --bg-dark: #0b0a1a;
  --bg-light: #f8f7fc;
  --bg-white: #ffffff;
  
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --text-light: #f8fafc;
  
  --border-light: rgba(60, 53, 133, 0.08);
  --border-glass: rgba(255, 255, 255, 0.15);
  
  /* Fonts */
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Luxury Effects */
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-bg-dark: rgba(11, 10, 26, 0.8);
  --glass-blur: blur(20px);
  --glass-shadow: 0 20px 40px -15px rgba(60, 53, 133, 0.08);
  --inset-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.4);
  
  --max-width: 1280px;
  --transition-luxury: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  background-color: var(--bg-white);
  color: var(--text-dark);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  color: var(--color-indigo);
  font-weight: 700;
  line-height: 1.2;
}

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

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

img {
  max-width: 100%;
  display: block;
}

/* Utilities */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 2rem;
  position: relative;
  z-index: 2;
}

/* Floating Glow Blobs */
.glow-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
  pointer-events: none;
  z-index: 1;
}
.glow-indigo { background: var(--color-indigo); }
.glow-red { background: var(--color-red); }

/* SVG Curve shape dividers */
.shape-divider {
  position: relative;
  width: 100%;
  line-height: 0;
  z-index: 4;
  pointer-events: none;
}
.shape-divider svg {
  display: block;
  width: 100%;
  height: 80px;
}
.divider-white-to-light svg path { fill: var(--bg-light); }
.divider-light-to-white svg path { fill: var(--bg-white); }
.divider-white-to-dark svg path { fill: var(--bg-dark); }
.divider-dark-to-light svg path { fill: var(--bg-light); }
.divider-light-to-dark svg path { fill: var(--bg-dark); }
.divider-dark-to-white svg path { fill: var(--bg-white); }

/* Header & Floating Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: var(--transition-luxury);
  background-color: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid rgba(60, 53, 133, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.header.scrolled {
  height: 80px;
}

/* Subpages: more compact header */
.subpage-header {
  height: 72px;
}

.subpage-header.scrolled {
  height: 64px;
}

/* Adjust hero top padding for smaller subpage header */
.subpage-header ~ .hero-video-section {
  padding-top: 110px;
}

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

.logo-link svg {
  transition: var(--transition-luxury);
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 3rem;
  align-items: center;
}

.nav-link {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding-block: 0.5rem;
}



.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover {
  color: var(--color-red) !important;
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-link.active {
  color: var(--color-red) !important;
  font-weight: 700;
}

.nav-link.active::after {
  transform: scaleX(1);
}

/* Cinematic Video Hero Section */
.hero-video-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding-top: 140px; /* Offset the fixed 100px header plus spacing */
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--bg-dark);
}

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

.hero-overlay-dark {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 10, 26, 0.75) 0%, rgba(11, 10, 26, 0.95) 100%);
  z-index: 2;
}

.hero-split-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 5rem;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 5;
}

.hero-left-content {
  max-width: 720px;
}

.hero-right-media {
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.hero-img-frame {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 4 / 5;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  background: rgba(255, 255, 255, 0.03);
  padding: 0.75rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: floatMotion 6s ease-in-out infinite;
}

.hero-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

@keyframes floatMotion {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

.hero-tagline {
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-red);
  margin-bottom: 1.5rem;
  display: inline-block;
}

.hero-title-luxury {
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 5.5vw, 3.8rem);
  font-weight: 800;
  color: var(--text-light);
  line-height: 1.15;
  margin-bottom: 1.75rem;
  letter-spacing: -0.03em;
}

.hero-title-luxury span {
  background: linear-gradient(135deg, #ffffff 40%, var(--color-indigo-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc-luxury {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  margin-bottom: 3rem;
}

/* Premium Buttons */
.btn-luxury-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 2.5rem;
  background-color: var(--color-red);
  color: var(--text-light);
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(205, 3, 4, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-luxury-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--color-red-hover);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}

.btn-luxury-primary:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-luxury-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(205, 3, 4, 0.4);
}

/* WhatsApp CTA variant — green override */
.btn-whatsapp {
  background-color: var(--color-whatsapp) !important;
  box-shadow: 0 10px 25px rgba(37, 175, 83, 0.35) !important;
  color: #fff !important;
}

.btn-whatsapp::before {
  background-color: #22a047 !important;
}

.btn-whatsapp:hover {
  box-shadow: 0 15px 30px rgba(37, 175, 83, 0.5) !important;
}

.btn-luxury-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 2.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-light);
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  margin-left: 1.25rem;
}

.btn-luxury-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

/* Full Width Section Layouts */
.section-luxury {
  position: relative;
  width: 100%;
  padding-block: 7rem;
  overflow: hidden;
}

.section-luxury.bg-light { background-color: var(--bg-light); }
.section-luxury.bg-white { background-color: var(--bg-white); }
.section-luxury.bg-dark {
  background-color: var(--bg-dark);
  color: var(--text-light);
}
.section-luxury.bg-dark h2 { color: var(--text-light); }
.section-luxury.bg-dark h3 { color: var(--text-light); }

.section-header-center {
  text-align: center;
  max-width: 800px;
  margin-inline: auto;
  margin-bottom: 5rem;
}

.section-title-luxury {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-indigo);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.section-desc-luxury {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.section-luxury.bg-dark .section-desc-luxury {
  color: rgba(255, 255, 255, 0.65);
}

/* Stats Badges Section */
.stats-luxury-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-luxury-item {
  background: var(--bg-white);
  padding: 1.5rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  box-shadow: var(--glass-shadow);
  transition: var(--transition-luxury);
}

.stat-luxury-item:hover {
  transform: translateY(-5px);
  border-color: rgba(60, 53, 133, 0.15);
}

.stat-num-huge {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--color-red);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.stat-title-small {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-indigo);
  line-height: 1.4;
}

/* Custom styles for the Value Props section to make it more compact and elegant */
.section-value-props {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.section-value-props .stat-luxury-item {
  padding: 1.25rem 1rem;
}

.section-value-props .stat-num-huge {
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
}

.section-value-props .stat-title-small {
  font-size: 0.8rem;
  opacity: 0.9;
}

/* Category Grid & Cards (Wow effects) */
.solutions-luxury-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.solution-card-luxury {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 1 / 1.15;
  box-shadow: 0 20px 45px rgba(0,0,0,0.04);
  transition: var(--transition-luxury);
}

.solution-card-luxury img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-luxury);
}

.solution-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11, 10, 26, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  transition: var(--transition-luxury);
}

.solution-card-luxury:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(60,53,133,0.12);
}

.solution-card-luxury:hover img {
  transform: scale(1.08);
}

.solution-card-title {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.solution-card-tags {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.solution-tag {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  padding: 0.4rem 0.9rem;
  border-radius: 30px;
  font-size: 0.8rem;
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Profile Lines Comparison Tabs/Grid */
.profiles-luxury-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.profile-card-luxury {
  background: var(--bg-white);
  border-radius: 28px;
  border: 1px solid var(--border-light);
  box-shadow: var(--glass-shadow);
  padding: 3rem 2.5rem;
  transition: var(--transition-luxury);
  position: relative;
  overflow: hidden;
}

.profile-card-luxury:hover {
  transform: translateY(-8px);
  border-color: rgba(60,53,133,0.18);
  box-shadow: 0 30px 60px rgba(60,53,133,0.06);
}

.profile-card-header {
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 1.5rem;
}

.profile-name-lux {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--color-indigo);
  margin-bottom: 0.5rem;
}

.profile-tag-lux {
  display: inline-block;
  background: var(--color-indigo-light);
  color: var(--color-indigo-dark);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 30px;
}

.profile-desc-lux {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.profile-metric-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-indigo);
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
}

.profile-bar-bg {
  width: 100%;
  height: 6px;
  background: rgba(60, 53, 133, 0.08);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1.75rem;
}

.profile-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-indigo) 0%, var(--color-red) 100%);
  border-radius: 10px;
  transition: var(--transition-luxury);
}

/* Constructive Details Visual Area */
.details-split-luxury {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.details-features-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.detail-item-lux {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.detail-icon-box {
  width: 54px;
  height: 54px;
  background-color: var(--color-indigo-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-indigo);
  flex-shrink: 0;
}

.detail-txt-box h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-indigo);
  margin-bottom: 0.35rem;
}

.detail-txt-box p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.details-media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.details-media-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--glass-shadow);
  transition: var(--transition-luxury);
}

.details-media-grid img:hover {
  transform: scale(1.05);
}

/* Showroom Section */
.showroom-split-luxury {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.showroom-hours-table {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: 24px;
  border: 1px solid var(--border-light);
  box-shadow: var(--glass-shadow);
  margin-bottom: 2.5rem;
}

.showroom-hours-item {
  display: flex;
  justify-content: space-between;
  padding-block: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  border-bottom: 1px dashed var(--border-light);
}

.showroom-hours-item:last-child {
  border-bottom: none;
}

.showroom-hours-item strong {
  color: var(--color-indigo);
}

/* How We Work Process Timeline */
.process-steps-lux {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.process-card-lux {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 3rem 2rem;
  position: relative;
  z-index: 2;
  transition: var(--transition-luxury);
}

.process-card-lux:hover {
  transform: translateY(-8px);
  border-color: rgba(60, 53, 133, 0.2);
  box-shadow: var(--glass-shadow);
}

.process-step-num-huge {
  font-family: var(--font-title);
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(180deg, rgba(60, 53, 133, 0.15) 0%, transparent 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.process-card-lux h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-indigo);
  margin-bottom: 1rem;
}

.process-card-lux p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Premium Testimonials Video and Quote Grid */
.testimonials-row-lux {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.testimonial-video-card-lux {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.testimonial-video-card-lux img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play-btn-huge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-red);
  box-shadow: 0 15px 30px rgba(205, 3, 4, 0.25);
  transition: var(--transition-fast);
}

.video-play-btn-huge:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--color-red);
  color: var(--bg-white);
}

.testimonials-quotes-stack {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.quote-card-lux {
  background: var(--bg-light);
  border-radius: 24px;
  padding: 2.5rem;
  border: 1px solid var(--border-light);
  position: relative;
}

.quote-text-lux {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.quote-author-lux {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.quote-author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.quote-author-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-indigo);
}

.quote-author-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Premium Instagram Gallery */
.instagram-grid-lux {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}

.instagram-card-lux {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.02);
  transition: var(--transition-luxury);
}

.instagram-card-lux img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-luxury);
}

.instagram-card-hover {
  position: absolute;
  inset: 0;
  background: rgba(60, 53, 133, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--text-light);
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition-fast);
}

.instagram-card-lux:hover .instagram-card-hover {
  opacity: 1;
}

.instagram-card-lux:hover img {
  transform: scale(1.05);
}

.instagram-card-lux:hover {
  transform: translateY(-5px);
}

/* Google Reviews Summary */
.google-reviews-panel {
  background: var(--bg-white);
  border-radius: 32px;
  border: 1px solid var(--border-light);
  box-shadow: var(--glass-shadow);
  padding: 4rem;
  margin-bottom: 5rem;
}

.google-reviews-head-lux {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 2.5rem;
  margin-bottom: 3rem;
}

.google-brand-lux {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.google-stars-row {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.google-stars-row svg {
  width: 20px;
  height: 20px;
  fill: #f59e0b;
}

.google-rating-score-lux {
  font-family: var(--font-title);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-indigo);
  line-height: 1;
}

.google-reviews-grid-lux {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.google-card-lux {
  background: var(--bg-light);
  border-radius: 24px;
  padding: 2.5rem;
  border: 1px solid var(--border-light);
  transition: var(--transition-luxury);
}

.google-card-lux:hover {
  transform: translateY(-5px);
  background: var(--bg-white);
  border-color: rgba(60,53,133,0.18);
  box-shadow: var(--glass-shadow);
}

/* Architects & Partners Section */
.architect-banner-lux {
  background: linear-gradient(135deg, var(--color-indigo) 0%, var(--color-indigo-dark) 100%);
  border-radius: 32px;
  padding: 5rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
  box-shadow: 0 30px 60px rgba(60,53,133,0.15);
}

.architect-banner-lux h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.architect-banner-lux p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 3rem;
}

.architect-feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.architect-feat-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 2rem;
  border-radius: 20px;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: var(--transition-fast);
}

.architect-feat-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateX(5px);
}

.architect-feat-card svg {
  color: var(--color-red);
  margin-top: 0.15rem;
}

.architect-feat-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.architect-feat-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
  line-height: 1.5;
}

/* FAQ Details Accordions */
.faq-wrap-lux {
  max-width: 850px;
  margin-inline: auto;
}

.faq-item-lux {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  margin-bottom: 1.25rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.01);
  transition: var(--transition-luxury);
}

.faq-item-lux[open] {
  border-color: rgba(60, 53, 133, 0.15);
  box-shadow: var(--glass-shadow);
}

.faq-summary-lux {
  list-style: none;
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-indigo);
  padding: 1.75rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-summary-lux::-webkit-details-marker {
  display: none;
}

.faq-summary-lux svg {
  transition: var(--transition-fast);
  color: var(--color-red);
}

.faq-item-lux[open] .faq-summary-lux svg {
  transform: rotate(180deg);
}

.faq-content-lux {
  padding: 0 2.5rem 2rem 2.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Call to Action Centered Block */
.cta-luxury-panel {
  background: linear-gradient(135deg, var(--color-indigo) 0%, var(--color-indigo-dark) 100%);
  border-radius: 32px;
  padding: 6rem 4rem;
  text-align: center;
  box-shadow: 0 30px 60px rgba(60,53,133,0.15);
}

.cta-luxury-panel h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.cta-luxury-panel p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: 3rem;
  line-height: 1.7;
}

/* Footer Styles */
.footer-lux {
  background-color: var(--bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 6rem;
  padding-bottom: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid-lux {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 5rem;
  margin-bottom: 5rem;
}

.footer-col h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1.75rem;
}

.footer-col p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-logo-box {
  margin-bottom: 1.5rem;
}

.footer-social-row {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: var(--transition-fast);
}

.footer-social-link:hover {
  background-color: var(--color-red);
  color: var(--text-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(205, 3, 4, 0.3);
}

.footer-social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-bottom-lux {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

/* Floating WhatsApp Widget Redesigned */
.whatsapp-floating-lux {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: transparent;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  color: #fff;
  text-decoration: none;
}

/* Pulse animation circle around the button */
.whatsapp-floating-lux::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25d366;
  opacity: 0;
  animation: whatsapp-pulse-lux 2s infinite;
  pointer-events: none;
  /* Prevent the pulsing ring from expanding the viewport */
  clip-path: inset(-20px -20px -20px -20px);
}

.whatsapp-floating-lux:hover {
  transform: scale(1.08) translateY(-5px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-floating-lux svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
  display: block;
}

.whatsapp-floating-lux .whatsapp-icon-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: block;
  object-fit: cover;
}

/* Tooltip style */
.whatsapp-tooltip-lux {
  position: absolute;
  right: 75px;
  background-color: #0f172a;
  color: #f8fafc;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  pointer-events: none;
}

.whatsapp-tooltip-lux::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background-color: #0f172a;
}

.whatsapp-floating-lux:hover .whatsapp-tooltip-lux {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@keyframes whatsapp-pulse-lux {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/* Mobile Toggler Button */
.mobile-nav-toggle-simple {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  z-index: 1100;
  border-radius: 50%;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
}

.mobile-nav-toggle-simple svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-indigo);
  stroke-width: 2.5;
}

/* Instagram Showcase Section Layout & Styles */
.instagram-layout {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.instagram-content-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.btn-insta {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
  border: none !important;
  color: #fff !important;
  font-weight: 700 !important;
  padding: 16px 36px !important;
  border-radius: 50px !important;
  box-shadow: 0 10px 20px rgba(220, 39, 67, 0.25) !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  text-decoration: none;
  font-size: 0.95rem;
}

.btn-insta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 30px rgba(220, 39, 67, 0.45) !important;
  filter: brightness(1.05);
}

.btn-insta-below {
  display: none !important;
}

.insta-badge {
  display: inline-block;
  padding: 3px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.insta-badge:hover {
  transform: scale(1.05);
}

.insta-badge-inner {
  background: #fff;
  padding: 3px;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  overflow: hidden;
}

.insta-embed-container {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  height: 490px;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.scrollable-insta-card::-webkit-scrollbar {
  display: none;
}

.insta-embed-iframe-responsive {
  width: 100% !important;
  border: none !important;
  display: block !important;
  height: 680px !important;
}

/* Timeline Section Styles */
.timeline-container-lux {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 2rem 0;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-50%);
}

.timeline-event {
  display: flex;
  position: relative;
  width: 50%;
  margin-bottom: 3rem;
}

.timeline-event.left {
  justify-content: flex-end;
  padding-right: 3rem;
}

.timeline-event.right {
  justify-content: flex-start;
  padding-left: 3rem;
  margin-left: 50%;
}

.timeline-dot {
  position: absolute;
  top: 10px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-red);
  box-shadow: 0 0 10px var(--color-red);
}

.timeline-event.left .timeline-dot {
  right: -6px;
}

.timeline-event.right .timeline-dot {
  left: -6px;
}

.timeline-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem;
  border-radius: 16px;
  max-width: 350px;
  transition: var(--transition-fast);
}

.timeline-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
  .timeline-line {
    left: 20px;
    transform: none;
  }
  .timeline-event {
    width: 100% !important;
    margin-left: 0 !important;
    padding-left: 35px !important;
    padding-right: 0 !important;
    justify-content: flex-start !important;
  }
  .timeline-dot {
    left: 14px !important;
    right: auto !important;
  }
  .timeline-card {
    max-width: 100%;
    text-align: left !important;
  }
}

@media (max-width: 991px) {
  .instagram-layout {
    grid-template-columns: 45% 55%;
    gap: 32px;
  }
}

/* Responsive Rules */
@media (max-width: 1024px) {
  .solutions-luxury-grid { grid-template-columns: 1fr 1fr; }
  .profiles-luxury-grid { grid-template-columns: 1fr 1fr; }
  .details-split-luxury { grid-template-columns: 1fr; gap: 4rem; }
  .showroom-split-luxury { grid-template-columns: 1fr; gap: 4rem; }
  .process-steps-lux { grid-template-columns: 1fr 1fr; }
  .testimonials-row-lux { grid-template-columns: 1fr; gap: 4rem; }
  .testimonials-row-lux .testimonials-quotes-stack { order: -1; }
  .google-reviews-grid-lux { grid-template-columns: 1fr 1fr; }
  .instagram-grid-lux { grid-template-columns: repeat(3, 1fr); }
  .architect-banner-lux { grid-template-columns: 1fr; gap: 4rem; }
  .footer-grid-lux { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* Navigation header adjustments */
  .header {
    height: 80px;
  }
  .header.scrolled {
    height: 65px;
  }
  .header:not(.scrolled) .nav-list:not(.active) { display: none; }
  .mobile-nav-toggle-simple { display: flex; }
  
  .nav-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    flex-direction: column;
    padding: 100px 2.5rem 2rem 2.5rem;
    align-items: flex-start;
    gap: 2rem;
    box-shadow: -15px 0 40px rgba(0, 0, 0, 0.05);
    transition: var(--transition-luxury);
  }
  
  .nav-list.active { right: 0; }
  .nav-list .nav-link { color: var(--text-dark) !important; }

  /* Hero Section Spacing & Sizing */
  .hero-video-section {
    padding-top: 110px;
    padding-bottom: 50px;
    min-height: auto;
  }
  .hero-split-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-left-content {
    max-width: 100%;
    text-align: center;
  }
  .hero-right-media {
    justify-content: center;
  }
  .hero-img-frame {
    max-width: 320px;
    aspect-ratio: 1 / 1;
    border-radius: 24px;
    padding: 0.5rem;
  }
  .hero-img-frame img {
    border-radius: 18px;
  }
  .hero-title-luxury {
    font-size: clamp(1.85rem, 7vw, 2.3rem);
    margin-bottom: 1.25rem;
  }
  .hero-desc-luxury {
    font-size: 0.95rem;
    margin-bottom: 2.25rem;
    line-height: 1.6;
  }
  .btn-luxury-secondary { margin-left: 0; margin-top: 0.75rem; width: 100%; }
  .btn-luxury-primary { width: 100%; }

  /* Universal Section Spacing */
  .section-luxury {
    padding-block: 4.25rem;
  }
  .section-header-center {
    margin-bottom: 3.5rem;
  }
  .section-title-luxury {
    font-size: clamp(1.65rem, 6vw, 2.1rem);
  }
  .section-desc-luxury {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* Stats grid card padding */
  .stats-luxury-grid { 
    grid-template-columns: 1fr 1fr; 
    gap: 1.25rem; 
  }
  .stat-luxury-item {
    padding: 1.25rem 0.75rem;
    border-radius: 12px;
  }
  .stat-num-huge {
    font-size: clamp(1.4rem, 4vw, 1.8rem);
  }
  .stat-title-small {
    font-size: 0.75rem;
  }

  /* Grid Layouts Stack */
  .solutions-luxury-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .profiles-luxury-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .process-steps-lux { grid-template-columns: 1fr; gap: 1.5rem; }
  .google-reviews-grid-lux { grid-template-columns: 1fr; gap: 1.25rem; }
  
  .profile-card-luxury {
    padding: 2.25rem 1.75rem;
    border-radius: 20px;
  }
  .profile-desc-lux {
    margin-bottom: 1.75rem;
  }

  /* Constructive Details grid padding */
  .details-media-grid {
    gap: 1rem;
  }
  .details-media-grid img {
    border-radius: 16px;
  }

  /* Showroom & Fábrica Hours */
  .showroom-hours-table {
    padding: 1.5rem;
    border-radius: 16px;
    margin-bottom: 1.75rem;
  }
  
  /* Process Steps Card */
  .process-card-lux {
    padding: 2.25rem 1.5rem;
    border-radius: 20px;
  }

  /* Testimonials video & quote */
  .testimonial-video-card-lux {
    border-radius: 20px;
  }
  .video-play-btn-huge {
    width: 64px;
    height: 64px;
  }
  .quote-card-lux {
    padding: 1.75rem 1.25rem;
    border-radius: 20px;
  }
  .quote-text-lux {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }

  /* Instagram and Google Panel padding */
  .instagram-grid-lux { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .google-reviews-panel {
    padding: 2.25rem 1.25rem;
    border-radius: 24px;
    margin-bottom: 3.5rem;
  }
  .google-reviews-head-lux {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
  }
  .google-rating-score-lux {
    font-size: 3rem;
  }
  .google-card-lux {
    padding: 1.75rem 1.25rem;
    border-radius: 20px;
  }

  /* Architect banner */
  .architect-banner-lux {
    padding: 2.5rem 1.5rem;
    border-radius: 24px;
    gap: 3rem;
  }
  .architect-banner-lux h2 {
    font-size: 1.85rem;
    margin-bottom: 1rem;
  }
  .architect-banner-lux p {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }
  .architect-feat-card {
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    gap: 1rem;
  }

  /* FAQ Accordion Summary */
  .faq-item-lux {
    border-radius: 16px;
  }
  .faq-summary-lux {
    font-size: 1rem;
    padding: 1.25rem 1.5rem;
  }
  .faq-content-lux {
    padding: 0 1.5rem 1.5rem 1.5rem;
    font-size: 0.9rem;
  }

  /* CTA Panel Padding */
  .cta-luxury-panel {
    padding: 3.5rem 1.5rem;
    border-radius: 24px;
  }
  .cta-luxury-panel h2 {
    font-size: 1.75rem;
  }
  .cta-luxury-panel p {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  /* Footer Padding */
  .footer-lux {
    padding-top: 4rem;
    padding-bottom: 2rem;
  }
  .footer-grid-lux {
    gap: 2.5rem;
    margin-bottom: 3rem;
  }
  
  /* Floating widgets mobile */
  .whatsapp-floating-lux {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }

  /* Instagram Feed Responsiveness */
  .instagram-layout {
    display: flex !important;
    flex-direction: column !important;
    text-align: center !important;
    align-items: center !important;
    gap: 40px !important;
  }

  .instagram-content-col {
    align-items: center !important;
    text-align: center !important;
  }

  .btn-insta {
    width: 100% !important;
    max-width: 280px !important;
  }

  #insta-follow-btn-above {
    display: none !important;
  }

  .btn-insta-below {
    display: inline-flex !important;
    margin-top: 24px !important;
  }

  .instagram-feed-col {
    width: 100% !important;
  }

  .scrollable-insta-card {
    height: 380px !important;
  }

  .insta-embed-iframe-responsive {
    height: 480px !important;
  }
}

/* Phone Mockup Testimonials Layout */
.testimonial-phones-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2.5rem;
}

.phone-mockup-frame {
  position: relative;
  width: 280px;
  background: #1a1a2e;
  border-radius: 40px;
  padding: 12px;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.phone-mockup-frame:nth-child(2) {
  transform: translateY(-20px);
}

.phone-mockup-frame:hover {
  transform: translateY(-10px);
  box-shadow:
    0 40px 80px rgba(60, 53, 133, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.phone-mockup-frame:nth-child(2):hover {
  transform: translateY(-30px);
}

.phone-notch {
  width: 100px;
  height: 22px;
  background: #1a1a2e;
  border-radius: 0 0 16px 16px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.phone-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 28px;
  overflow: hidden;
  background: #000;
}

.phone-screen iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Tablet: 2 phones visible, horizontal scroll for the 3rd */
@media (max-width: 1024px) {
  .testimonial-phones-row {
    gap: 1.5rem;
  }
  .phone-mockup-frame {
    width: 240px;
    border-radius: 32px;
    padding: 10px;
  }
  .phone-screen {
    border-radius: 22px;
  }
}

/* Mobile: stack vertically, centered */
@media (max-width: 768px) {
  .testimonial-phones-row {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .phone-mockup-frame {
    width: 260px;
  }
  .phone-mockup-frame:nth-child(2) {
    transform: none;
  }
  .phone-mockup-frame:hover,
  .phone-mockup-frame:nth-child(2):hover {
    transform: none;
  }
}

/* Premium Lightbox Modal Styles */
#lightbox-modal-lux {
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(11, 10, 26, 0.95);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.lightbox-content-lux {
  max-width: 85%;
  max-height: 80%;
  border-radius: 16px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  transform: scale(0.95);
  animation: zoom-in-lux 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes zoom-in-lux {
  to { transform: scale(1); }
}

.lightbox-close-lux {
  position: absolute;
  top: 30px;
  right: 40px;
  color: var(--text-light);
  font-size: 40px;
  font-weight: 300;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 100000;
}

.lightbox-close-lux:hover {
  color: var(--color-red);
}

.lightbox-caption-lux {
  margin-top: 20px;
  color: var(--text-light);
  font-family: var(--font-title);
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.lightbox-prev-lux,
.lightbox-next-lux {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  padding: 20px 25px;
  color: var(--text-light);
  font-weight: 300;
  font-size: 30px;
  transition: 0.3s ease;
  border-radius: 50%;
  user-select: none;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100000;
}

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

.lightbox-prev-lux:hover,
.lightbox-next-lux:hover {
  background-color: var(--bg-white);
  color: var(--color-indigo);
  border-color: var(--bg-white);
  box-shadow: 0 10px 25px rgba(255,255,255,0.25);
}

@media (max-width: 768px) {
  .lightbox-prev-lux { left: 20px; }
  .lightbox-next-lux { right: 20px; }
  .lightbox-close-lux { top: 20px; right: 20px; }
}

/* Lightbox Clickable Indicator */
.solution-card-luxury img, .portfolio-item-card img, .hero-img-frame img:not(.carousel-slide) {
  cursor: pointer;
  transition: transform var(--transition-fast), filter var(--transition-fast) !important;
}

.solution-card-luxury img:hover, .portfolio-item-card img:hover {
  transform: scale(1.03) !important;
  filter: brightness(0.95);
}

/* Hero Carousel Styles */
.hero-carousel {
  position: relative;
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  border-radius: inherit;
}

.carousel-slide.active {
  position: relative;
  opacity: 1;
}

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

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background-color: #fff;
  border-color: #fff;
  transform: scale(1.2);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.carousel-dot:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

/* Responsive Footer Tweaks */
@media (max-width: 768px) {
  .footer-grid-lux {
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
    text-align: center;
  }
  
  .footer-logo-img {
    margin: 0 auto 1.5rem auto !important;
  }

  .footer-social-row {
    justify-content: center;
  }

  .footer-bottom-lux {
    flex-direction: column !important;
    text-align: center;
    gap: 1.2rem;
  }
}

/* Solucoes page: 2-column grid on desktop */
.solutions-grid-2col {
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 2.5rem !important;
}

/* Card aspect ratio for 2-col layout */
.solutions-grid-2col .solution-card-luxury {
  aspect-ratio: 4 / 3;
}

/* On mobile: stack to 1 column, ensure cards are tall enough */
@media (max-width: 768px) {
  .solutions-grid-2col {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .solutions-grid-2col .solution-card-luxury {
    aspect-ratio: 16 / 9;
    min-height: 260px;
  }

  /* Reduce overlay padding on mobile so content fits */
  .solutions-grid-2col .solution-card-overlay {
    padding: 1.25rem 1.5rem;
  }

  /* Smaller title on mobile */
  .solutions-grid-2col .solution-card-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  /* Smaller tags on mobile */
  .solutions-grid-2col .solution-tag {
    font-size: 0.7rem;
    padding: 0.3rem 0.7rem;
  }

  /* Reduce gap between tags */
  .solutions-grid-2col .solution-card-tags {
    gap: 0.4rem;
  }
}

/* Profiles 2-column grid (portfolio page) */
.profiles-grid-2col {
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 2.5rem !important;
}

@media (max-width: 768px) {
  .profiles-grid-2col {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
}

