/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #050E3A;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

#preloaderLogo {
  width: 180px;
  height: auto;
  animation: logoPulse 2s infinite ease-in-out;
}

.loader-line {
  width: 120px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.loader-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #8EE1FF, transparent);
  animation: loading 1.5s infinite;
}

@keyframes logoPulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.05); opacity: 1; }
}

@keyframes loading {
  0% { left: -100%; }
  100% { left: 100%; }
}

/*
  Inspirado en el arte entregado (azules, acento rojo y geometría).
  Tipografías del .ai: Gelion (Regular/SemiBold/Medium/Bold/Light).
  Si tienes Gelion con licencia web, reemplaza Inter por Gelion.
*/

:root {
  --bg: #2E45EF;
  /* Main Blue - 2E45EF (User Req) */
  --bg-deep: #050E3A;
  /* Dark Blue - 050E3A (User Req) */
  --sky: #90DDFD;
  /* Keeping for subtle gradients if needed, else replace */
  --paper: #EEF6FF;
  /* Light Blue/White - EEF6FF (User Req) */
  --accent: #8EE1FF;
  /* Cyan - 8EE1FF (User Req) - Replaces global red */

  --red-event: #DF3756;
  /* SPECIAL: Only for Online Badge */

  --cyan-bright: #8EE1FF;
  /* Matches accent now */
  --muted: rgba(236, 242, 252, .78);
  --text: #EEF6FF;
  /* Matches paper */
  --shadow: 0 14px 40px rgba(0, 0, 0, .22);
  --radius: 18px;
  --radius-lg: 28px;
  --max: 1000px;
  /* Reduced from 1120px per user request */
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #FFFFFF;
  color: #050E3A;
  line-height: 1.35;
  font-weight: 300;
  overflow-x: hidden;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}


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

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.skip {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 10px 12px;
  background: #000;
  border-radius: 10px;
  z-index: 9999;
}

/* Topbar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(5, 14, 58, .92);
  border-bottom: 1px solid rgba(236, 242, 252, .12);
}

.topbar__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(236, 242, 252, .92);
  color: var(--bg);
  border-radius: 10px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.0;
}

.brand__name {
  font-weight: 700;
  font-size: 14px;
  opacity: .95;
}

.nav {
  margin-left: auto;
  display: flex;
  gap: 13px;
}

.nav a {
  text-decoration: none;
  opacity: .9;
  font-weight: 400;
  color: var(--paper);
  /* Force white */
  font-size: 13px;
  /* CONTROL TAMAÑO FUENTE MENU */
}

.nav a:hover {
  opacity: 1;
  color: var(--cyan-bright);
}

.topbar__cta {
  display: flex;
  gap: 10px;
  margin-left: 10px;
}

/* INDEPENDENT HEADER BUTTONS - Full Isolation */
.topbar__cta .btn {
  /* Layout & Box Model (Copied from/Independent of global .btn) */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;

  /* Header Specific Styles */
  border-radius: 12px;
  /* Unique radius */
  padding: 10px 16px;
  /* Unique padding */
  font-weight: 500 !important;
  /* Medium weight */
  font-size: 14px;
  /* CONTROL TAMAÑO FUENTE BOTONES */
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

/* Header Primary Button (Independent) */
.topbar__cta .btn--primary {
  background: var(--cyan-bright);
  color: var(--bg-deep);
  border-color: transparent;
}

.topbar__cta .btn--primary:hover {
  filter: brightness(1.1);
  box-shadow: 0 10px 22px rgba(142, 225, 255, .4);
}

/* Header Ghost Button (Independent) */
.topbar__cta .btn--ghost {
  background: #FFFFFF;
  /* White background */
  color: #2E45EF;
  /* Specific Blue Text */
  border-color: #FFFFFF;
  /* White border to match bg */
  box-shadow: none;
}

.topbar__cta .btn--ghost:hover {
  background: #F0F4FF;
  /* Slight blue tint on hover */
  color: #2E45EF;
  border-color: #F0F4FF;
}

.hamburger {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(236, 242, 252, .2);
  border-radius: 12px;
  background: rgba(5, 14, 58, .14);
  color: var(--text);
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--paper);
  margin: 7px 10px;
  border-radius: 10px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 14px;
  padding: 11px 14px;
  font-weight: 400;
  /* Reverted to original global style */
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn--lg {
  padding: 13px 18px;
  border-radius: 16px;
}

.btn--primary {
  background: var(--accent);
  color: var(--bg-deep);
  /* Dark text for contrast on light cyan button */
  /*box-shadow: 0 10px 22px rgba(142, 225, 255, .28); */
}

.btn--primary:hover {
  filter: brightness(1.04);
}

.btn--ghost {
  background: rgba(5, 14, 58, .18);
  border-color: rgba(236, 242, 252, .18);
}

.btn--ghost:hover {
  background: rgba(5, 14, 58, .26);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #A22C4B, #09434A);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  padding: 52px 0 34px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: center;
}

.hero__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: rgba(5, 14, 58, .35);
  /* Removed min-height: 420px per user request to make video smaller */
  max-width: 350px;
  /* Constrain width for vertical video feeling */
  margin: 0 auto;
  /* Center in col */
}

.hero__visual img,
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Changed to contain so entire video is visible */
  display: block;
  /* Removed transform: scale(1.02) */
}

/* Video Toggle Button */
.video-toggle {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 20;
  background: #FFFFFF;
  color: #050E3A;
  border: none;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  opacity: 0.9;
}

.video-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  opacity: 1;
}

.hero__content .eyebrow {
  margin: 0 0 6px;
  font-size: 13px;
  /* CONTROL HERO: EYEBROW SIZE */
  letter-spacing: .2px;
  opacity: .95;
  color: var(--cyan-bright);
  /* CONTROL HERO: EYEBROW COLOR */
  font-weight: 500;
  /* CONTROL HERO: EYEBROW WEIGHT */
}

.h1 {
  margin: 0;
  font-size: clamp(25px, 5.2vw, 40px);
  /* CONTROL HERO: TITULO SIZE */
  letter-spacing: -1.5px;
  line-height: .92;
  color: #FFFFFF;
  /* CONTROL HERO: TITULO COLOR */
  font-weight: 700;
  /* CONTROL HERO: TITULO WEIGHT */
}

.h1__pro {
  opacity: .95;
}

.format {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px 0 18px;
}

.format__label {
  font-weight: 400;
  /* CONTROL HERO: FORMATO WEIGHT - Reduced from 900 */
  letter-spacing: .8px;
  opacity: .9;
  color: var(--paper);
  /* CONTROL HERO: FORMATO COLOR */
  font-size: 14px;
  /* CONTROL HERO: FORMATO SIZE */
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red-event);
  /* Only place red is used */
  padding: 8px 14px;
  border-radius: 12px;
  font-weight: 400;
  letter-spacing: .6px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--paper);
}

