/* =========================================
1. VARIABLES DE MARCA Y UI
========================================= */
:root {
  --color-primario: #11448f;
  --color-secundario: #fdc400;
  --color-fondo: #f8fafc;
  --color-texto-oscuro: #0c2340;
  --color-texto-claro: #ffffff;
  --sombra-suave: 0 15px 35px rgba(12, 35, 64, 0.08);
  --sombra-hover: 0 20px 40px rgba(17, 68, 143, 0.12);
  --transicion: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* =========================================
2. TIPOGRAFÍAS LOCALES
========================================= */
@font-face { font-family: 'Gotham'; src: url('../fonts/Gotham Regular.ttf') format('truetype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Gotham'; src: url('../fonts/Gotham Bold.ttf') format('truetype'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Gotham'; src: url('../fonts/Gotham Light.ttf') format('truetype'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Gotham'; src: url('../fonts/Gotham Italic.ttf') format('truetype'); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: 'Gotham'; src: url('../fonts/Gotham Light Italic.ttf') format('truetype'); font-weight: 300; font-style: italic; font-display: swap; }
@font-face { font-family: 'Gotham'; src: url('../fonts/Gotham Thin Italic.ttf') format('truetype'); font-weight: 100; font-style: italic; font-display: swap; }

/* =========================================
3. RESET Y BASE
========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Gotham', sans-serif;
  background-color: var(--color-fondo);
  color: var(--color-texto-oscuro);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--color-primario);
  margin-bottom: 15px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--color-texto-oscuro);
  opacity: 0.8;
  max-width: 700px;
  margin: 0 auto 50px auto;
}

/* =========================================
4. COMPONENTES UI
========================================= */
.btn-primary {
  background-color: var(--color-secundario);
  color: var(--color-texto-oscuro);
  font-weight: 700;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: var(--transicion);
  display: inline-block;
  text-align: center;
  box-shadow: 0 4px 14px rgba(253, 196, 0, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  background-color: #ffcc1a;
  box-shadow: 0 6px 20px rgba(253, 196, 0, 0.6);
}

/* =========================================
5. CABECERA Y NAVEGACIÓN
========================================= */
.main-header {
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 99999 !important;
  padding: 30px 0;
  background: transparent;
  pointer-events: auto !important;
}

.header-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  height: 70px;
  width: auto;
}

.menu-toggle-btn {
  position: absolute;
  right: 24px;
  background-color: rgba(12, 35, 64, 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--color-texto-claro);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 22px;
  border-radius: 50px;
  transition: var(--transicion);
  z-index: 99999 !important;
  pointer-events: auto !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.menu-toggle-btn:hover {
  border-color: var(--color-secundario);
  color: var(--color-secundario);
  background-color: rgba(12, 35, 64, 0.8);
}

.menu-text {
  font-family: 'Gotham', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.menu-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 18px;
}

.menu-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: currentColor;
}

/* Overlay Menú */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(12, 35, 64, 0.95);
  backdrop-filter: blur(15px);
  z-index: 100000 !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: none !important;
  opacity: 0;
  visibility: hidden;
}

.overlay-content-wrapper {
  width: 100%;
  padding-left: 5%;
}

.menu-close-btn {
  position: absolute;
  top: 40px;
  right: 40px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-texto-claro);
  font-family: 'Gotham', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  cursor: pointer;
  padding: 10px 22px;
  border-radius: 50px;
  transition: var(--transicion);
}

.menu-close-btn:hover {
  border-color: var(--color-secundario);
  color: var(--color-secundario);
  background-color: rgba(255, 255, 255, 0.05);
}

.overlay-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
}

.overlay-link {
  color: var(--color-texto-claro);
  text-decoration: none;
  font-family: 'Gotham', sans-serif;
  font-weight: 300;
  font-size: clamp(3rem, 6vw, 5.5rem);
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), color 0.3s;
}

.nav-num {
  font-weight: 100;
  font-size: 0.3em;
  vertical-align: middle;
  margin-right: 20px;
  opacity: 0.5;
}

.overlay-link:hover {
  color: var(--color-secundario);
  transform: translateX(20px);
}

/* Píldora Flotante */
.sticky-pill-wrapper {
  position: fixed;
  top: 25px;
  left: 50%;
  transform: translateX(-50%) scale(0.6);
  opacity: 0;
  z-index: 99999;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
  pointer-events: none;
  transform-origin: center top;
}

