/* ==========================================================================
   STYLE SHEET FOR INFINIT LANDING PAGE
   Villa Morra, Asunción, Paraguay — Strict Editorial Style (5 Colors)
   ========================================================================== */

/* --- 1. FONT DECLARATIONS --- */
@font-face {
  font-family: 'Clash Display';
  src: url('fonts/ClashDisplay/ClashDisplay-Variable.woff2') format('woff2-variations'),
       url('fonts/ClashDisplay/ClashDisplay-Variable.woff') format('woff'),
       url('fonts/ClashDisplay/ClashDisplay-Variable.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Clash Display';
  src: url('fonts/ClashDisplay/ClashDisplay-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Clash Display';
  src: url('fonts/ClashDisplay/ClashDisplay-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('fonts/PlusJakartaSans/PlusJakartaSans-VariableFont_wght.ttf') format('truetype-variations'),
       url('fonts/PlusJakartaSans/PlusJakartaSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('fonts/PlusJakartaSans/PlusJakartaSans-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* --- 2. CSS VARIABLES (STRICTLY 5 COLORS ONLY) --- */
:root {
  --color-marfil: #EAE9E1;
  --color-gris: #899093;
  --color-taupe: #B4B2AE;
  --color-dark: #1A1C1E;
  --color-white: #FFF;
  
  /* Semi-transparent variations for specific glass effects, strictly derived from the 5 colors */
  --gradient-glass: rgba(234, 233, 225, 0.85);
  
  /* Fonts */
  --font-title: 'Clash Display', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Layout config */
  --max-width: 1200px;
  --header-height: 80px;
  --transition-speed: 0.3s;
  
  /* Strict Editorial rule: 0px border radius */
  --border-radius-sm: 0px;
  --border-radius-md: 0px;
  --border-radius-lg: 0px;
}

/* --- 3. RESET & BASE --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-radius: 0 !important; /* Strictly straight corners */
}

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

body {
  background-color: var(--color-marfil);
  color: var(--color-dark);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

/* --- 4. TYPOGRAPHY & UTILITIES (NO SHADOWS) --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 400; /* Elegant light weight */
  line-height: 1.25;
  letter-spacing: -0.01em;
}

h1 em, h2 em, h3 em, .experience-quote em {
  font-family: var(--font-title);
  font-style: italic;
  font-weight: 400;
}

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

.section-padding {
  padding: 120px 24px;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

/* Scroll Animation Classes - Dynamic & Sophisticated */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.9s cubic-bezier(0.25, 1, 0.5, 1), transform 0.9s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform, opacity;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Cascade animations for Differential list items */
.reveal.active .split-list-item {
  opacity: 1;
  transform: translateY(0);
}

.reveal.active .split-list-item:nth-child(1) { transition-delay: 0.05s; }
.reveal.active .split-list-item:nth-child(2) { transition-delay: 0.1s; }
.reveal.active .split-list-item:nth-child(3) { transition-delay: 0.15s; }
.reveal.active .split-list-item:nth-child(4) { transition-delay: 0.2s; }
.reveal.active .split-list-item:nth-child(5) { transition-delay: 0.25s; }
.reveal.active .split-list-item:nth-child(6) { transition-delay: 0.3s; }

/* Cascade animations for Experience list items */
.reveal.active .experience-list-item {
  opacity: 1;
  transform: translateX(0);
}

.reveal.active .experience-list-item:nth-child(1) { transition-delay: 0.05s; }
.reveal.active .experience-list-item:nth-child(2) { transition-delay: 0.12s; }
.reveal.active .experience-list-item:nth-child(3) { transition-delay: 0.19s; }
.reveal.active .experience-list-item:nth-child(4) { transition-delay: 0.26s; }
.reveal.active .experience-list-item:nth-child(5) { transition-delay: 0.33s; }
.reveal.active .experience-list-item:nth-child(6) { transition-delay: 0.4s; }

/* Custom Buttons - Rectangular & Minimalist */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-family: var(--font-title);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  transition: all var(--transition-speed) ease;
  text-align: center;
  text-transform: uppercase;
}

.btn-primary {
  background: linear-gradient(120deg, var(--color-gris) 0%, var(--color-gris) 35%, var(--color-taupe) 45%, var(--color-marfil) 50%, var(--color-taupe) 55%, var(--color-gris) 65%, var(--color-gris) 100%);
  background-size: 250% 100%;
  color: var(--color-white);
  border: 1px solid var(--color-gris);
  animation: silverButtonShimmer 6s infinite linear;
  transition: border-color var(--transition-speed) ease;
}

.btn-primary:hover {
  border-color: var(--color-taupe);
  background-position: 100% 0;
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-dark);
  border: 1px solid var(--color-dark);
  transition: all var(--transition-speed) cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-secondary:hover {
  background-color: var(--color-dark);
  color: var(--color-white);
}

.btn-white {
  background: linear-gradient(120deg, var(--color-white) 0%, var(--color-white) 35%, var(--color-marfil) 45%, var(--color-taupe) 50%, var(--color-marfil) 55%, var(--color-white) 65%, var(--color-white) 100%);
  background-size: 250% 100%;
  color: var(--color-dark);
  border: 1px solid var(--color-white);
  animation: silverButtonShimmer 6s infinite linear;
  transition: border-color var(--transition-speed) ease;
}

.btn-white:hover {
  border-color: var(--color-marfil);
  background-position: 100% 0;
}

.btn-whatsapp-hero {
  background-color: #25D366;
  color: var(--color-white);
  border: 1px solid #25D366;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-whatsapp-hero:hover {
  background-color: #20BA5A;
  border-color: #20BA5A;
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* --- 5. HEADER (MINIMAL: NO NAV LINKS, ALIGNED WITH LATERAL MARGINS) --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: all var(--transition-speed) ease;
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background-color: var(--gradient-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: 50px; /* 40% height reduction from 80px */
  border-bottom: 1px solid rgba(26, 28, 30, 0.05);
}

.header-container {
  width: 100%;
  padding: 0 12%; /* Aligned with lateral margins of split-section text */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Scroll-reactive Logo filter mask */
.logo-img {
  height: 30px;
  width: auto;
  filter: brightness(0) invert(1); /* Initially light tone on dark hero */
  transition: all var(--transition-speed) ease;
}

.header.scrolled .logo-img {
  filter: brightness(0); /* Changes to dark tone on scrolled light header */
  height: 18px; /* Proportional reduction from 30px */
}

/* Header Location Pin Element */
.header-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-title);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-white); /* Initially white on dark hero */
  transition: all var(--transition-speed) ease;
  text-decoration: none; /* Clickable link, no underline */
  cursor: pointer;
}

.header-location svg {
  fill: currentColor;
  width: 18px;
  height: 18px;
  transition: all var(--transition-speed) ease;
}

.header.scrolled .header-location {
  color: var(--color-dark); /* Changes to dark on scrolled light header */
  font-size: 0.78rem; /* Proportional reduction from 0.9rem */
}

.header.scrolled .header-location svg {
  width: 14px; /* Proportional reduction from 18px */
  height: 14px;
}

@media (max-width: 992px) {
  .header-container {
    padding: 0 8%;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 0 20px;
  }
}

/* --- 6. HERO SECTION (FULL VIDEO BACKGROUND, LEFT-ALIGNED CONTENT WITH MARGINS) --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  color: var(--color-white);
  padding: 0 12%; /* Aligned with the 12% margin visual cadence */
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: var(--color-dark);
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 28, 30, 0.6);
  z-index: 2;
}

.hero-container {
  position: relative;
  z-index: 3;
  max-width: 720px;
  width: 100%;
  text-align: left;
}

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.8rem);
  font-weight: 400;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  
  /* Silver text shine effect */
  background: linear-gradient(120deg, #FFF 0%, #FFF 35%, #EAE9E1 45%, #B4B2AE 50%, #EAE9E1 55%, #FFF 65%, #FFF 100%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: silverTextShine 8s infinite linear;
}