/* Hero Lead Text - Isolated */
.hero__content .lead {
  margin: 0 0 18px;
  font-size: 15px;
  /* CONTROL HERO: DESCRIPCION SIZE */
  color: var(--muted);
  /* CONTROL HERO: DESCRIPCION COLOR */
  line-height: 1.5;
  /* CONTROL HERO: DESCRIPCION HEIGHT */
  font-weight: 300;
  /* CONTROL HERO: DESCRIPCION WEIGHT */
  max-width: 52ch;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 12px;
}

/* HERO BUTTONS - ISOLATED */
.hero__actions .btn {
  font-size: 15px;
  /* CONTROL HERO: BOTONES SIZE */
  font-weight: 300;
  /* CONTROL HERO: BOTONES WEIGHT */
}

/* Hero Primary Button (Quiero información) */
.hero__actions .btn--primary {
  background: #050E3A;
  /* CONTROL HERO: BTN-PRIMARY BG */
  color: #EEF6FF;
  /* CONTROL HERO: BTN-PRIMARY TEXT */
  border: 1px solid #050E3A;
}

.hero__actions .btn--primary:hover {
  background: #08144b;
}

/* Hero Ghost Button (Ver beneficios) */
.hero__actions .btn--ghost {
  background: #EEF6FF;
  /* CONTROL HERO: BTN-GHOST BG */
  color: #050E3A;
  /* CONTROL HERO: BTN-GHOST TEXT */
  border: 1px solid #EEF6FF;
}

.hero__actions .btn--ghost:hover {
  background: #dbe9ff;
}

.proof {
  margin: 16px 0 0;
  padding-left: 18px;
  color: rgba(236, 242, 252, .88);
}

.proof li {
  margin: 6px 0;
}

/* Sections */
.section {
  padding: 56px 0;
}

#lo-que-te-llevas {
  background-color: #FFFFFF;
  /* CONTROL BACKGROUND */
  position: relative;
  /* Context for image */
  padding-bottom: 80px;
  /* CONTROL SPACING BOTTOM (Was margin) */
  /* This ensures white bg covers the space and image sits at true bottom */
  text-align: center;
  /* Force center for all children unless overridden */
}



#lo-que-te-llevas .h2 {
  color: #050E3A;
  /* CONTROL TITULO SECCION COLOR */
  font-size: 25px;
  /* CONTROL TITULO SECCION SIZE */
  font-weight: 400;
  /* CONTROL TITULO SECCION WEIGHT */
}

#lo-que-te-llevas .subtitle {
  color: #050E3A;
  /* CONTROL SUBTITULO SECCION COLOR */
  font-size: 15px;
  /* CONTROL SUBTITULO SECCION SIZE */
  font-weight: 400;
  /* CONTROL SUBTITULO SECCION WEIGHT */
  margin-top: 10px;
}

/* Experiencia Personalizada (Dark + 2 Cols) */
#experiencia-personalizada {
  background-color: #050E3A;
  /* Solid Dark Blue */
  color: #FFFFFF;
}

#experiencia-personalizada .schedule {
  /* Overlap Effect: Handled by Grid Area now */
  margin-left: 0;
  /* Reset margin */
  position: relative;
  z-index: 10;
  margin-top: 60px;
  /* Sizing: 65% of container */
  width: 60%;
  grid-area: stack;
  /* Occupy same cell */
  justify-self: end;
  /* Align to Right */

  /* Schedule Container: Transparent */
  background: transparent;
  padding: 0;
  border: none;
  box-shadow: none;
  backdrop-filter: none;

}

/* User Request: Blue Cards - Compact */
.schedule__item {
  background-color: rgba(9, 67, 74, 0.8);
  /* Green/Teal with 80% opacity */
  width: 100%;
  padding: 10px;
  /* Max Compact: was 12px */
  border-radius: 12px;
  margin-bottom: 0;
  /* Let flex gap handle spacing strictly */
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 5px;
  /* Compact gap */
}

.schedule__header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 5px;
}

.schedule__info {
  display: flex;
  flex-direction: column;
}

.schedule__title {
  font-weight: 700;
  font-size: 1.05em;
  color: #FFFFFF;
}

.schedule__date {
  font-size: 0.9em;
  opacity: 0.85;
  font-weight: 400;
  color: #A0C4FF;
  /* Light Blue for contrast/subtitle */
  margin-top: 2px;
}

#experiencia-personalizada .h2 {
  color: #FFFFFF;
  opacity: 0.9;
  font-size: 25px;
  /* User Request */
  font-weight: 400;
  /* User Request */
  text-align: left;
  /* Reset align */
}

#experiencia-personalizada .muted {
  color: #FFFFFF;
  opacity: 0.9;
  font-size: 15px;
  /* User Request */
  font-weight: 400;
  /* User Request */
  text-align: left;
  /* Reset align */
}

/* EXPERIENCIA LAYOUT: STACKED GRID */
/* EXPERIENCIA LAYOUT: STACKED GRID */
.experiencia__layout {
  display: grid;
  grid-template-areas: "stack";
  /* Single area for overlap */
  align-items: start;
  /* CRITICAL for sticky: Start alignment allows scrolling */
  margin-top: 30px;
  /* Removed min-height: 150vh to fix "hueco" */
}

.experiencia__visual {
  grid-area: stack;
  /* Occupy same cell */
  width: 60%;
  /* User Request: 60% width */
  justify-self: start;
  /* Align to Left */

  /* User Request: Fixed/Sticky Scroll Effect */
  position: sticky;
  top: 100px;
  /* Adjusted top */
  height: fit-content;
  z-index: 1;
}

.experiencia__visual img {
  width: 100%;
  border-radius: 0;
  box-shadow: none;
  border: none;
  display: block;
}

@media (max-width: 900px) {

  /* Force ID specificity to override any desktop grid rules */
  #experiencia-personalizada .experiencia__layout {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
    margin-top: 0 !important;
    grid-template-columns: none !important;
    /* Reset grid */
  }

  /* User Request: Remove gap (Hide image on mobile) */
  #experiencia-personalizada .experiencia__visual {
    display: none !important;
  }

  #experiencia-personalizada .schedule {
    width: 100% !important;
    max-width: 350px !important;
    margin: 0 auto !important;
    /* Force Center */
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
    /* User Request: 10px gap */
  }

  #experiencia-personalizada .schedule__item {
    width: 100% !important;
    margin: 0 !important;
  }

  .schedule__item {
    width: 100%;
    /* Fill the limited max-width */
    margin: 0;
    /* Reset any margins */
  }
}