.sticky-pill-wrapper.is-visible {
  transform: translateX(-50%) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.sticky-pill {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: rgba(12, 35, 64, 0.70);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 8px 8px 20px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.sticky-pill-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.sticky-pill-logo:hover {
  transform: scale(1.1) rotate(-5deg);
}

.sticky-pill-logo img {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.sticky-divider {
  width: 1px;
  height: 24px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  margin: 0 5px;
}

.sticky-pill-links {
  display: flex;
  gap: 5px;
  align-items: center;
}

.sticky-link {
  color: var(--color-texto-claro);
  text-decoration: none;
  font-family: 'Gotham', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  padding: 8px 16px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.sticky-link:hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.12);
}

.cta-whatsapp {
  background-color: var(--color-secundario);
  color: var(--color-texto-oscuro);
  font-family: 'Gotham', sans-serif;
  font-weight: 500;
  text-decoration: none;
  border-radius: 50px;
  font-size: 0.95rem;
  margin-left: 10px;
  display: inline-flex;
  overflow: hidden;
  position: relative;
  width: 150px;
  height: 42px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-text-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cta-text-default, .cta-text-hover {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  gap: 6px;
}

.cta-whatsapp:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 15px rgba(253, 196, 0, 0.4);
}

.cta-whatsapp:hover .cta-text-wrapper {
  transform: translateY(-42px);
}

/* =========================================
6. HERO SECTION
========================================= */
.hero {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
  background-image: url('../img/familia-colombiana.webp');
  background-size: cover;
  background-position: center center;
  color: var(--color-texto-claro);
  display: block;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(12, 35, 64, 0.85) 0%, rgba(12, 35, 64, 0.3) 50%, rgba(12, 35, 64, 0.05) 100%),
              linear-gradient(to bottom, rgba(12, 35, 64, 0) 0%, rgba(12, 35, 64, 0.5) 100%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100vh;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content-left {
  position: absolute;
  bottom: 11%;
  left: 24px;
  width: 80%;
  max-width: 850px;
}

.hero-title-truus {
  text-align: left;
  margin: 0;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.d-block {
  display: block;
  width: 100%;
  white-space: nowrap;
}

.line-heavy {
  font-size: clamp(3.2rem, 6.1vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin-bottom: 2px;
}

.line-elegant {
  font-size: clamp(3.2rem, 6.1vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: 0em;
  margin-bottom: 2px;
}

.fw-black {
  font-family: 'Gotham', sans-serif;
  font-weight: 900;
  font-style: normal;
}

.font-thin-italic {
  font-family: 'Gotham', sans-serif;
  font-weight: 100;
  font-style: italic;
}

.highlight-3d-wrapper {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.organic-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%) rotate(-2deg);
  width: 130%;
  height: 125%;
  z-index: -1;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}

.scroll-indicator-centered-global {
  position: absolute;
  bottom: 3%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  color: var(--color-texto-claro);
  background-color: rgba(12, 35, 64, 0.5);
  backdrop-filter: blur(4px);
  transition: var(--transicion);
  text-decoration: none;
  z-index: 10;
}

.scroll-indicator-centered-global:hover {
  border-color: var(--color-secundario);
  color: var(--color-secundario);
  background-color: rgba(253, 196, 0, 0.15);
  transform: translateX(-50%) translateY(4px);
}

.scroll-indicator-centered-global svg {
  width: 26px;
  height: 26px;
}

/* PARCHE GLOBAL DE Z-INDEX */
.story-reveal-section,
.process-section,
.google-reviews-premium,
.guarantee-section,
.lead-section,
.main-footer,
.simulator-premium-section {
  position: relative;
  z-index: 10;
  background-color: var(--color-fondo);
}

/* =========================================
   7. EXPERIENCIA Y RESPALDO (Storytelling)
   ========================================= */
.story-reveal-section {
  position: relative;
  z-index: 10;
  margin-top: 100vh;
  background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
  border-radius: 40px 40px 0 0;
  padding: 120px 0 0 0;
  box-shadow: 0 -25px 50px rgba(0,0,0,0.15);
  overflow: visible !important;
}

.story-reveal-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.12;
  z-index: 1;
  pointer-events: none;
}

.editorial-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
  position: relative;
  z-index: 3;
}

.editorial-title {
  font-family: 'Gotham', sans-serif;
  font-weight: 900;
  color: var(--color-primario);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.editorial-subtitle {
  font-family: 'Gotham', sans-serif;
  font-weight: 400;
  color: #555555;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.5;
}

.editorial-pin-wrapper {
  position: relative;
  width: 100%;
  padding: 40px 0;
  display: flex;
  align-items: center;
  z-index: 2;
}

.editorial-content-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 3;
}

.editorial-pin-wrapper::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -10%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(253, 196, 0, 0.25) 0%, rgba(253, 196, 0, 0) 70%);
  z-index: 0;
  pointer-events: none;
  animation: breatheGlowLeft 8s ease-in-out infinite alternate;
}

.editorial-pin-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0%;
  right: -10%;
  width: 750px;
  height: 750px;
  background: radial-gradient(circle, rgba(17, 68, 143, 0.20) 0%, rgba(17, 68, 143, 0) 70%);
  z-index: 0;
  pointer-events: none;
  animation: breatheGlowRight 10s ease-in-out infinite alternate;
}

@keyframes breatheGlowLeft {
  0% { transform: scale(1) translate(0, 0); opacity: 0.8; }
  100% { transform: scale(1.1) translate(30px, 30px); opacity: 1; }
}

@keyframes breatheGlowRight {
  0% { transform: scale(1) translate(0, 0); opacity: 0.8; }
  100% { transform: scale(1.15) translate(-40px, -20px); opacity: 1; }
}

.editorial-grid {
  display: grid;
  grid-template-columns: 3.5fr 4.5fr 4fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 140px;
}

.editorial-left-col {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-top: -30px;
}

.editorial-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  opacity: 0;
  transform: translateY(30px);
}

.editorial-item:nth-child(1) { transform: translateX(-8%) translateY(30px); }
.editorial-item:nth-child(2) { margin-top: 70px; transform: translateX(4%) translateY(30px); }
.editorial-item:nth-child(3) { margin-top: 85px; transform: translateX(18%) translateY(30px); }

.icon-placeholder {
  margin-bottom: 12px;
  opacity: 0.8;
}

.mini-subtitle {
  font-family: 'Gotham', sans-serif;
  font-weight: 700;
  color: var(--color-texto-oscuro);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.editorial-item p {
  font-family: 'Gotham', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555555;
  margin: 0;
}

.editorial-cards {
  position: relative;
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 3/4;
}

.card-main {
  position: absolute;
  top: -5%;
  left: 0%;
  width: 80%;
  height: 90%;
  background: #ffffff;
  padding: 8px 8px 24px 8px;
  border-radius: 12px;
  z-index: 1;
  box-shadow: 0 15px 35px rgba(12, 35, 64, 0.08);
  transform: rotate(-3deg) scale(1);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.6s ease, z-index 0s 0.15s;
}

.card-secondary {
  position: absolute;
  bottom: -5%;
  right: 0%;
  width: 65%;
  height: 60%;
  background: #ffffff;
  padding: 6px 6px 18px 6px;
  border-radius: 12px;
  z-index: 2;
  box-shadow: 0 25px 50px rgba(12, 35, 64, 0.15);
  transform: rotate(4deg) scale(1);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.6s ease, z-index 0s 0.15s;
}

.editorial-cards.is-swapped .card-main {
  z-index: 2;
  transform: rotate(-3deg) scale(1.05);
  box-shadow: 0 25px 50px rgba(12, 35, 64, 0.15);
}

.editorial-cards.is-swapped .card-secondary {
  z-index: 1;
  transform: rotate(4deg) scale(0.95);
  box-shadow: 0 15px 35px rgba(12, 35, 64, 0.08);
}

.card-main:hover {
  transform: scale(1.03) rotate(-1deg) !important;
  z-index: 3 !important;
  box-shadow: 0 25px 50px rgba(12, 35, 64, 0.18) !important;
}

.card-secondary:hover {
  transform: scale(1.05) rotate(2deg) !important;
  z-index: 3 !important;
  box-shadow: 0 35px 65px rgba(12, 35, 64, 0.2) !important;
}

.card-main img, .card-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.editorial-right-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
  padding-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
}