/* Typographic Subtitle directly below H1 */
.hero-subtitle {
  font-family: var(--font-title);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  margin-bottom: 40px;
  color: var(--color-white);
  letter-spacing: -0.01em;
}

/* Inline flex group for CTA buttons */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-price-wrapper {
  margin-bottom: 20px;
}

.hero-price-tag {
  font-family: var(--font-title);
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: var(--color-white);
}

/* Small legal footnote in Spanish inside Hero */
.hero-legal {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
  margin-top: 20px;
  max-width: 500px;
}

.hero-cta-btn {
  padding: 15px 24px;
  font-size: 0.88rem;
  box-sizing: border-box;
}

@media (max-width: 992px) {
  .hero { padding: 0 8%; }
}

@media (max-width: 768px) {
  .hero {
    padding: 0 20px;
    height: 100vh;
    height: 100dvh; /* Exact viewport height on mobile */
    min-height: auto;
    display: flex;
    align-items: flex-end; /* Content pushed closer to the base */
    padding-bottom: 40px; /* base padding */
    padding-top: 90px; /* headroom space */
  }
  .hero-title {
    font-size: clamp(1.75rem, 6.5vw, 2.2rem); /* Reduced to fit in exactly two lines on mobile */
    line-height: 1.25;
    margin-bottom: 16px;
  }
  .hero-subtitle {
    margin-bottom: 24px;
    font-size: 1.3rem;
  }
  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 12px;
    margin-bottom: 16px;
  }
  .hero-cta-btn {
    width: 100%;
    max-width: 100%;
    padding: 14px 12px;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
    white-space: nowrap;
  }
  .hero-price-wrapper {
    margin-bottom: 12px;
  }
  .hero-price-tag {
    font-size: 1.1rem;
  }
  .hero-legal {
    margin-top: 12px;
    font-size: 0.68rem;
  }
}