.section--alt {
  background-color: #050E3A;
  /* CONTROL BACKGROUND: Solid Dark Blue (Strict Palette) */
  color: #FFFFFF;
  /* High contrast text */
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section__head {
  margin-bottom: 22px;
}

.h2 {
  margin: 0 0 8px;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.6px;
}

.muted {
  margin: 0;
  color: var(--muted);
}

/* Cards */
/* Benefits Layout */
.text-center {
  text-align: center;
}

.lo-que-te-llevas__layout {
  position: relative;
  /* Switch to relative for absolute image positioning */
  margin-top: 8%;
  /* Keep top margin */
  margin-bottom: 0;
  /* Reset bottom margin to avoid gap */
}

.lo-que-te-llevas__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
  z-index: 2;
  /* Keep cards on top */
  max-width: 68%;
  /* CONTROL GRID WIDTH: Wider cards (was 60%) */
  margin-bottom: 0;
  /* Reset margin, handled by container padding */
}

.lo-que-te-llevas__visual {
  position: absolute;
  /* CONTROL IMAGEN POSICION */
  bottom: -80px;
  /* CONTROL: Push down to cover 80px padding gap */
  right: -5%;
  /* Ajuste horizontal */
  width: 50%;
  /* CONTROL IMAGEN SIZE (% del contenedor) */
  z-index: 1;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
  /* Click-through */
}

.lo-que-te-llevas__visual img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.15);
  /* CONTROL IMAGEN ZOOM: Ajuste medio (1.15) */
  transform-origin: bottom center;
}

@media (max-width: 640px) {
  .lo-que-te-llevas__layout {
    margin-top: 0;
  }

  .lo-que-te-llevas__cards {
    max-width: 100%;
    width: 100%;
    /* El carrusel siempre ocupa todo el ancho en móvil */
  }

  .lo-que-te-llevas__visual {
    display: none;
    /* Ocultar imagen decorativa en móvil */
  }
}

/* Goals Header: línea izquierda decorativa */
.goals-header--bordered {
  border-left: 4px solid #09434A;
  padding-left: 20px;
}

/* En mobile se quita la línea para que no se vea */
@media (max-width: 768px) {
  .goals-header--bordered {
    border-left: none !important;
    border: none !important;
    padding-left: 0 !important;
  }
}

/* Botones del carrusel visibles en mobile */
@media (max-width: 640px) {
  #btnPrevVideo {
    left: 5px !important;
  }
  #btnNextVideo {
    right: 5px !important;
  }
}

/* Card Styles */
.card {
  padding: 24px;
  border-radius: var(--radius);
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s ease;
  border: none;
  /* Reset border */
}

.card:hover {
  transform: translateY(-4px);
}

.card__icon {
  width: 40px;
  /* CONTROL ICONOS SIZE */
  height: 40px;
  /* CONTROL ICONOS SIZE */
  object-fit: contain;
  margin-bottom: 8px;
}

.card h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  /* Bold titles */
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.card p {
  margin-top: 2%;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

/* Card Variants (Strict Palette) */
.card--blue {
  background: rgba(46, 69, 239, 0.85);
  /* 85% Opacity */
}

.card--dark {
  background: rgba(5, 14, 58, 0.85);
  /* 85% Opacity */
}

.card--cyan {
  background: rgba(142, 225, 255, 0.85);
  /* 85% Opacity */
  /* #8EE1FF */
  color: var(--bg-deep);
  /* Dark text for contrast */
}

.card--cyan p {
  color: rgba(5, 14, 58, 0.85);
  /* Darker paragraph for contrast */
}

/* User Requested Background Images */
/* User Requested Background Images */
/* User Requested Background Images */
.card--bg-1,
.card--bg-2,
.card--bg-3,
.card--bg-4 {
  background-size: cover !important;
  background-position: top left !important;
  background-repeat: no-repeat !important;
  text-align: left;
  /* Align text to left as per design */
  align-items: flex-start;
  /* Align flex items to start */
  padding-right: 20%;
  /* Reduced from 20% to bring text very close */
  justify-content: center;
  /* Vertically center content if needed, or flex-start */
  padding-top: 5%;
  /* Reduced from 80px per user request */
  gap: 4px;
  /* Reduced gap between title and text (overrides default 12px) */
  height: 231px;
  /* User Requested Height */
  width: 100%;
  /* Fill grid column */
  max-width: 474px;
  /* User Requested Width target (approx) */
}

/* Specific Backgrounds */
.card--bg-1 {
  background-image: url('assets/fnd_1.png') !important;
  color: #FFFFFF;
}

.card--bg-2 {
  background-image: url('assets/fnd_2.png') !important;
  color: #FFFFFF;
}

.card--bg-3 {
  background-image: url('assets/fnd_3.png') !important;
  color: #050E3A;
  /* Dark text for Cyan background */
}

/* Ensure paragraph text is also dark for Card 3 */
.card--bg-3 p {
  color: rgba(5, 14, 58, 0.9);
}

.card--bg-4 {
  background-image: url('assets/fnd_4.png') !important;
  color: #FFFFFF;
}

/* --- CONTROL SPECIFIC CARD OVERRIDES (User Request) --- */

/* All Benefits Cards: Shadow & Sharpness */
.lo-que-te-llevas__cards article {
  box-shadow: 0 12px 30px rgba(5, 14, 58, 0.15);
  /* Shadow for depth */
  border: 1px solid rgba(255, 255, 255, 0.3);
  /* "Iluminación" / Sharp edge */
  backdrop-filter: blur(5px);
  /* Premium feel */
}

/* Card 1: Solid Blue */
.lo-que-te-llevas__cards article:nth-child(1) {
  background: rgb(46, 69, 239);
  /* Solid */
}

/* Card 3: Solid Cyan */
.lo-que-te-llevas__cards article:nth-child(3) {
  background: rgb(142, 225, 255);
  /* Solid */
}

/* Card 2 & 4: Icons Mimetizados (0.85 opacity) */
.lo-que-te-llevas__cards article:nth-child(2) .card__icon,
.lo-que-te-llevas__cards article:nth-child(4) .card__icon {
  opacity: 0.85;
  /* Blend with transparent background */
}

/* Pricing Banner - Special Request */
.pricing__banner {
  background-color: #050E3A;
  /* Dark Blue */
  color: #fff;
  padding: 30px 40px;
  border-radius: 12px 100px 100px 12px;
  /* Unique shape based on visual cue: Rounded right side */
  margin: 30px auto;
  max-width: 750px;
  text-align: left;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(5, 14, 58, 0.15);
}

.pricing__banner-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.pricing__banner h3 {
  margin: 0 0 8px 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.pricing__banner .badge {
  background-color: #DF3756;
  /* Red Event */
  font-size: 0.5em;
  padding: 6px 12px;
  border-radius: 6px;
  vertical-align: middle;
  transform: translateY(-2px);
  letter-spacing: 1px;
}

.pricing__banner p {
  margin: 0;
  font-size: 15px;
  font-weight: 300;
  opacity: 0.95;
}

@media (max-width: 768px) {
  .pricing__banner {
    /* border-radius: 20px; Removed to keep desktop asymmetric shape */
    padding: 24px;
    text-align: center;
    flex-direction: column;
  }

  .pricing__banner h3 {
    justify-content: center;
    font-size: 24px;
  }
}

/* .card--cyan .card__icon filter removed */

/* Responsive */
@media (max-width: 900px) {
  .benefits__layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .benefits__visual {
    order: -1;
    /* Image on top on mobile? Or bottom? */
    display: none;
    /* Hide on mobile if too busy, or keep */
  }
}

/* Steps */
.steps {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.step {
  display: flex;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(236, 242, 252, .08);
  border: 1px solid rgba(236, 242, 252, .12);
}

.step__num {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #A22C4B;
  /* User Request: Solid Red */
  color: #FFFFFF;
  font-weight: 900;
  font-size: 16px;
  /* Explicit base size */
}

/* User Request: Make camera icon same visual size as numbers */
.schedule__item--highlight .step__num {
  font-size: 28px !important;
  /* Larger for emoji */
  line-height: 1;
  /* Prevent vertical shift */
  padding-bottom: 2px;
  /* Fine tune optical center */
}

.step__body h3 {
  margin: 0 0 6px;
}

.step__body p {
  margin: 0;
  color: var(--muted);
}

/* Accordion */
.accordion,
.faq {
  display: grid;
  gap: 10px;
}

.acc__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  text-align: left;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(236, 242, 252, .14);
  background: rgba(236, 242, 252, .08);
  color: var(--text);
  font-weight: 900;
  cursor: pointer;
}

.acc__panel {
  display: none;
  padding: 0 16px 14px;
  color: var(--muted);
}

.acc__panel ul {
  margin: 10px 0 0;
  padding-left: 18px;
}

.acc__panel p {
  margin: 10px 0 0;
}

.acc__trigger[aria-expanded="true"]+.acc__panel {
  display: block;
}

.acc__icon {
  font-size: 18px;
  opacity: .85;
}

/* Schedule (Static Text) */
/* .schedule rule moved/merged into #experiencia-personalizada .schedule to avoid conflicts */





/* Specific highlight class no longer needed (merged into base), but keeping cleanup if needed */
.schedule__item--highlight {
  /* Inherits base style now */
  margin-top: 0;
  /* Reset extra margin */
}

/* End of schedule adjustments */

.schedule__header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 5px;
}

.schedule__info {
  display: flex;
  flex-direction: column;
}

.schedule__title {
  font-weight: 700;
  font-size: 1.05em;
  color: #FFFFFF;
}

.schedule__date {
  font-size: 0.9em;
  opacity: 0.85;
  font-weight: 400;
  color: #A0C4FF;
  /* Light Blue for contrast/subtitle */
  margin-top: 2px;
}

.schedule__details {
  margin: 0;
  padding-left: 54px;
  /* Align with text start (42px icon + 12px gap) */
  color: var(--muted);
  font-size: 15px;
  /* User Request */
  font-weight: 400;
  /* User Request */
}

.schedule__details li {
  margin-bottom: 6px;
}


/* CTA + Form */
.cta {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  align-items: start;
}

.bullets {
  margin: 14px 0 0;
  padding-left: 18px;
  color: rgba(236, 242, 252, .9);
}

.form {
  background: rgba(5, 14, 58, .38);
  border: 1px solid rgba(236, 242, 252, .14);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow);
}