.right-intro {
  font-family: 'Gotham', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--color-texto-oscuro);
  margin: 0;
}

.right-body {
  font-family: 'Gotham', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #666666;
  margin: 0;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: left;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 60px;
  margin-top: 20px;
  padding-bottom: 100px;
  position: relative;
  z-index: 3;
}

.metric-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.num-massive {
  font-family: 'Gotham', sans-serif;
  font-weight: 900;
  font-size: clamp(3.5rem, 7vw, 6rem);
  color: var(--color-primario);
  line-height: 0.9;
  letter-spacing: -0.05em;
  margin: 0;
}

.metric-sub {
  font-family: 'Gotham', sans-serif;
  font-weight: 400;
  font-size: 1.15rem;
  color: #334155;
  line-height: 1.4;
  margin: 0;
}

/* =========================================
8. CÓMO FUNCIONA
========================================= */
.process-section {
  background-color: var(--color-texto-oscuro);
  color: var(--color-texto-claro);
  position: relative;
  z-index: 5;
  width: 100%;
  margin: 0;
  padding: 0;
  display: block;
  clear: both;
  overflow: visible !important;
}

.process-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100vh;
}

.process-header {
  width: 100%;
  padding: 60px 5% 20px 5%;
  z-index: 10;
}

.intro-title {
  font-family: 'Gotham', sans-serif;
  font-size: clamp(2.5rem, 3.5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--color-texto-claro);
  max-width: 900px;
  border-left: 6px solid var(--color-secundario);
  padding-left: 24px;
}

.intro-subtitle {
  font-family: 'Gotham', sans-serif;
  font-size: clamp(1.1rem, 1.2vw, 1.25rem);
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 800px;
  margin-left: 30px;
}

.process-track {
  position: relative;
  width: 100%;
  flex-grow: 1;
  overflow: hidden;
}

.panel {
  position: absolute;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  background-color: var(--color-texto-oscuro);
  box-shadow: -15px 0 40px rgba(0,0,0,0.3);
  overflow: hidden;
  will-change: transform;
}

.panel-1 { width: 100%; left: 0; box-shadow: none; z-index: 1; }
.panel-2 { width: 80%; left: 100%; z-index: 2; }
.panel-3 { width: 60%; left: 100%; z-index: 3; }
.panel-cta { width: 40%; left: 100%; z-index: 4; justify-content: center; }

.giant-num {
  font-family: 'Gotham', sans-serif;
  font-size: 55vh;
  font-weight: 900;
  color: var(--color-secundario);
  line-height: 0.8;
  position: absolute;
  left: -1%;
  bottom: -5%;
  z-index: 1;
  letter-spacing: -0.05em;
  pointer-events: none;
}

.panel-info {
  position: absolute;
  bottom: 20%;
  z-index: 2;
  left: 22vw;
  width: 100%;
  max-width: 450px;
}

.panel-info h3 {
  font-family: 'Gotham', sans-serif;
  font-size: clamp(2rem, 2.5vw, 3rem);
  font-weight: 400;
  color: var(--color-texto-claro);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.panel-info p {
  font-family: 'Gotham', sans-serif;
  font-weight: 300;
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

.panel-cta .btn-massive {
  background: rgba(255, 255, 255, 0.03) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(253, 196, 0, 0.6) !important;
  color: var(--color-secundario) !important;
  font-family: 'Gotham', sans-serif;
  font-weight: 300 !important;
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  padding: 22px 50px;
  border-radius: 50px;
  box-shadow: none !important;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
  cursor: pointer;
}

.panel-cta .btn-massive:hover {
  background: var(--color-secundario) !important;
  color: var(--color-texto-oscuro) !important;
  border-color: var(--color-secundario) !important;
  font-weight: 500 !important;
  box-shadow: 0 15px 35px rgba(253, 196, 0, 0.25) !important;
  transform: translateY(-4px) !important;
}

/* ACORDEÓN EDITORIAL PREMIUM */
.micro-details-wrapper {
  width: 100%;
  background: var(--color-texto-oscuro);
  color: var(--color-texto-claro);
  height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}

.accordion-container {
  padding: 100px 24px;
  max-width: 900px;
  margin: 0 auto;
}

.accordion-header {
  text-align: center;
  margin-bottom: 80px;
}

.accordion-header h2 {
  font-family: 'Gotham', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--color-secundario);
  margin-bottom: 15px;
  letter-spacing: -0.03em;
}

.accordion-header p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

.accordion-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  background: transparent;
  border: none;
  padding: 35px 0;
  cursor: pointer;
  text-align: left;
  color: var(--color-texto-claro);
  transition: padding-left 0.4s ease, color 0.4s ease;
}

.accordion-trigger:hover {
  padding-left: 15px;
}

.accordion-num {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.3);
  margin-right: 30px;
  transition: color 0.4s ease;
}

.accordion-title {
  font-family: 'Gotham', sans-serif;
  font-weight: 300;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  flex-grow: 1;
  margin: 0;
  transition: color 0.4s ease;
}

.accordion-icon {
  position: relative;
  width: 24px;
  height: 24px;
  margin-left: 20px;
}

.accordion-icon .line-h, .accordion-icon .line-v {
  position: absolute;
  background-color: var(--color-texto-claro);
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.4s ease;
}