@media (max-width: 390px) {
  .hero-cta-btn {
    font-size: 0.72rem;
    padding: 13px 8px;
    letter-spacing: 0.02em;
  }
}

/* --- 7. SPLIT SECTION LAYOUT (VISUAL CONSISTENCY) --- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background-color: var(--color-marfil);
  border-bottom: none; /* Removed section border bottom line */
}

.split-image-container {
  position: relative;
  min-height: 650px; /* Increased height by 30% on desktop (from 500px) */
  height: 100%;
  overflow: hidden;
}

.split-image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-text-container {
  padding: 130px 12%; /* Increased height by 30% on desktop (from 100px) */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--color-dark);
  margin-bottom: 30px;
}

.split-paragraph {
  font-size: 1rem;
  color: var(--color-dark);
  margin-bottom: 40px;
  line-height: 1.7;
  opacity: 0.85;
}

/* Minimalist clean list for Diferenciales with inline SVG Icons */
.split-grid-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 24px;
}

.split-list-item {
  display: flex;
  flex-direction: column;
  background-color: transparent;
  padding: 0;
  border: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.25, 1, 0.5, 1), transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.split-list-item svg {
  color: var(--color-gris);
  width: 24px;
  height: 24px;
  margin-bottom: 8px;
  flex-shrink: 0;
  stroke-width: 1.5px;
}

.split-item-title {
  font-family: var(--font-title);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--color-dark);
  margin-bottom: 6px;
}

.split-item-desc {
  font-size: 0.85rem;
  color: var(--color-gris);
  line-height: 1.5;
}

/* Image Collage for split sections */
.split-image-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 40px;
  background-color: var(--color-marfil);
  height: 100%;
}

.collage-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--color-taupe);
  min-height: 480px;
}