label {
  display: block;
  font-weight: 800;
  margin: 10px 0 8px;
}

input {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(236, 242, 252, .18);
  background: rgba(236, 242, 252, .08);
  color: var(--paper);
  outline: none;
}

input::placeholder {
  color: rgba(236, 242, 252, .55);
}

input:focus {
  border-color: rgba(144, 221, 253, .55);
  box-shadow: 0 0 0 4px rgba(144, 221, 253, .16);
}

.fineprint {
  margin: 10px 0 0;
  font-size: 13px;
  color: rgba(236, 242, 252, .72);
}

.form__toast {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(144, 221, 253, .18);
  border: 1px solid rgba(144, 221, 253, .30);
  color: rgba(236, 242, 252, .92);
}

/* --- TESTIMONIALS SECTION --- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.quote {
  margin: 0;
  background: rgba(46, 69, 239, 0.1);
  /* Very subtle blue glass */
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 16px;
  backdrop-filter: blur(5px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  transition: transform 0.3s ease;
}

.quote:hover {
  transform: translateY(-5px);
  background: rgba(46, 69, 239, 0.2);
}

.quote blockquote {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
}

.quote figcaption {
  font-size: 14px;
  font-weight: 700;
  /* Bold Name */
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 900px) {
  .testimonials {
    grid-template-columns: 1fr;
  }
}

/* --- ENTREGABLES SECTION --- */
#entregables {
  background-color: #2E45EF;
  /* User Request: Blue Background */
  color: #FFFFFF;
  /* High Contrast Text for Section */
  overflow: hidden;
  /* Ensure sticky/overlap doesnt break layout bounds */
  padding-bottom: 0;
  /* User Request: Pegado al de abajo (No gap) */
  padding-top: 40px;
  /* User Request: Borra este espacio (Gap removed) */
}

/* ... grid layout omitted ... */

#entregables .h2 {
  color: #FFFFFF;
  /* White Title on Blue BG */
  font-size: 25px;
  /* User Request: 25px */
  font-weight: 400;
  /* User Request: 400 Light */
  margin-bottom: 5px;
  /* Standardize gap */
}

.entregables__subtitle {
  color: #FFFFFF;
  /* White Subtitle on Blue BG */
  opacity: 0.9;
  font-size: 16px;
  font-weight: 400;
  margin-top: 0;
  /* Remove default P margin to close gap */
  margin-bottom: 25px;
  /* Space before card */
}

.entregables__card {
  background-color: #8EE1FF;
  /* User Request: Cyan Card */
  color: #050E3A;
  /* User Request: Dark Text */
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  width: 100%;
}

.entregables__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.entregables__list li {
  font-size: 15px;
  /* User Request: 15px */
  font-weight: 400;
  /* User Request: 400 */
  line-height: 1.6;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(5, 14, 58, 0.1);
  /* Dark separate for Cyan card */
}

.entregables__layout {
  display: grid;
  grid-template-areas: "stack";
  /* Single area for overlap */
  /* align-items: end; REMOVED to decouple items */
  margin-top: 0;
  /* User Request: Remove extra margin */
  min-height: 600px;
  /* Ensure enough height for the split */
}

.entregables__visual {
  grid-area: stack;
  width: 50%;
  /* User Edit: 50% */
  justify-self: end;
  /* Swapped to Right */
  align-self: end;
  /* Push Image to Bottom */
  margin-top: 120px;
  /* User Request: Aún más abajo */
  margin-right: -120px;
  /* User Request: Mucho más a la derecha */
  margin-bottom: -4px;
  /* Ensure no pixel gap */
  position: relative;
  z-index: 1;
}

.entregables__visual img {
  width: 60%;
  /* User Request: 20% smaller (was 80%) */
  max-width: 450px;
  /* Constraint */
  display: block;
  position: sticky;
  top: 200px;
  /* Keep sticky behavior */
}