.accordion-icon .line-h {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

.accordion-icon .line-v {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

.accordion-item.is-active .accordion-trigger {
  padding-left: 15px;
}

.accordion-item.is-active .accordion-num, .accordion-item.is-active .accordion-title {
  color: var(--color-secundario);
  font-weight: 700;
}

.accordion-item.is-active .accordion-icon .line-v {
  transform: translateX(-50%) rotate(90deg);
}

.accordion-item.is-active .accordion-icon .line-h, .accordion-item.is-active .accordion-icon .line-v {
  background-color: var(--color-secundario);
}

.accordion-content {
  height: 0;
  opacity: 0;
  overflow: hidden;
}

.accordion-inner {
  padding: 0 0 40px 60px;
}

.accordion-inner p {
  font-family: 'Gotham', sans-serif;
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  max-width: 700px;
}

.accordion-footer-close {
  text-align: center;
  margin-top: 80px;
}

/* =========================================
8.5 SIMULADOR SAAS PREMIUM (Dark Elegance)
========================================= */
.simulator-premium-section {
  position: relative;
  padding: 120px 0;
  background-color: #f4f7f6;
  background-image:
    radial-gradient(at 0% 0%, rgba(253, 196, 0, 0.08) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(17, 68, 143, 0.05) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(253, 196, 0, 0.05) 0px, transparent 50%),
    radial-gradient(at 0% 100%, rgba(17, 68, 143, 0.08) 0px, transparent 50%);
  overflow: hidden;
  z-index: 10;
}

/* Textura unificada de grano fluido que abraza todo el bloque claro */
.simulator-premium-section::after,
.google-reviews-premium::after,
.social-premium-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.15;
  z-index: 1;
  pointer-events: none;
  will-change: transform;
  transform: translateZ(0);
}

.simulator-container {
  position: relative;
  z-index: 2;
}

/* CABECERA EDITORIAL DEL SIMULADOR */
.simulator-header-clean {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
}

.sim-title {
  margin-bottom: 25px;
  line-height: 1.05;
}

.sim-title .font-thin-italic {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--color-texto-oscuro);
  opacity: 0.9;
  display: block;
  padding: 5px 0;
}

.sim-title .fw-black {
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  color: var(--color-primario);
  letter-spacing: -0.04em;
  text-transform: lowercase;
  display: block;
}

.sim-title .fw-black::first-letter {
  text-transform: uppercase;
}

.sim-subtitle {
  font-size: 1.15rem;
  font-weight: 300;
  color: #555555;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
  padding-top: 20px;
  border-top: 1px solid rgba(12, 35, 64, 0.08);
}

/* CÁPSULA DE CRISTAL OSCURO & CONTROLES */
.simulator-dark-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  background: rgba(12, 35, 64, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 60px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
}

.sim-controls {
  display: flex;
  flex-direction: column;
  gap: 45px;
  justify-content: center;
}

.slider-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.slider-header label {
  font-family: 'Gotham', sans-serif;
  font-weight: 300;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
}

.slider-val {
  font-family: 'Gotham', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-texto-claro);
  letter-spacing: 0.02em;
}

.elegant-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--color-secundario) var(--slider-fill, 0%), rgba(255, 255, 255, 0.1) var(--slider-fill, 0%));
  border-radius: 10px;
  outline: none;
}

.elegant-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid var(--color-texto-oscuro);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
}

.elegant-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

/* TICKET DERECHA DARK PREMIUM */
.sim-ticket-dark {
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 35px;
}

.ticket-top {
  text-align: center;
}

.ticket-editorial-title {
  font-family: 'Gotham', sans-serif;
  font-weight: 300;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.ticket-result-time {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.num-massive-sim {
  font-family: 'Gotham', sans-serif;
  font-size: clamp(6rem, 9vw, 9rem);
  line-height: 0.85;
  color: var(--color-texto-claro);
  font-weight: 900;
  letter-spacing: -0.05em;
  margin: 15px 0;
}

.result-label {
  font-family: 'Gotham', sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 0.95rem;
  color: var(--color-secundario);
  text-transform: uppercase;
}

.ticket-locked-elegant {
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 0;
  text-align: center;
}

.locked-label {
  display: block;
  font-family: 'Gotham', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
}

.blur-amount {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
}

.blurred-text {
  font-family: 'Gotham', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.8);
  filter: blur(10px);
  opacity: 0.4;
  user-select: none;
  letter-spacing: -0.02em;
}

.lock-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  opacity: 0.8;
}

.locked-warning {
  font-family: 'Gotham', sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
  margin-top: 10px;
}

.ticket-cta .btn-massive {
  background: rgba(255, 255, 255, 0.05) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: var(--color-texto-claro) !important;
  font-family: 'Gotham', sans-serif;
  font-weight: 300 !important;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  padding: 20px 40px;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
  text-decoration: none;
}

.ticket-cta .btn-massive:hover {
  background: var(--color-texto-claro) !important;
  color: var(--color-texto-oscuro) !important;
  border-color: var(--color-texto-claro) !important;
  font-weight: 500 !important;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1) !important;
  transform: translateY(-4px) !important;
}

/* =========================================
9. OPINIONES GOOGLE (UX/UI Premium & Marquee)
========================================= */
.google-reviews-premium {
  position: relative;
  padding: 100px 0 120px 0;
  background-color: #f4f7f6;
  background-image:
    radial-gradient(at 0% 0%, rgba(253, 196, 0, 0.08) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(17, 68, 143, 0.05) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(253, 196, 0, 0.05) 0px, transparent 50%),
    radial-gradient(at 0% 100%, rgba(17, 68, 143, 0.08) 0px, transparent 50%);
  overflow: hidden;
}

.reviews-header-authority {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 70px;
}

.reviews-title-premium {
  font-family: 'Gotham', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  color: var(--color-texto-oscuro);
  margin-bottom: 30px;
  letter-spacing: -0.04em;
  line-height: 1.1;
  text-align: center;
}

.google-summary-pill {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 12px 35px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  border: 1px solid rgba(12, 35, 64, 0.05);
  box-shadow: 0 15px 35px rgba(12, 35, 64, 0.06);
}

.google-logo svg {
  width: 28px;
  height: 28px;
}

.rating-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rating-number {
  font-family: 'Gotham', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--color-texto-oscuro);
  line-height: 1;
}