@media (max-width: 992px) {
  .split-image-collage {
    padding: 30px;
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .split-image-collage {
    padding: 20px;
    gap: 8px;
  }
  .collage-img {
    min-height: 250px;
  }
}

@media (max-width: 992px) {
  .split-text-container {
    padding: 80px 8%;
  }
}

@media (max-width: 768px) {
  .split-section {
    grid-template-columns: 1fr; /* Stacks to 1 column on mobile */
  }
  .split-image-container, .location-map-side {
    min-height: 350px;
    order: -1; /* Default stack top */
  }
  .split-section.reverse-mobile .split-image-container,
  .split-section.reverse-mobile .location-map-side {
    order: 1; /* Stacks second on mobile, below text container */
  }
  .split-text-container {
    padding: 60px 20px;
  }
  .split-grid-list {
    grid-template-columns: 1fr;
  }
}

/* --- 8. GALLERY (FULL BLEED TO EDGES, PURE PHOTO GRID - NO TEXT HEADER) --- */
.gallery-section {
  background-color: var(--color-marfil);
  border-bottom: none; /* Removed gallery border bottom line */
  padding: 0; /* Remove top/side padding completely for clean visual grid flow */
}

.gallery-grid {
  display: flex; /* Changed from grid to flex to resolve gaps/lines on sub-pixel rendering */
  width: 100%;
  margin: 0;
  padding: 0;
}

.gallery-item {
  flex: 1;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1; /* 30-33% taller aspect ratio height on desktop */
  cursor: pointer;
  background-color: var(--color-marfil);
}

.gallery-item img {
  width: calc(100% + 2px); /* 1px shift left/right to resolve sub-pixel render gap lines */
  margin-left: -1px;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-item:hover img {
  transform: scale(1.15); /* More noticeable and elegant zoom expansion */
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 28, 30, 0.15);
  opacity: 0;
  transition: opacity var(--transition-speed) ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.gallery-icon-expand {
  color: var(--color-white);
  border: 1px solid var(--color-white);
  padding: 8px 16px;
  font-family: var(--font-title);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 992px) {
  .gallery-grid {
    flex-wrap: wrap; /* Wraps items into multiple rows on tablet */
  }
  .gallery-item {
    flex: 1 1 50%; /* 2 items per row */
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    flex-direction: column; /* 1 item per row on mobile */
  }
  .gallery-item {
    flex: 1 1 auto;
    width: 100%;
    aspect-ratio: 4/3; /* Fills mobile width with elegant aspect ratio */
  }
}

/* --- 9. EXPERIENCE --- */
.experience-quote {
  font-family: var(--font-title);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  line-height: 1.35;
  color: var(--color-dark);
  border-left: 2px solid var(--color-gris);
  padding-left: 24px;
  margin-bottom: 40px;
}

.experience-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.experience-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--color-dark);
  
  /* Initial transition state */
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform, opacity;
}

.experience-list-item svg {
  color: var(--color-gris);
  flex-shrink: 0;
}

@media (max-width: 576px) {
  .experience-list {
    grid-template-columns: 1fr;
  }
}

/* --- 10. REDESIGNED MEMBERSHIPS SELECTOR (SPLIT 50/50 LAYOUT) --- */
.memberships-promo {
  font-size: 0.95rem;
  color: var(--color-dark);
  opacity: 0.85;
  letter-spacing: 0.05em;
  text-transform: none; /* Changed to none to avoid uppercase conversion on sup elements */
  border-bottom: 1px solid var(--color-taupe);
  padding-bottom: 6px;
  display: inline-block;
  margin-bottom: 30px;
}

/* Minimalist Selector / Dynamic Tabs (Rectangular) */
.plan-selector {
  display: flex;
  border: 1px solid var(--color-dark);
  margin-bottom: 35px;
  width: 100%;
  max-width: 480px;
  background-color: var(--color-marfil);
}

.plan-tab {
  flex: 1;
  padding: 13px 8px;
  font-family: var(--font-title);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  transition: all var(--transition-speed) ease;
  border-right: 1px solid var(--color-dark);
  color: var(--color-dark);
  white-space: nowrap;
}

.plan-tab:last-child {
  border-right: none;
}

.plan-tab.active {
  background-color: var(--color-dark);
  color: var(--color-white);
}

.plan-tab:hover:not(.active) {
  background-color: var(--color-taupe);
  color: var(--color-dark);
}

@media (max-width: 480px) {
  .plan-tab {
    padding: 11px 4px;
    font-size: 0.72rem;
    letter-spacing: 0.02em;
  }
}

/* Pricing Display container */
.plan-display {
  margin-bottom: 40px;
  transition: opacity 0.2s ease;
}

.plan-display.updating {
  opacity: 0.3;
}

.plan-price-block {
  display: flex;
  align-items: baseline;
  margin-bottom: 16px;
}

.plan-currency {
  font-size: 1.25rem;
  font-family: var(--font-title);
  margin-right: 4px;
  color: var(--color-dark);
}

.plan-price {
  font-family: var(--font-title);
  font-size: 4rem;
  line-height: 1;
  color: var(--color-dark);
}

.plan-period {
  font-size: 0.95rem;
  color: var(--color-gris);
  margin-left: 8px;
}

.plan-description {
  font-size: 0.95rem;
  color: var(--color-dark);
  opacity: 0.85;
  line-height: 1.6;
  max-width: 480px;
  min-height: 72px; /* Force minimum height for stable, non-shifting split section height */
}