.entregables__content {
  grid-area: stack;
  width: 60%;
  /* Content Width (Left, Overlaps by 10%) */
  justify-self: start;
  /* Swapped to Left */
  align-self: start;
  /* User Request: Card Top (Arriba) */
  margin-left: 5%;
  /* User Request: Un poco más a la derecha */
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.entregables__header {
  text-align: left;
  margin-bottom: 0;
}

#entregables .h2 {
  color: #EEF6FF;
  /* Dark Title */
  font-size: 25px;
  /* User Request: 25px */
  font-weight: 400;
  /* User Request: 400 Light */
  margin-bottom: 5px;
  /* Standardize gap */
}

.entregables__subtitle {
  color: #EEF6FF;
  opacity: 0.75;
  font-size: 16px;
  font-weight: 400;
  margin-top: 0;
  /* Remove default P margin to close gap */
  margin-bottom: 25px;
  /* Space before card */
}

.entregables__card {
  background-color: #8EE1FF;
  /* Vivid Blue */
  color: #050E3A;
  padding: 50px;
  border-radius: 40px 120px 40px 120px;
  /* Asymmetric Curves */
  box-shadow: 0 20px 50px rgba(46, 69, 239, 0.3);
}

.entregables__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* --- ENTREGABLES CV RESPONSIVE REFACTOR --- */
#entregables {
  background-color: #040B2D;
}

.cv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

@media (max-width: 768px) {
  .cv-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.cv-title {
  color: #050E3A;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 15px 0;
  padding-bottom: 10px;
}

.cv-title--blue {
  border-bottom: 2px solid #2E45EF;
}

.cv-title--red {
  border-bottom: 2px solid #A22C4B;
}

.cv-footer {
  text-align: center;
  margin-top: 35px;
  border-top: 2px solid #A22C4B;
  padding-top: 20px;
}

.cv-footer__title {
  color: #A22C4B;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.cv-footer__stats {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.cv-footer__stat {
  font-size: 15px;
  color: #050E3A;
  font-weight: 600;
}

/* --- MAIN NOTE ARTICLE STYLING ISSUES FIX --- */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.reason-card {
  background: #FFFFFF;
  border: 1px solid rgba(5, 14, 58, 0.08);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  text-align: center;
  transition: transform 0.3s ease;
}

.reason-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(5, 14, 58, 0.08);
}

.icon-box {
  width: 60px;
  height: 60px;
  background: #EEF6FF;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
}

.reason-card h3 {
  font-size: 19px;
  color: #050E3A;
  margin-bottom: 15px;
  font-weight: 700;
}

.reason-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.article-hero-img {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.article-meta {
  display: inline-block;
  background: #EEF6FF;
  color: #2E45EF;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.author-box {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 16px;
  padding: 40px;
  margin-top: 60px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.author-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #2E45EF;
  flex-shrink: 0;
}

.tags-container {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background: #f0f4f8;
  color: #5c6ac4;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .reasons-grid {
    grid-template-columns: 1fr;
  }

  .author-box {
    flex-direction: column;
    text-align: center;
  }
}

.entregables__list li {
  font-size: 15px;
  /* User Request: 15px */
  font-weight: 400;
  /* User Request: 400 */
  line-height: 1.6;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(5, 14, 58, 0.15);
  /* User Request: 050E3A (Dark Blue Separator) */
  /* Subtle separator */
}

.entregables__list li:last-child {
  border-bottom: none;
}

.entregables__list strong {
  font-weight: 700;
  font-size: 1.05em;
}

@media (max-width: 900px) {
  .entregables__layout {
    grid-template-areas: "visual" "content";
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* User Request: Hide image on mobile */
  .entregables__visual {
    display: none;
  }



  .entregables__content {
    grid-area: content;
    width: 100%;
    justify-self: center;
    margin-left: 0;
    /* Reset desktop shift */
    margin-bottom: 40px;
    /* User Request: Space at bottom */
  }

  .entregables__card {
    padding: 30px;
    border-radius: 30px;
  }
}

/* Footer */
.footer {
  padding: 24px 0 44px;
  border-top: 1px solid rgba(236, 242, 252, .12);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand--small .brand__mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}




/* --- PRICING SECTION --- */
#inversion {
  background-color: #F6F9FF;
  /* Light Grey/Blue Tint from image */
}

.pricing__header {
  max-width: 800px;
  margin: 0 auto 50px;
}

.pricing__title {
  color: #050E3A;
  /* Dark Base */
  font-weight: 400 !important;
  /* User Request: 400 (Forced) */
  font-size: 25px !important;
  /* User Request: 25px (Forced) */
  line-height: 1.3;
  margin-bottom: 20px;
}

.pricing__title strong {
  font-weight: 400 !important;
  /* User Request: 400 (Forced) */
  display: inline;
}

.pricing__subtitle {
  color: #050E3A;
  font-size: 15px;
  margin-bottom: 20px;
}

.pricing__details {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  text-align: left;
  display: inline-block;
  max-width: 700px;
}

.pricing__details li {
  margin-bottom: 12px;
  color: #050E3A;
  font-size: 15px;
  font-weight: 400;
  position: relative;
  padding-left: 0;
}

.pricing__details strong {
  color: #2E45EF;
  /* Highlight Blue */
  font-weight: 700;
}