.rating-stars {
  color: #fbbc04;
  font-size: 1.3rem;
  letter-spacing: 2px;
}

.rating-text {
  font-family: 'Gotham', sans-serif;
  font-size: 0.9rem;
  color: #555555;
  font-weight: 300;
  margin-left: 10px;
  border-left: 1px solid #e0e0e0;
  padding-left: 15px;
}

/* Muro Infinito */
.marquee-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  position: relative;
}

.marquee-container::before,
.marquee-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 15vw;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  will-change: transform;
  transform: translateZ(0);
}

.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, #f4f7f6, transparent);
}

.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, #f4f7f6, transparent);
}

.marquee-track {
  display: flex;
  gap: 30px;
  width: max-content;
}

.marquee-content {
  display: flex;
  gap: 30px;
  width: max-content;
}

.google-card {
  width: 320px;
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(12, 35, 64, 0.05);
  box-shadow: 0 10px 30px rgba(12, 35, 64, 0.04);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: default;
  flex-shrink: 0;
}

.google-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(12, 35, 64, 0.08);
}

.g-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  position: relative;
}

.g-card-header img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.g-user-info {
  display: flex;
  flex-direction: column;
}

.g-user-info h4 {
  font-family: 'Gotham', sans-serif;
  font-size: 0.9rem;
  color: #202124;
  margin: 0;
  line-height: 1.2;
}

.g-badge-guide {
  font-size: 0.7rem;
  color: #5f6368;
  margin-top: 2px;
}

.g-time {
  font-size: 0.75rem;
  color: #70757a;
  margin-top: 2px;
}

.g-icon-small {
  position: absolute;
  top: 0;
  right: 0;
  width: 18px !important;
  height: 18px !important;
  border-radius: 0 !important;
}

.g-stars {
  color: #fbbc04;
  font-size: 1.1rem;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.g-text {
  font-family: 'Gotham', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.6;
  color: #3c4043;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
}

/* BOTÓN DE AUTORIDAD GOOGLE (Minimalismo Premium) */
.google-reviews-premium .btn-massive {
  background: var(--color-primario) !important;
  border: 1px solid var(--color-primario) !important;
  color: var(--color-texto-claro) !important;
  font-family: 'Gotham', sans-serif;
  font-weight: 400 !important;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  padding: 18px 45px;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(17, 68, 143, 0.15) !important;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.25, 1) !important;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
}

.google-reviews-premium .btn-massive:hover {
  background: transparent !important;
  border-color: var(--color-primario) !important;
  color: var(--color-primario) !important;
  box-shadow: 0 12px 25px rgba(17, 68, 143, 0.1) !important;
  transform: translateY(-3px) !important;
}

/* =========================================
10. GARANTÍA A ÉXITO
========================================= */
.guarantee-section {
  padding: 80px 0;
}

.guarantee-card {
  background: linear-gradient(135deg, var(--color-primario) 0%, #0c2340 100%);
  color: var(--color-texto-claro);
  padding: 60px;
  border-radius: 24px;
  text-align: center;
  box-shadow: var(--sombra-hover);
}

.guarantee-card h2 {
  font-size: 2.8rem;
  color: var(--color-secundario);
  margin-bottom: 20px;
}

.guarantee-card p {
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}

/* =========================================
11. FORMULARIO
========================================= */
.lead-section {
  padding: 100px 0;
  background-color: var(--color-primario);
}

.form-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.form-text h2 {
  font-size: 3.2rem;
  color: var(--color-texto-claro);
  margin-bottom: 24px;
}

.form-text p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
}

.lead-form {
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lead-form input, .lead-form select {
  width: 100%;
  padding: 18px 24px;
  border: 2px solid #eef0f4;
  border-radius: 12px;
  font-family: 'Gotham', sans-serif;
  font-size: 1.05rem;
}

.lead-form input:focus, .lead-form select:focus {
  outline: none;
  border-color: var(--color-primario);
}

.btn-submit {
  width: 100%;
  font-size: 1.2rem;
  padding: 20px;
}

/* =========================================
12. RESPONSIVE MÓVIL GLOBAL
========================================= */
@media (max-width: 992px) {
  .hero { padding: 140px 0 40px 0; }
  .hero-container, .form-container { grid-template-columns: 1fr; text-align: center; }
  .hero-content { margin: 0 auto; }
  .hero-content-left { bottom: 12%; width: 100%; padding-right: 24px; left: 24px; }
  .scroll-indicator-centered-global { width: 48px; height: 48px; bottom: 2%; }
  .scroll-indicator-centered-global svg { width: 20px; height: 20px; }

  .editorial-grid { display: flex; flex-direction: column; gap: 60px; }
  .editorial-left-col { margin-bottom: 0; gap: 40px; }
  .editorial-item:nth-child(n) { transform: none; margin-top: 0; }
  .editorial-cards { width: 100%; max-width: 450px; order: -1; margin-bottom: 20px; }
  .editorial-right-col { text-align: center; padding-bottom: 0; }
  .metrics-grid { grid-template-columns: 1fr; text-align: center; gap: 60px; }
  .editorial-pin-wrapper { min-height: auto; padding: 60px 0; }
  .editorial-pin-wrapper::before, .editorial-pin-wrapper::after { display: none; }
  .editorial-item, .editorial-right-col { opacity: 1 !important; transform: none !important; }

  .process-container { flex-direction: column; height: auto; overflow: visible; padding: 80px 0; }
  .process-left { width: 100%; height: auto; padding: 0 24px; margin-bottom: 60px; text-align: center; border-right: none; }
  .process-right { width: 100%; height: auto; overflow: visible; display: flex; flex-direction: column; gap: 40px; }
  .process-header { padding: 0 24px 60px 24px; text-align: center; }
  .intro-title { border-left: none; padding-left: 0; font-size: 2.2rem; }
  .intro-subtitle { margin-left: 0; }
  .process-track { height: auto; overflow: visible; display: flex; flex-direction: column; gap: 40px; }

  .panel {
    position: relative;
    width: 100% !important;
    left: 0 !important;
    height: auto;
    min-height: 50vh;
    border-left: none;
    flex-direction: column;
    padding: 40px 24px;
    justify-content: flex-start;
    align-items: flex-start;
    box-shadow: none;
    transform: none !important;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .panel-cta { min-height: auto; padding: 40px 24px; align-items: center; }
  .giant-num { font-size: 25vh; position: relative; left: 0; bottom: 0; margin-bottom: 20px; line-height: 1; }
  .panel-info { position: relative; bottom: 0; right: 0; width: 100%; }
  .panel-info h3 { font-size: 1.8rem; font-weight: 700; }

  .accordion-trigger { padding: 25px 0; }
  .accordion-num { font-size: 1.2rem; margin-right: 15px; }
  .accordion-inner { padding: 0 0 30px 0; }

  /* Simulador Dark Responsive */
  .simulator-premium-section { padding: 80px 0; }
  .simulator-dark-card { grid-template-columns: 1fr; padding: 30px; gap: 40px;}
  .sim-ticket-dark { margin-top: 0; gap: 25px; }
  .num-massive-sim { font-size: 5rem; }

  .process-grid, .reviews-grid { grid-template-columns: 1fr; gap: 20px; }
  .guarantee-card { padding: 40px 20px; }
  .guarantee-card h2 { font-size: 2rem; }

  .sticky-pill-wrapper { top: 15px; width: 92%; }
  .sticky-pill { padding: 6px 6px 6px 15px; justify-content: space-between; gap: 10px; }
  .sticky-pill-links, .sticky-divider { display: none; }
  .sticky-pill-action { flex-grow: 1; display: flex; justify-content: flex-end; }

  /* Google Reviews Móvil */
  .google-card { width: 280px; }
  .marquee-container::before, .marquee-container::after { width: 5vw; }
  .google-summary-pill { flex-direction: column; text-align: center; padding: 20px; }
  .rating-text { border-left: none; border-top: 1px solid #e0e0e0; padding-left: 0; padding-top: 10px; margin-left: 0; margin-top: 10px; }
}

/* =========================================
14. SCROLLBAR & CURSOR PERSONALIZADO (Píldora)
========================================= */

/* Barra de Scroll Corporativa */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--color-fondo);
}
::-webkit-scrollbar-thumb {
  background: var(--color-primario);
  border-radius: 10px;
  border: 2px solid var(--color-fondo);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-secundario);
}