.plan-cta-btn {
  align-self: flex-start;
}

/* --- 11. FAQ ACCORDION (INSIDE SPLIT SCREEN) --- */
.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--color-taupe);
  width: 100%;
}

.faq-item {
  border-bottom: 1px solid var(--color-taupe);
}

.faq-question {
  width: 100%;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-dark);
  text-align: left;
  transition: color var(--transition-speed) ease;
}

.faq-question:hover {
  color: var(--color-gris);
}

.faq-icon-toggle {
  position: relative;
  width: 12px;
  height: 12px;
}

.faq-icon-toggle::before,
.faq-icon-toggle::after {
  content: '';
  position: absolute;
  background-color: var(--color-dark);
}

.faq-icon-toggle::before {
  top: 5px;
  left: 0;
  width: 100%;
  height: 1.5px;
}

.faq-icon-toggle::after {
  top: 0;
  left: 5px;
  width: 1.5px;
  height: 100%;
  transition: opacity var(--transition-speed) ease;
}

.faq-item.active .faq-icon-toggle::after {
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
  padding: 0 0 24px 0;
  color: var(--color-dark);
  opacity: 0.8;
  font-size: 0.92rem;
  line-height: 1.6;
}

/* --- 12. LOCATION (SPLIT FULL BLEED) --- */
.location-details {
  margin-bottom: 40px;
}

.location-block {
  margin-bottom: 24px;
  font-size: 1rem;
}

.location-label {
  font-family: var(--font-title);
  font-weight: 500;
  color: var(--color-dark);
  margin-bottom: 6px;
}

.location-value {
  color: var(--color-dark);
  opacity: 0.8;
}

.location-social {
  margin-top: 10px;
}

.location-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-title);
  font-weight: 500;
  color: var(--color-dark);
  font-size: 1rem;
  transition: color var(--transition-speed) ease;
}

.location-social-link:hover {
  color: var(--color-gris);
}

/* Simulated Map Layout */
.location-map-side {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 650px; /* Increased height by 30% on desktop (from 500px) */
  overflow: hidden; /* Hide overflow of parallax translated image */
}

.location-map-side img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05) brightness(0.85);
}

.map-card-info {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background-color: var(--color-white);
  padding: 30px;
  border: 1px solid var(--color-taupe);
  max-width: 320px;
}

.map-card-title {
  font-family: var(--font-title);
  font-weight: 500;
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.map-card-text {
  font-size: 0.85rem;
  color: var(--color-dark);
  opacity: 0.7;
  margin-bottom: 16px;
  line-height: 1.4;
}

.map-card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-gris);
  display: flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 768px) {
  .location-map-side {
    min-height: 350px;
  }
  .map-card-info {
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: none;
    padding: 20px;
  }
}

/* --- 13. FINAL CTA --- */
.final-cta {
  background-color: var(--color-gris);
  color: var(--color-white);
  position: relative;
}