.pricing__grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.pricing__card {
  padding: 40px 30px;
  border-radius: 20px;
  color: #FFFFFF;
  text-align: center;
  flex: 1;
  min-width: 280px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.pricing__card:hover {
  transform: translateY(-5px);
}

.pricing__card--blue {
  background-color: #2E45EF;
  /* Main Blue */
}

.pricing__card--dark {
  background-color: #050E3A;
  /* Dark Night */
}

.pricing__label {
  font-size: 15px;
  font-weight: 400;
  opacity: 0.9;
  margin-bottom: 5px;
  display: block;
}

.pricing__price {
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  margin-top: 10px;
}

.pricing__tax {
  display: block;
  font-size: 16px;
  font-weight: 400;
  opacity: 0.8;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .pricing__grid {
    flex-direction: column;
    align-items: center;
  }

  .pricing__card {
    width: 100%;
  }
}

/* Footer */
.footer {
  background-color: #050E3A;
  /* User request */
  color: rgba(255, 255, 255, 0.7);
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer__text {
  margin: 0;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  opacity: 0.8;
}


/* Responsive */
@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .topbar__cta {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    min-height: 340px;
    order: -1;
  }

  .cards {
    grid-template-columns: 1fr 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .testimonials {
    grid-template-columns: 1fr;
  }

  .cta {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
}

/* --- TRANSFORMATION SECTION (Form) --- */
.section--dark-form {
  background-color: #050E3A;
  color: #fff;
  text-align: center;
  padding-bottom: 80px;
}

/* Standardization Rule: Title 25px, Weight 400 */
.section--dark-form .h2 {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  font-size: 25px;
  font-weight: 400;
  margin-bottom: 10px;
}

/* Standardization Rule: Paragraph 15px, Weight 400 */
.section--dark-form .muted {
  font-family: 'Poppins', sans-serif;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 40px;
}

.form-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  text-align: left;
}

.form-card label {
  display: block;
  margin-bottom: 20px;
  color: #050E3A;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  /* Standardized */
  font-size: 15px;
  /* Standardized */
}

.form-card input {
  width: 100%;
  padding: 14px 16px;
  margin-top: 8px;
  border: 1px solid #E0E7FF;
  background: #F8FAFC;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  /* Standardized */
  font-weight: 400;
  color: #050E3A;
  transition: all 0.2s;
}

.form-card input:focus {
  outline: none;
  border-color: #09434A;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(46, 69, 239, 0.1);
}

.form-card .btn {
  width: 100%;
  padding: 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  /* Standardized from 16px */
  font-weight: 400;
  /* Standardized from 700 */
  text-transform: uppercase;
  margin-top: 10px;
  letter-spacing: 0.5px;
}

.form-fineprint {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  /* Keeping small for fineprint, or should it be 15? "El texto en parrafo... es 15px". I'll keep fineprint fine but user can correct if needed. */
  font-weight: 400;
  color: #64748B;
  text-align: center;
  margin-top: 15px;
}


/* --- FINAL CTA SECTION (Brand Blue) --- */
.section--brand-cta {
  background-color: #2E45EF;
  color: #fff;
  padding-top: 80px;
  padding-bottom: 0;
  overflow: hidden;
}

.brand-cta__layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: end;
}

.brand-cta__visual {
  position: relative;
  line-height: 0;
  align-self: end;
}

.brand-cta__visual img {
  width: 100%;
  max-width: 400px;
  display: block;
}

.brand-cta__content {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-bottom: 80px;
  align-self: center;
}

.brand-cta__content p {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 400;
  opacity: 0.9;
  margin-bottom: 5px;
}

/* Standardization Rule: Title 25px, Weight 400 */
.brand-cta__content .h2,
.brand-cta__content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 25px;
  /* Standardized from 42px */
  font-weight: 400;
  /* Standardized */
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
  text-transform: none;
  /* Removing uppercase if set inline */
}

/* Override inline styles if present - will handle in HTML cleanup if needed, but CSS specificity might help */

.brand-cta__content .btn-group {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.btn--white {
  background: #fff;
  color: #2E45EF;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  /* Standardized */
  font-size: 15px;
}

.btn--white:hover {
  filter: brightness(0.95);
}

.btn--outline-white {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  /* Standardized */
  font-size: 15px;
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 900px) {
  .brand-cta__layout {
    display: flex;
    flex-direction: column-reverse;
    /* Text top, Image bottom */
    text-align: center;
    gap: 30px;
  }

  .brand-cta__content {
    align-items: center;
    text-align: center;
    padding-bottom: 0;
  }

  .brand-cta__visual {
    width: 100%;
    margin-bottom: -40px;
    /* Aggressive stick to footer */
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
    pointer-events: none;
    /* Interact through if needed */
  }

  /* Ensure container AND section have zero padding bottom */
  .brand-cta__layout,
  #brochure.section {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }

  .brand-cta__visual img {
    margin: 0 auto;
    max-width: 180px;
    /* User Request: ~20% smaller */
    display: block;
  }

  .brand-cta__content .btn-group {
    flex-direction: column;
    width: 100%;
    max-width: 350px;
  }

  .brand-cta__content .btn {
    width: 100%;
  }
}

/* --- GOALS 2026 SECTION --- */
.section--light-blue {
  background-color: #EEF6FF;
  /* Match paper/light blue var */
  color: #050E3A;
  padding: 100px 0;
  /* More breathing room */
}

/* Grid Layout for Desktop */
.goals-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  /* Title takes less space */
  gap: 60px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.goals-header {
  border-left: 3px solid #2E45EF;
  /* Brand accent line, thinner to match image */
  padding-left: 20px;
}

.goals-title {
  margin: 0;
  line-height: 1.2;
  color: #050E3A;
}

/* Standardization Rule: Title 25px, Weight 400 */
.goals-title__small,
.goals-title__large {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 20px;
  /* Slightly smaller to match proportion in image */
  display: block;
  margin-bottom: 5px;
  color: #050E3A;
  letter-spacing: normal;
}

.text-highlight {
  color: #2E45EF;
  /* Brand Blue Highlighting */
  font-weight: 400;
  /* Ensure consistency */
}

.goals-body {
  padding-left: 0;
  /* Removed extra separation to let grid handle it */
}

/* Standardization Rule: Paragraph 15px, Weight 400 */
.goals-text {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  /* match image better */
  /* Larger body text */
  line-height: 1.6;
  color: #334155;
  margin-bottom: 25px;
  font-weight: 400;
}

.goals-closing p {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #050E3A;
  font-weight: 400;
}

.goals-closing__strong {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
  margin-top: 5px;
  color: #050E3A;
  /* Changed to dark blue instead of light blue to match image */
}

@media (max-width: 900px) {
  .section--light-blue {
    padding: 60px 0;
  }

  .goals-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .goals-header {
    border-left: none;
    border-bottom: none;
    padding-left: 0;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }

  .goals-body {
    padding-left: 0;
  }
}

/* === Mobile fixes (nuevo diseño) =======================================
   Objetivo: que en móvil no haya elementos "absolutos" que rompan el flujo,
   y que los bloques queden a 1 columna con buena jerarquía.
======================================================================= */

/* Evitar “zoom” raro en móviles */
@media (max-width: 520px) {
  body {
    font-size: 16px;
  }

  .section {
    padding: 44px 0;
  }

  .h1 {
    letter-spacing: -1px;
  }

  .lead {
    font-size: 16px;
  }
}

/* Lo que te llevas: elimina posicionamiento absoluto y mejora la grilla */
@media (max-width: 900px) {
  .lo-que-te-llevas__layout {
    margin-top: 22px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    position: relative;
  }

  .lo-que-te-llevas__cards {
    max-width: 100%;
    grid-template-columns: 1fr;
    /* 1 columna */
    gap: 12px;
  }

  /* User Request: Remove gap at bottom */
  #lo-que-te-llevas {
    padding-bottom: 0 !important;
  }

  .lo-que-te-llevas__visual {
    position: static;
    width: 100%;
    display: flex;
    justify-content: center;
    pointer-events: none;
    margin-bottom: 0;
    margin-top: 20px;
  }

  .lo-que-te-llevas__visual img {
    /* width: min(360px, 88%); */
    width: 90%;
    max-width: 360px;
    transform: none;
    display: block;
    /* No descender gap */
    margin-bottom: 0;
  }

  .card {
    padding: 18px;
  }

  /* User Request: Mobile cards solid (no opacity) */
  .card--blue {
    background: rgb(46, 69, 239) !important;
  }

  .card--dark {
    background: rgb(5, 14, 58) !important;
  }

  .card--cyan {
    background: rgb(142, 225, 255) !important;
  }

  .card__icon {
    width: 34px;
    height: 34px;
  }

  .card h3 {
    font-size: 16px;
  }

  /* User requested Mobile Adjustment: More space on right for image */
  .card--bg-1,
  .card--bg-2,
  .card--bg-3,
  .card--bg-4 {
    padding-right: 20% !important;
    /* user asked for 20% margin right */
    background-position: top left !important;
    /* ensure icon (top-left) is visible */
    background-size: cover !important;
    /* Revert to cover to follow user request "no del fondo" but ensure full coverage */
    height: auto !important;
    /* Let it grow if needed on mobile */
    min-height: 231px;
    padding-top: 60px !important;
    /* Ensure top padding is consistent with desktop or enough for icon */
  }
}