/* Ocultar el cursor nativo aburrido */
@media (hover: hover) and (pointer: fine) {
  body, a, button, input, select, .btn-massive, .btn-primary {
    cursor: none !important;
  }
}

/* Cursor Contenedor */
.custom-cursor-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  pointer-events: none;
  display: flex;
  align-items: center;
  will-change: transform;
}

/* Flecha Corporativa y Nítida */
.cursor-arrow {
  width: 26px;
  height: 26px;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.25));
  transform-origin: top left;
}

.cursor-arrow svg {
  width: 100%;
  height: 100%;
}

/* Píldora de Texto "Alta Costura" */
.cursor-pill {
  background: rgba(12, 35, 64, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--color-texto-claro);
  font-family: 'Gotham', sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0;
  border-radius: 50px;
  margin-left: 12px;
  opacity: 0;
  width: 0;
  overflow: hidden;
  white-space: nowrap;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (hover: none) {
  .custom-cursor-wrapper {
    display: none !important;
  }
}

/* =========================================
15. SECCIÓN REDES SOCIALES (Layout & Color)
========================================= */
.social-premium-section {
  position: relative;
  z-index: 10;
  padding: 140px 0;
  background-color: #f4f7f6;
  background-image:
    radial-gradient(at 0% 0%, rgba(253, 196, 0, 0.08) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(17, 68, 143, 0.05) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(253, 196, 0, 0.05) 0px, transparent 50%),
    radial-gradient(at 0% 100%, rgba(17, 68, 143, 0.08) 0px, transparent 50%);
  overflow: hidden;
}

/* --- Elementos de Vida y Color Flotantes --- */
.decor-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  opacity: 0.35;
  animation: breatheShape 8s infinite alternate ease-in-out;
  pointer-events: none;
}

.shape-yellow {
  width: 400px;
  height: 400px;
  background: var(--color-secundario);
  top: 5%;
  right: -10%;
}

.shape-blue {
  width: 500px;
  height: 500px;
  background: var(--color-primario);
  bottom: -15%;
  left: -10%;
  opacity: 0.15;
}

.decor-pattern {
  position: absolute;
  width: 250px;
  height: 250px;
  top: 20%;
  left: 45%;
  background-image: radial-gradient(var(--color-primario) 2px, transparent 2px);
  background-size: 24px 24px;
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
  transform: rotate(15deg);
}

@keyframes breatheShape {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.1) translate(20px, -30px); }
}

/* --- Grilla Blindada --- */
.social-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* --- Columna Derecha (Textos Elevados) --- */
.social-text-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left !important;
}

.editorial-badge {
  font-family: 'Gotham', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-secundario);
  margin-bottom: 20px;
  position: relative;
  padding-left: 40px;
}

.editorial-badge::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 2px;
  background-color: var(--color-secundario);
}

.social-title-elevated {
  margin-bottom: 30px;
  line-height: 1;
}

.social-title-elevated .fw-black {
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: var(--color-texto-oscuro);
  letter-spacing: -0.03em;
}

.social-title-elevated .text-highlight {
  font-size: clamp(3.2rem, 5vw, 4.8rem);
  color: var(--color-primario);
  margin-left: 10px;
}

.social-body-elevated {
  font-family: 'Gotham', sans-serif;
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1.8;
  color: #4a5568;
  max-width: 500px;
  margin: 0;
  padding-left: 20px;
  border-left: 2px solid rgba(17, 68, 143, 0.15);
}