.final-cta-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.final-cta-title {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  margin-bottom: 20px;
  
  /* Silver text shine effect */
  background: linear-gradient(120deg, #FFF 0%, #FFF 35%, #EAE9E1 45%, #B4B2AE 50%, #EAE9E1 55%, #FFF 65%, #FFF 100%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: silverTextShine 8s infinite linear;
}

.final-cta-text {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  margin-bottom: 40px;
  opacity: 0.9;
}

/* --- 14. FOOTER (ALIGNED WITH VISUAL MARGIN CADENCE) --- */
.footer {
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: 100px 12% 50px; /* Aligned with lateral margins */
}

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

.footer-logo-link {
  display: inline-block;
  margin-bottom: 24px;
}

.footer-logo {
  height: 30px;
  width: auto;
}

.footer-about {
  color: var(--color-taupe);
  max-width: 320px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-title {
  font-family: var(--font-title);
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 24px;
  letter-spacing: 0.08em;
  color: var(--color-white);
  text-transform: uppercase;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-menu-link {
  color: var(--color-taupe);
  font-size: 0.9rem;
  transition: color var(--transition-speed) ease;
}

.footer-menu-link:hover {
  color: var(--color-white);
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--color-taupe);
  font-size: 0.9rem;
}

.footer-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-info-item svg {
  color: var(--color-taupe);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-info-item a:hover {
  color: var(--color-white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copy {
  color: var(--color-taupe);
  opacity: 0.7;
  font-size: 0.85rem;
}

.footer-social-icons {
  display: flex;
  gap: 16px;
}

.footer-social-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-taupe);
  transition: all var(--transition-speed) ease;
}

.footer-social-icon:hover {
  border-color: var(--color-white);
  color: var(--color-white);
}

@media (max-width: 992px) {
  .footer {
    padding: 80px 8% 40px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-top > *:first-child {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 60px 20px 40px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-top > *:first-child {
    grid-column: span 1;
  }
  .footer-bottom {
    flex-direction: column-reverse;
    text-align: center;
  }
}

/* --- 15. MODAL / LIGHTBOX SYSTEM --- */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 28, 30, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.5rem;
  transition: all var(--transition-speed) ease;
  z-index: 2100;
}

.lightbox-close:hover {
  background: var(--color-white);
  color: var(--color-dark);
  transform: rotate(90deg);
}

/* Gallery Lightbox Content */
.gallery-lightbox-content {
  max-width: 90%;
  max-height: 80vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gallery-lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  transform: scale(0.98);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.2rem;
  transition: all var(--transition-speed) ease;
  transform: translateY(-50%);
  z-index: 2050;
}

.lightbox-nav:hover {
  background: var(--color-white);
  color: var(--color-dark);
}

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

@media (max-width: 1024px) {
  .lightbox-nav-prev { left: 16px; }
  .lightbox-nav-next { right: 16px; }
}

/* Lead Modal/Lightbox Content (Blank container for external iframe) */
.lead-modal-content {
  background-color: var(--color-white);
  width: 90%;
  max-width: 500px;
  height: 480px;
  padding: 0;
  position: relative;
  border: 1px solid var(--color-taupe);
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.active .lead-modal-content {
  transform: translateY(0);
}

.lead-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* --- 16. METALLIC SILVER KEYFRAME SHIMMERS --- */
@keyframes silverButtonShimmer {
  0% {
    background-position: 250% 0;
  }
  100% {
    background-position: -50% 0;
  }
}

@keyframes silverTextShine {
  0% {
    background-position: 250% 0;
  }
  100% {
    background-position: -50% 0;
  }
}

/* --- 17. NEW VISUAL DETAILS: FLOATING CTA BUTTON & HERO BURST ICON --- */
.hero-burst-icon {
  width: clamp(24px, 4.5vw, 36px);
  height: clamp(24px, 4.5vw, 36px);
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px; /* Positioned on the left of 50% text */
  margin-left: 0;
  animation: smoothRotate 15s infinite linear;
  color: var(--color-white);
}

@keyframes smoothRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.floating-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366; /* Official WhatsApp Green */
  color: var(--color-white);
  border: none; /* Cleaner, no borders */
  border-radius: 50% !important; /* 100% circular shape */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35); /* Elegant green shadow glow */
  animation: floatingPulse 2.5s infinite ease-in-out;
  text-decoration: none;
}

.floating-btn.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.floating-btn:hover {
  background-color: #20BA5A;
  transform: scale(1.08);
}

.floating-btn svg, .floating-btn img {
  width: 30px; /* Perfectly sized to fit inside 60px circle with breathing room */
  height: 30px;
  display: block;
}

@keyframes floatingPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    transform: scale(1.08);
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 576px) {
  .floating-btn {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
}

/* --- 18. EXPLICIT CONTAINER SIZE REVERTS FOR EXPERIENCE AND MEMBERSHIPS --- */
#experiencia,
#membresias {
  min-height: 488px !important;
}

#experiencia .split-text-container,
#membresias .split-text-container {
  padding: 98px 12% !important;
}

#experiencia .split-image-container,
#membresias .split-image-container {
  min-height: 488px !important;
}

@media (max-width: 992px) {
  #experiencia .split-text-container,
  #membresias .split-text-container {
    padding: 80px 8%;
  }
}

@media (max-width: 768px) {
  #experiencia .split-text-container,
  #membresias .split-text-container {
    padding: 60px 20px;
  }
  #experiencia .split-image-container,
  #membresias .split-image-container {
    min-height: 350px;
  }
}