/* Experiencia (imagen + agenda): en móvil apila y usa ancho completo */
@media (max-width: 900px) {
  .experiencia__layout {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas: "visual" "schedule";
    gap: 18px;
  }

  .experiencia__visual {
    grid-area: visual;
    width: 100%;
    position: static;
  }

  .schedule {
    grid-area: schedule;
    width: 100%;
    margin-top: 0;
    justify-self: stretch;
  }

  .schedule__item {
    margin: 0;
    border-radius: 16px;
    padding: 14px;
  }
}

/* Entregables: suaviza espaciados y radios en móvil */
@media (max-width: 900px) {

  .deliverables__box,
  .deliverables__card {
    border-radius: 22px !important;
  }
}

/* Old reveal removed in favor of v2 below */

/* micro-interacciones */
.card,
.schedule__item,
.deliverables__box {
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.card:hover,
.schedule__item:hover {
  transform: translateY(-3px);
  filter: brightness(1.03);
}

/* Header “shrink” */
.topbar.is-scrolled {
  background: rgba(5, 14, 58, .97);
  border-bottom-color: rgba(236, 242, 252, .18);
}

.topbar.is-scrolled .topbar__inner {
  padding: 10px 0;
}

/* === WhatsApp UI ====================================================== */
.wa-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(236, 242, 252, .18);
  background: rgba(5, 14, 58, .85);
  color: var(--paper);
  box-shadow: 0 16px 44px rgba(0, 0, 0, .32);
  cursor: pointer;
}

.wa-fab:hover {
  transform: translateY(-2px);
}

.wa-fab__icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(144, 221, 253, .18);
}

.wa-fab__text {
  font-weight: 900;
  letter-spacing: .2px;
}

.wa-panel {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
}

.wa-panel.is-open {
  display: block;
}

.wa-panel__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .45);
}

.wa-panel__card {
  position: absolute;
  right: 18px;
  bottom: 86px;
  width: min(360px, calc(100% - 36px));
  border-radius: 18px;
  overflow: hidden;
  background: rgba(5, 14, 58, .96);
  border: 1px solid rgba(236, 242, 252, .16);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .45);
}

.wa-panel__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: rgba(46, 69, 239, .92);
  border-bottom: 1px solid rgba(236, 242, 252, .12);
}

.wa-panel__avatar {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(236, 242, 252, .92);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.wa-panel__title {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.wa-panel__title span {
  font-size: 12px;
  opacity: .85;
}

.wa-panel__close {
  margin-left: auto;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(5, 14, 58, .18);
  border: 1px solid rgba(236, 242, 252, .16);
  color: var(--paper);
  cursor: pointer;
}

.wa-panel__body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 260px;
  overflow: auto;
}

.wa-bubble {
  padding: 10px 12px;
  border-radius: 14px;
  max-width: 92%;
  font-size: 14px;
  line-height: 1.25;
}

.wa-bubble--them {
  background: rgba(236, 242, 252, .10);
  border: 1px solid rgba(236, 242, 252, .12);
  align-self: flex-start;
}

.wa-bubble--me {
  background: rgba(223, 55, 86, .16);
  border: 1px solid rgba(223, 55, 86, .28);
  align-self: flex-end;
}

.wa-panel__form {
  display: flex;
  gap: 10px;
  padding: 12px;
  border-top: 1px solid rgba(236, 242, 252, .12);
}

#waInput {
  flex: 1;
  border-radius: 999px;
  padding: 12px 14px;
}

.wa-send {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(223, 55, 86, .28);
  background: var(--accent);
  color: var(--paper);
  cursor: pointer;
  font-weight: 900;
}

.wa-panel__hint {
  margin: 0;
  padding: 0 12px 12px;
  font-size: 12px;
  color: rgba(236, 242, 252, .70);
}


/* === UI/UX & Motion v2 =================================================
   Cambios solicitados:
   - Mobile: 1 columna real, sin max-width raros, menú móvil mejor (off-canvas)
   - Motion: animaciones más vistosas (hero assemble + stagger reveal)
   - WhatsApp: colores oficiales (verde)
   - Tipografía: títulos más finos y legibles (clamp + line-height)
======================================================================= */

/* Tipografía y jerarquía */
.h1 {
  line-height: .94;
  letter-spacing: -1.2px;
}

.h2 {
  line-height: 1.05;
  letter-spacing: -0.5px;
}

.section__head {
  margin-bottom: 18px;
}

.section__head .muted {
  max-width: 68ch;
}

/* Mejoras de legibilidad en mobile */
@media (max-width: 820px) {
  .h1 {
    font-size: clamp(40px, 10vw, 64px);
  }

  .lead {
    font-size: 16px;
    max-width: 60ch;
  }

  .h2 {
    font-size: clamp(24px, 6.3vw, 34px);
  }
}

@media (max-width: 520px) {
  .h1 {
    font-size: clamp(38px, 12vw, 56px);
  }

  .hero__actions .btn {
    width: 100%;
  }

  .proof {
    padding-left: 16px;
  }
}