/* --- Columna Izquierda (Celular + Íconos) --- */
.social-video-col {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

/* MOCKUP IPHONE PREMIUM */
.phone-mockup-premium {
  position: relative;
  width: 300px;
  height: 620px;
  background-color: #000;
  border-radius: 45px;
  border: 8px solid #18181a;
  box-shadow:
    -1px 2px 0 #717580,
    -2px 4px 0 #555861,
    -3px 6px 0 #464952,
    -4px 8px 0 #383a42,
    -5px 10px 0 #282a30,
    -6px 12px 0 #1b1c20,
    -7px 14px 0 #111114,
    -35px 45px 60px rgba(12, 35, 64, 0.35);
  overflow: hidden;
  z-index: 2;
  transform: perspective(1200px) rotateY(26deg) rotateX(4deg) rotateZ(-2deg);
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.6s ease;
}

.phone-mockup-premium::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0) 100%);
  transform: rotate(30deg);
  pointer-events: none;
  z-index: 4;
}

.phone-mockup-premium:hover {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg) rotateZ(0deg) translateY(-10px);
  box-shadow:
    0 0 0 3px #555861,
    0 30px 60px rgba(12, 35, 64, 0.25);
}

.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 28px;
  background-color: #000;
  border-radius: 20px;
  z-index: 3;
  box-shadow: inset 0 -1px 2px rgba(255,255,255,0.1);
}

.phone-screen-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.social-action {
  text-align: center;
  z-index: 3;
}

.social-icons-wrapper {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.social-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #ffffff;
  color: var(--color-primario);
  border: 1px solid rgba(12, 35, 64, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 5px 15px rgba(12, 35, 64, 0.04);
}

.social-icon-link:hover {
  background-color: var(--color-secundario);
  color: var(--color-texto-oscuro);
  border-color: var(--color-secundario);
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(253, 196, 0, 0.3);
}

@media (max-width: 992px) {
  .social-grid {
    grid-template-columns: 1fr !important;
    text-align: center;
    gap: 60px;
  }
  .social-text-col {
    align-items: center;
    text-align: center !important;
    order: -1;
  }
  .social-body-elevated {
    padding-left: 0;
    border-left: none;
  }
  .editorial-badge {
    padding-left: 0;
  }
  .editorial-badge::before {
    display: none;
  }
  .social-title-elevated .text-highlight {
    margin-left: 0;
  }
}

/* =========================================
16. SECCIÓN GARANTÍA CINEMATOGRÁFICA (CLEAN & PREMIUM)
========================================= */
.cine-section {
  position: relative;
  width: 100%;
  height: 600vh;
  z-index: 10;
  background: radial-gradient(circle at center, #0c2340 0%, #050f1a 100%);
  color: var(--color-texto-claro);
  box-shadow: 0 -30px 60px rgba(0,0,0,0.4);
}

.cine-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cine-bg-dark {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, #081526 0%, #02060d 100%);
  z-index: 0;
}

.cine-atmos {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: opacity;
}

.glow-top-blue { position: absolute; top: -20%; left: -10%; width: 60vw; height: 60vw; background: var(--color-primario); border-radius: 50%; filter: blur(150px); opacity: 0.15; }
.glow-bottom-yellow { position: absolute; bottom: -20%; right: -10%; width: 50vw; height: 50vw; background: var(--color-secundario); border-radius: 50%; filter: blur(150px); opacity: 0.08; }
.glow-center-cold { position: absolute; width: 60vw; height: 60vw; background: #0c2340; border-radius: 50%; filter: blur(150px); opacity: 0.5; }
.glow-center-blue { position: absolute; width: 50vw; height: 50vw; background: var(--color-primario); border-radius: 50%; filter: blur(150px); opacity: 0.15; }
.glow-center-yellow { position: absolute; width: 50vw; height: 50vw; background: var(--color-secundario); border-radius: 50%; filter: blur(150px); opacity: 0.12; }

.opacity-0 { opacity: 0; }
.scale-125 { transform: scale(1.15); }
.translate-y-24 { transform: translateY(4rem); }

.cine-dots {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 50;
}
.cine-dot {
  width: 4px;
  height: 32px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.2);
  will-change: transform, background-color;
}

.cine-scene {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  width: 100%;
  max-width: 1200px;
  z-index: 10;
  will-change: transform, opacity, filter;
  text-align: center;
}

.cine-title {
  font-family: 'Gotham', sans-serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0;
  text-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.cine-subtitle {
  font-family: 'Gotham', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 2.2rem);
  font-weight: 500;
  line-height: 1.4;
  color: #cbd5e1;
  margin: 24px 0 0 0;
}

.text-secundario { color: var(--color-secundario); }
.text-red { color: #ef4444; }
.text-primario-light { color: #38bdf8; }

.glitch-watermark {
  position: absolute;
  font-family: 'Gotham', sans-serif;
  font-size: clamp(10rem, 25vw, 25rem);
  font-weight: 900;
  color: #ef4444;
  z-index: -1;
  line-height: 1;
  user-select: none;
  opacity: 0.03;
}

/* =========================================
BLINDAJE DE CAPAS Y ESTILOS GLOBALES
========================================= */
.text-highlight {
  font-style: italic;
  color: var(--color-primario);
  font-weight: 300;
}

/* =========================================
17. SECCIÓN FAQS INTELIGENTES (PREMIUM DARK UI)
========================================= */
.faq-premium-section {
  position: relative;
  z-index: 10;
  padding: 140px 0 140px 0;   /* Aumentado a 140px abajo para dar un respiro premium */
  background-color: var(--color-texto-oscuro);
  border-radius: 60px 60px 0 0;
  box-shadow: 0 -30px 60px rgba(0, 0, 0, 0.4);
}

.faq-header {
  margin-bottom: 80px;
}

.faq-main-title {
  font-family: 'Gotham', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--color-texto-claro);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 0;
}

.faq-premium-section .text-highlight {
  color: var(--color-secundario) !important;
  font-style: italic;
  font-weight: 300;
}

.faq-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
}

.faq-sticky-menu {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-sidebar-title {
  font-family: 'Gotham', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
  padding-left: 20px;
}

.faq-cluster-btn {
  text-align: left;
  background: transparent;
  border: none;
  padding: 18px 20px;
  font-family: 'Gotham', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  border-left: 3px solid transparent;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius: 0 8px 8px 0;
}

.faq-cluster-btn:hover {
  color: var(--color-texto-claro);
  background-color: rgba(255, 255, 255, 0.05);
}

.faq-cluster-btn.active {
  color: var(--color-texto-claro);
  border-left-color: var(--color-secundario);
  background-color: rgba(255, 255, 255, 0.08);
  font-weight: 700;
}

.faq-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: fadeInFaqPremium 0.6s ease forwards;
}

.faq-group.hidden {
  display: none;
}

@media (max-width: 992px) {
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .faq-sticky-menu { position: relative; top: 0; }
}

@keyframes fadeInFaqPremium {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.02);
  overflow: hidden;
  transition: all 0.4s ease;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 28px 35px;
  font-family: 'Gotham', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-texto-claro);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--color-secundario);
}