/* === MOBILE: Fuerza 1 columna REAL en todo el bloque "Lo que te llevas" */
@media (max-width: 1024px) {
  .lo-que-te-llevas__layout {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .lo-que-te-llevas__cards {
    max-width: 100% !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .lo-que-te-llevas__visual {
    position: static !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    margin-top: 6px !important;
  }

  .lo-que-te-llevas__visual img {
    width: min(360px, 92%) !important;
    transform: none !important;
  }
}

/* Móvil: cards generales también a 1 columna antes (no esperar a 520px) */
@media (max-width: 820px) {
  .cards {
    grid-template-columns: 1fr !important;
  }
}

/* Motion: transiciones más cortas y con “stagger” */
/* Motion: Movimientos largos y suaves (1.1s duration) */
[data-reveal] {
  opacity: 0;
  transform: translateY(60px) scale(.98);
  /* Slower, luxurious transition */
  transition: opacity 1.1s cubic-bezier(.2, .8, .2, 1), transform 1.1s cubic-bezier(.2, .8, .2, 1);
  will-change: opacity, transform;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* micro-interacciones (Hover Effects) */
.card,
.schedule__item,
.deliverables__box,
.pricing__card,
.entregables__card,
.quote,
.form-card,
.pricing__banner,
.bank-card,
/* Taller Intensivo */
.btn

/* Botones */
  {
  transition: transform .4s cubic-bezier(.25, .8, .25, 1), box-shadow .4s ease, filter .3s ease;
}

.card:hover,
.schedule__item:hover,
.deliverables__box:hover,
.pricing__card:hover,
.entregables__card:hover,
.quote:hover,
.form-card:hover,
.pricing__banner:hover,
.bank-card:hover,
.btn:hover {
  transform: translateY(-12px) scale(1.02);
  /* Levantamiento notorio */
  box-shadow: 0 30px 60px rgba(0, 0, 0, .25);
  /* Sombra profunda */
  z-index: 10;
  /* Ensure it pops over others */
}

/* Titles Hover (Text Lift) */
.h1,
.h2,
.h3,
.section__head h2 {
  transition: transform .4s cubic-bezier(.25, .8, .25, 1), text-shadow .4s ease;
  display: inline-block;
  /* Needed for transform */
}

.h1:hover,
.h2:hover,
.h3:hover,
.section__head h2:hover {
  transform: translateY(-6px);
  text-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  cursor: default;
}

/* Images Hover - Subtle Zoom */
.hero__visual img,
.lo-que-te-llevas__visual img,
.experiencia__visual img,
.brand-cta__visual img,
.entregables__visual img {
  transition: transform .8s cubic-bezier(.25, .8, .25, 1);
}

.hero__visual:hover img,
.lo-que-te-llevas__visual:hover img,
.experiencia__visual:hover img,
.brand-cta__visual:hover img,
.entregables__visual:hover img {
  transform: scale(1.06);
}

.card:active,
.schedule__item:active,
.btn:active {
  transform: translateY(-4px) scale(1);
}

/* HERO assemble: cuando carga, cada elemento entra con estilo */
body.is-loaded .hero__visual {
  animation: heroPop .7s cubic-bezier(.2, .9, .2, 1) both;
}

body.is-loaded .hero__content .eyebrow {
  animation: fadeUp .5s ease both;
  animation-delay: 80ms;
}

body.is-loaded .hero__content .h1 {
  animation: fadeUp .6s cubic-bezier(.2, .9, .2, 1) both;
  animation-delay: 130ms;
}

body.is-loaded .hero__content .format {
  animation: fadeUp .5s ease both;
  animation-delay: 220ms;
}

body.is-loaded .hero__content .lead {
  animation: fadeUp .55s ease both;
  animation-delay: 300ms;
}

body.is-loaded .hero__content .hero__actions {
  animation: fadeUp .55s ease both;
  animation-delay: 380ms;
}

body.is-loaded .hero__content .proof {
  animation: fadeUp .55s ease both;
  animation-delay: 460ms;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroPop {
  from {
    opacity: 0;
    transform: translateY(18px) scale(.96);
    filter: blur(1px);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

/* Fondo hero más dinámico */
.hero__bg {
  background:
    radial-gradient(900px 400px at 90% 15%, rgba(144, 221, 253, .22), transparent 55%),
    radial-gradient(800px 500px at 10% 90%, rgba(5, 14, 58, .58), transparent 60%),
    radial-gradient(600px 420px at 55% 0%, rgba(223, 55, 86, .14), transparent 60%);
}

/* === MENÚ MÓVIL: Off-canvas (mejor UX) ================================ */
.mobileMenu {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
}

.mobileMenu.is-open {
  display: block;
}

.mobileMenu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .48);
  opacity: 0;
  animation: overlayIn .18s ease forwards;
}

@keyframes overlayIn {
  to {
    opacity: 1;
  }
}

.mobileMenu__panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(360px, 88vw);
  padding: 16px;
  background: rgba(5, 14, 58, .96);
  border-left: 1px solid rgba(236, 242, 252, .14);
  transform: translateX(18px);
  animation: panelIn .25s cubic-bezier(.2, .9, .2, 1) forwards;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@keyframes panelIn {
  to {
    transform: translateX(0);
  }
}

.mobileMenu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(236, 242, 252, .12);
  margin-bottom: 6px;
}

.mobileMenu__close {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(236, 242, 252, .08);
  border: 1px solid rgba(236, 242, 252, .14);
  color: var(--paper);
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

.mobileMenu__panel a {
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  /* Explicit font */
  font-weight: 400;
  /* User Request */
  font-size: 15px;
  /* User Request */
  opacity: 1;
  padding: 16px 0;
  /* List style padding */
  border-radius: 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid #EEF6FF;
  /* Grid line */
  color: #8EE1FF;
  /* Cyan Text */
  text-align: left;
}

.mobileMenu__panel a:hover {
  background: transparent;
  color: #fff;
  border-bottom-color: #fff;
}

/* CTA Special Override */
.mobileMenu__panel .btn {
  margin-top: 20px;
  background: #8EE1FF !important;
  /* Cyan BG */
  color: #050E3A !important;
  /* Dark Text */
  border: none !important;
  border-radius: 14px !important;
  /* Keep button shape */
  padding: 16px !important;
  text-align: center;
  justify-content: center;
}

/* === WhatsApp: verde oficial ========================================= */
:root {
  --wa-green: #25D366;
  --wa-green-dark: #128C7E;
}

.wa-fab {
  background: var(--wa-green) !important;
  border-color: rgba(0, 0, 0, .08) !important;
  color: #062b17 !important;
}

.wa-fab__icon {
  background: rgba(255, 255, 255, .65) !important;
  color: #0b3b20 !important;
}

.wa-fab__text {
  color: #0b3b20 !important;
}

.wa-panel__head {
  background: var(--wa-green-dark) !important;
}

.wa-send {
  background: var(--wa-green) !important;
  border-color: rgba(0, 0, 0, .10) !important;
  color: #062b17 !important;
}

/* === Bank Details (Inversión) === */
.pricing__banks {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(5, 14, 58, 0.1);
}

.banks__title {
  color: #050E3A;
  font-size: 18px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
}

.banks__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.bank-card {
  background: #EEF6FF;
  /* Paper color */
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(46, 69, 239, 0.1);
}

.bank-card__header {
  background: rgba(46, 69, 239, 0.1);
  color: #050E3A;
  padding: 12px 20px;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.bank-logo {
  height: 24px;
  width: auto;
  object-fit: contain;
  display: block;
  /* fallback bg if image fails */
  min-width: 24px;
}

.bank-card__body {
  padding: 16px 20px;
  color: #334155;
  font-size: 14px;
}

.bank-card__body p {
  margin: 6px 0;
  line-height: 1.5;
}

.bank-card__body strong {
  color: #050E3A;
  font-weight: 600;
}

@media (max-width: 768px) {
  .banks__grid {
    grid-template-columns: 1fr;
  }
}