.faq-icon-premium {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-left: 25px;
}

.faq-icon-premium::before, .faq-icon-premium::after {
  content: '';
  position: absolute;
  background-color: var(--color-texto-claro);
  transition: transform 0.3s ease;
}

.faq-icon-premium::before { top: 10px; left: 0; width: 22px; height: 1px; }
.faq-icon-premium::after { top: 0; left: 10px; width: 1px; height: 22px; }

.faq-item.active .faq-icon-premium::after { transform: rotate(90deg); opacity: 0; }
.faq-item.active .faq-question { color: var(--color-secundario); border-bottom: 1px solid rgba(255, 255, 255, 0.08); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-answer-inner {
  padding: 0 35px 35px 35px;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Gotham', sans-serif;
  font-weight: 300;
  font-size: 1.1rem;
  line-height: 1.8;
}

.faq-answer-inner strong {
  font-weight: 700;
  color: #ffffff;
}

/* =========================================
18. SECCIÓN CIERRE WHATSAPP (DISEÑO INMERSIVO H2H)
========================================= */
.cta-final-immersive {
  position: relative;
  z-index: 10;
  padding: 120px 0 140px 0;   /* Aumentado a 120px arriba para distanciarlo del acordeón */
  background-color: var(--color-texto-oscuro);
  color: var(--color-texto-claro);
  overflow: hidden;
  border-top: none;
  border-radius: 0;
  box-shadow: none;
}

/* Luces de profundidad */
.cta-glow-left {
  position: absolute;
  top: -30%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: var(--color-primario);
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.3;
  pointer-events: none;
}
.cta-glow-right {
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 40vw;
  height: 40vw;
  background: var(--color-secundario);
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.1;
  pointer-events: none;
}

.cta-final-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.cta-final-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.cta-final-title {
  font-family: 'Gotham', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 25px;
  color: #ffffff;
}

.cta-final-desc {
  font-family: 'Gotham', sans-serif;
  font-weight: 300;
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 35px;
  max-width: 550px;
}

.cta-final-desc strong {
  font-weight: 700;
  color: #ffffff;
}

.cta-trust-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.trust-tag {
  font-family: 'Gotham', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-secundario);
  padding: 8px 16px;
  border: 1px solid rgba(253, 196, 0, 0.3);
  border-radius: 50px;
  background: rgba(253, 196, 0, 0.05);
}

.cta-final-action {
  display: flex;
  justify-content: flex-end;
}

.whatsapp-massive-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 40px;
  border-radius: 24px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  width: 100%;
  max-width: 480px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.whatsapp-massive-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #25D366;
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(37, 211, 102, 0.15);
}

.wa-icon-ring {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: #25D366;
  color: #ffffff;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.4s ease;
}

.whatsapp-massive-card:hover .wa-icon-ring {
  transform: scale(1.1) rotate(10deg);
}

.wa-text-group {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.wa-title {
  font-family: 'Gotham', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 5px;
}

.wa-subtitle {
  font-family: 'Gotham', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
}

.wa-arrow {
  color: #ffffff;
  opacity: 0.3;
  transition: all 0.4s ease;
}

.whatsapp-massive-card:hover .wa-arrow {
  opacity: 1;
  color: #25D366;
  transform: translateX(5px);
}

@media (max-width: 992px) {
  .cta-final-immersive { padding: 100px 0; text-align: center; }
  .cta-final-grid { grid-template-columns: 1fr; gap: 60px; }
  .cta-final-copy { align-items: center; }
  .cta-trust-tags { justify-content: center; }
  .whatsapp-massive-card { flex-direction: column; text-align: center; padding: 40px 20px; gap: 20px; }
  .wa-arrow { transform: rotate(90deg); }
  .whatsapp-massive-card:hover .wa-arrow { transform: rotate(90deg) translateY(5px); }
}

/* =========================================
13. FOOTER
========================================= */
.main-footer {
  position: relative;
  z-index: 10;
  background-color: var(--color-texto-oscuro);
  color: rgba(255, 255, 255, 0.7);
  padding: 30px 0;
  border-top: 4px solid var(--color-secundario);
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  text-align: center;
}

.main-footer p {
  font-size: 0.95rem;
}

.main-footer nav {
  display: flex;
  gap: 20px;
}

.main-footer nav a {
  color: var(--color-texto-claro);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transicion);
}

.main-footer nav a:hover {
  color: var(--color-secundario);
}

@media (min-width: 768px) {
  .footer-container { flex-direction: row; justify-content: space-between; }
}

/* =========================================
19. MICROMOVIMIENTO DEL ISOTIPO FLOTANTE EN EL HERO
========================================= */
.brand-word-wrapper {
  position: relative;
  display: inline-block;
}

.title-floating-icon {
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  height: auto;
  pointer-events: none;
  user-select: none;
  will-change: transform;
  animation: premiumFloat 4s ease-in-out infinite;
}

@media (max-width: 768px) {
  .title-floating-icon {
    width: 140px;
    top: -26px;
  }
}

@keyframes premiumFloat {
  0% { transform: translate(-50%, 0px) rotate(0deg); }
  50% { transform: translate(-50%, -6px) rotate(1deg); }
  100% { transform: translate(-50%, 0px) rotate(0deg); }
}

@media (max-width: 768px) {
  .title-floating-icon {
    width: 22px;
    top: -22px;
  }
}