.nuvexa-hero {
    --nuvexa-hero-bg: #0f0a18;
    --nuvexa-hero-text: #ffffff;
    --nuvexa-hero-accent: #8b50f6;
    --nuvexa-hero-accent-rgb: 139, 80, 246;
    --nuvexa-hero-pt: 32px;
    --nuvexa-hero-pb: 32px;
    background-color: var(--nuvexa-hero-bg);
    color: var(--nuvexa-hero-text);
    padding-top: var(--nuvexa-hero-pt);
    padding-bottom: var(--nuvexa-hero-pb);
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 85vh;
  }

  .nuvexa-hero__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5vw;
    width: 100%;
  }

  .nuvexa-hero__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 6rem;
    align-items: center;
  }

  /* Editorial Content */
  .nuvexa-hero__content-side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .nuvexa-hero__eyebrow-pill {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background-color: rgba(var(--nuvexa-hero-accent-rgb), 0.1);
    border: 1px solid rgba(var(--nuvexa-hero-accent-rgb), 0.2);
    padding: 0.6rem 1.4rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--nuvexa-hero-accent);
    margin-bottom: 2.5rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  /* Circle Pulse Animation */
  .nuvexa-hero__dot {
    width: 8px;
    height: 8px;
    background-color: var(--nuvexa-hero-accent);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 10px var(--nuvexa-hero-accent);
  }

  .nuvexa-hero__dot::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: inherit;
    border-radius: 50%;
    animation: nuvexa-pulse 2.5s infinite;
  }

  @keyframes nuvexa-pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(3.5); opacity: 0; }
  }

  .nuvexa-hero__heading {
    font-family: var(--font-h);
    font-size: clamp(3.2rem, 6vw, 5.2rem);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0 0 2.5rem 0;
    display: flex;
    flex-direction: column;
  }

  .nuvexa-hero__heading-white { color: #FFFFFF; }
  .nuvexa-hero__heading-accent { color: var(--nuvexa-hero-accent); }

  .nuvexa-hero__description {
    font-family: var(--font-b);
    font-size: 1.25rem;
    line-height: 1.6;
    color: #94A3B8;
    max-width: 540px;
    margin-bottom: 3.5rem;
  }

  /* Actions */
  .nuvexa-hero__actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .nuvexa-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.8rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .nuvexa-hero__btn--primary {
    background-color: var(--nuvexa-hero-accent);
    color: #ffffff;
    box-shadow: 0 10px 30px -5px rgba(var(--nuvexa-hero-accent-rgb), 0.5);
  }

  .nuvexa-hero__btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px -5px rgba(var(--nuvexa-hero-accent-rgb), 0.6);
  }

  .nuvexa-hero__btn--secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .nuvexa-hero__btn--secondary:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
  }

  /* Media Side */
  .nuvexa-hero__media-side {
    position: relative;
  }

  .nuvexa-hero__media-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: radial-gradient(circle at center, rgba(var(--nuvexa-hero-accent-rgb), 0.15) 0%, transparent 70%);
  }

  .nuvexa-hero__main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .nuvexa-hero__placeholder {
    width: 100%; height: 100%; background: #1a1a1a;
  }

  /* Floating Spec Card */
  .nuvexa-hero__floating-card {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.2rem 1.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
  }

  .nuvexa-hero__floating-label {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.5;
    font-weight: 700;
    margin-bottom: 0.3rem;
  }

  .nuvexa-hero__floating-value {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
  }

  .nuvexa-hero__floating-icon {
    width: 40px;
    height: 40px;
    background: rgba(var(--nuvexa-hero-accent-rgb), 0.2);
    color: var(--nuvexa-hero-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Reveal Animations */
  .nuvexa-hero--reveal-fade .vue-reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  }

  .nuvexa-hero.is-visible .vue-reveal-item,
  .nuvexa-hero.is-editor .vue-reveal-item {
    opacity: 1;
    transform: translateY(0);
  }

  .nuvexa-hero.is-visible .vue-reveal-item:nth-child(2) { transition-delay: 0.1s; }
  .nuvexa-hero.is-visible .vue-reveal-item:nth-child(3) { transition-delay: 0.2s; }
  .nuvexa-hero.is-visible .vue-reveal-item:nth-child(4) { transition-delay: 0.3s; }
  .nuvexa-hero.is-visible .nuvexa-hero__media-side { transition-delay: 0.45s; }

  @media (max-width: 1024px) {
    .nuvexa-hero__grid { gap: 4rem; }
  }

  @media (max-width: 768px) {
    .nuvexa-hero__grid { grid-template-columns: 1fr; gap: 4rem; }
    .nuvexa-hero__content-side { order: 2; }
    .nuvexa-hero__media-side { order: 1; }
    .nuvexa-hero { padding-top: 60px; }
  }

.nuvexa-values {
    --nuvexa-values-bg: #0F0A18;
    --nuvexa-values-text: #ffffff;
    --nuvexa-values-accent: #A855F7;
    --nuvexa-values-accent-rgb: 168, 85, 247;
    --nuvexa-values-card-bg: #15101C;
    --nuvexa-values-pt: 40px;
    --nuvexa-values-pb: 40px;
    background-color: var(--nuvexa-values-bg);
    color: var(--nuvexa-values-text);
    padding-top: var(--nuvexa-values-pt);
    padding-bottom: var(--nuvexa-values-pb);
    overflow: hidden;
  }

  .nuvexa-values__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5vw;
  }

  .nuvexa-values__header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  .nuvexa-values__heading {
    font-family: var(--font-h);
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 1rem 0;
    color: #FFFFFF;
  }

  .nuvexa-values__header-desc {
    font-family: var(--font-b);
    font-size: 1.15rem;
    color: #94A3B8;
    opacity: 0.8;
  }

  /* Grid & Flex Layout */
  .nuvexa-values__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  /* ARQUITECTURA FLIP 3D */
  .nuvexa-values__card-wrapper {
    perspective: 1500px; /* Crea el espacio 3D */
    flex: 1 1 340px;
    max-width: calc(33.333% - 1.34rem);
    min-height: 280px;
    outline: none; /* Previene el contorno azul al hacer tap en móviles */
    cursor: pointer;
  }

  .nuvexa-values__card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    transform-style: preserve-3d;
  }

  /* El Flip se activa en Hover (Desktop) o Tap/Focus (Mobile) */
  .nuvexa-values__card-wrapper:hover .nuvexa-values__card-inner,
  .nuvexa-values__card-wrapper:focus .nuvexa-values__card-inner {
    transform: rotateY(180deg);
  }

  /* Caras de la Tarjeta */
  .nuvexa-values__card-front,
  .nuvexa-values__card-back {
    background-color: var(--nuvexa-values-card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    -webkit-backface-visibility: hidden; /* Oculta la cara cuando está girada */
    backface-visibility: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }

  /* FRONTAL */
  .nuvexa-values__card-front {
    position: relative; /* Define la altura total */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    z-index: 2;
    overflow: hidden;
  }

  /* TRASERA */
  .nuvexa-values__card-back {
    position: absolute; /* Se adhiere al tamaño de la frontal */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotateY(180deg); /* Empieza volteada */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(145deg, var(--nuvexa-values-card-bg) 40%, rgba(var(--nuvexa-values-accent-rgb), 0.12) 100%);
    border-color: rgba(var(--nuvexa-values-accent-rgb), 0.3);
    z-index: 1;
  }

  /* Efecto Shine */
  .nuvexa-values__card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(var(--nuvexa-values-accent-rgb), 0.05), transparent);
    transform: skewX(-25deg);
    transition: 0.75s ease;
    pointer-events: none;
  }

  .nuvexa-values__card-wrapper:hover .nuvexa-values__card-shine {
    left: 150%;
  }

  /* Icono Animado (Frontal) */
  .nuvexa-values__icon-box {
    width: 48px;
    height: 48px;
    background-color: rgba(var(--nuvexa-values-accent-rgb), 0.15);
    color: var(--nuvexa-values-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.2rem;
    transition: transform 0.4s ease, background-color 0.4s ease;
    animation: nuvexa-float 4s ease-in-out infinite;
  }

  .nuvexa-values__card-wrapper:hover .nuvexa-values__icon-box {
    transform: scale(1.1) rotate(5deg);
    background-color: rgba(var(--nuvexa-values-accent-rgb), 0.25);
  }

  @keyframes nuvexa-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
  }

  .nuvexa-values__icon-box svg { width: 22px; height: 22px; }

  /* Textos Frontales */
  .nuvexa-values__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #94A3B8;
    margin-bottom: 0.8rem;
  }

  .nuvexa-values__value {
    font-family: var(--font-h);
    font-size: clamp(1.8rem, 2.8vw, 2.5rem);
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: #FFFFFF;
    letter-spacing: -0.01em;
  }

  .nuvexa-values__description {
    font-family: var(--font-b);
    font-size: 1.15rem;
    line-height: 1.6;
    color: #94A3B8;
    margin: 0;
  }

  /* Hint Icon (Esquina inferior derecha) */
  .nuvexa-values__flip-hint {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    color: var(--nuvexa-values-accent);
    opacity: 0.4;
    transition: opacity 0.3s ease;
  }

  .nuvexa-values__card-wrapper:hover .nuvexa-values__flip-hint {
    opacity: 0;
  }

  /* Textos Traseros */
  .nuvexa-values__back-content {
    padding: 1rem;
  }

  .nuvexa-values__back-title {
    font-family: var(--font-h);
    color: var(--nuvexa-values-accent);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
  }

  .nuvexa-values__back-text {
    font-family: var(--font-b);
    font-size: 1.1rem;
    line-height: 1.6;
    color: #E2E8F0;
    margin: 0;
  }

  /* Animaciones Reveal */
  .nuvexa-values--reveal-fade .vue-reveal-item {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  }

  .nuvexa-values.is-visible .vue-reveal-item,
  .nuvexa-values.is-editor .vue-reveal-item {
    opacity: 1;
    transform: translateY(0);
  }.nuvexa-values.is-visible .nuvexa-values__card-wrapper:nth-child(1) {
      transition-delay: 0.25s;
    }.nuvexa-values.is-visible .nuvexa-values__card-wrapper:nth-child(2) {
      transition-delay: 0.4s;
    }.nuvexa-values.is-visible .nuvexa-values__card-wrapper:nth-child(3) {
      transition-delay: 0.55s;
    }.nuvexa-values.is-visible .nuvexa-values__card-wrapper:nth-child(4) {
      transition-delay: 0.7s;
    }.nuvexa-values.is-visible .nuvexa-values__card-wrapper:nth-child(5) {
      transition-delay: 0.85s;
    }.nuvexa-values.is-visible .nuvexa-values__card-wrapper:nth-child(6) {
      transition-delay: 1.0s;
    }@media (max-width: 1024px) {
    .nuvexa-values__card-wrapper { max-width: calc(50% - 1rem); }
  }

  @media (max-width: 768px) {
    .nuvexa-values__card-wrapper { max-width: 100%; min-height: 250px; }
    .nuvexa-values__card-front, .nuvexa-values__card-back { padding: 2.5rem 2rem; }
  }

.nuvexa-flagship {
    --nuvexa-flagship-bg: #0f0a18;
    --nuvexa-flagship-panel-bg: #1e1a24;
    --nuvexa-flagship-text: #ffffff;
    --nuvexa-flagship-accent: #a855f7;
    --nuvexa-flagship-pt: 40px;
    --nuvexa-flagship-pb: 40px;
    background-color: var(--nuvexa-flagship-bg);
    padding-top: var(--nuvexa-flagship-pt);
    padding-bottom: var(--nuvexa-flagship-pb);
    overflow: hidden;
  }

  .nuvexa-flagship__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5vw;
  }

  .nuvexa-flagship__panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: var(--nuvexa-flagship-panel-bg);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  }

  /* --- LEFT SIDE: CONTENT --- */
  .nuvexa-flagship__content-side {
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .nuvexa-flagship__eyebrow {
    font-family: var(--font-b);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--nuvexa-flagship-accent);
    margin-bottom: 1rem;
    display: block;
  }

  .nuvexa-flagship__heading {
    font-family: var(--font-h);
    font-size: clamp(2.2rem, 3.5vw, 3.5rem);
    line-height: 1.1;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.02em;
  }

  .nuvexa-flagship__description {
    font-family: var(--font-b);
    font-size: 1.15rem;
    line-height: 1.6;
    color: #94A3B8;
    margin-bottom: 2.5rem;
  }

  /* Feature List (Checkmarks) */
  .nuvexa-flagship__feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 3.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }

  .nuvexa-flagship__feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-b);
    font-size: 1.05rem;
    color: #E2E8F0;
    font-weight: 500;
  }

  .nuvexa-flagship__check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: #10B981; /* Solid Green Check Background */
    color: #FFFFFF;
    border-radius: 50%;
    flex-shrink: 0;
  }

  /* Actions / CTAs */
  .nuvexa-flagship__actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .nuvexa-flagship__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .nuvexa-flagship__btn--primary {
    background-color: var(--nuvexa-flagship-accent);
    color: #ffffff;
  }

  .nuvexa-flagship__btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -5px var(--nuvexa-flagship-accent);
    filter: brightness(1.1);
  }

  .nuvexa-flagship__btn--secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .nuvexa-flagship__btn--secondary:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
  }

  /* --- RIGHT SIDE: MEDIA & CHART --- */
  .nuvexa-flagship__media-side {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
  }

  .nuvexa-flagship__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 10s ease; /* Efecto Zoom Lento */
  }

  .nuvexa-flagship__panel:hover .nuvexa-flagship__image {
    transform: scale(1.05);
  }

  .nuvexa-flagship__placeholder {
    width: 100%;
    height: 100%;
    background-color: #0F172A;
  }

  /* Floating Comparative Chart */
  .nuvexa-flagship__chart-card {
    position: absolute;
    bottom: 2.5rem;
    left: 2.5rem;
    right: 2.5rem;
    background-color: rgba(30, 25, 40, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    z-index: 10;
  }

  .nuvexa-flagship__chart-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
  }

  .nuvexa-flagship__chart-icon {
    width: 28px;
    height: 28px;
    background-color: var(--nuvexa-flagship-accent);
    color: #FFFFFF;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nuvexa-flagship__chart-title {
    font-family: var(--font-h);
    font-size: 1.2rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
  }

  .nuvexa-flagship__bars {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }

  .nuvexa-flagship__bar-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .nuvexa-flagship__bar-info {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-b);
    font-size: 0.85rem;
    font-weight: 500;
    color: #E2E8F0;
  }

  .nuvexa-flagship__bar-track {
    width: 100%;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    overflow: hidden;
  }

  .nuvexa-flagship__bar-fill {
    height: 100%;
    background-color: #64748B; /* Default Grey for competitors */
    border-radius: 100px;
    transition: width 1.5s cubic-bezier(0.165, 0.84, 0.44, 1); /* Aceleración más orgánica */
  }

  .nuvexa-flagship__bar-fill.is-highlight {
    background-color: var(--nuvexa-flagship-accent);
    box-shadow: 0 0 10px var(--nuvexa-flagship-accent);
  }

  .nuvexa-flagship__chart-footnote {
    font-family: var(--font-b);
    font-size: 0.65rem;
    color: #64748B;
    text-align: right;
    margin: 1rem 0 0 0;
  }

  /* Reveal Animations */
  .nuvexa-flagship--reveal-fade .vue-reveal-item {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s cubic-bezier(0.19, 1, 0.22, 1);
  }

  .nuvexa-flagship.is-visible .vue-reveal-item,
  .nuvexa-flagship.is-editor .vue-reveal-item {
    opacity: 1;
    transform: translateY(0);
  }

  /* Responsive Constraints */
  @media (max-width: 1024px) {
    .nuvexa-flagship__panel { grid-template-columns: 1fr; }
    .nuvexa-flagship__media-side { min-height: 450px; }
  }

  @media (max-width: 768px) {
    .nuvexa-flagship__content-side { padding: 3rem 2rem; }
    .nuvexa-flagship__heading { font-size: 2.2rem; }
    .nuvexa-flagship__chart-card { left: 1rem; right: 1rem; bottom: 1rem; padding: 1.5rem; }
    .nuvexa-flagship__btn { width: 100%; justify-content: center; }
  }

.nuvexa-carousel {
    --nuvexa-carousel-bg: #0f0a18;
    --nuvexa-carousel-text: #ffffff;
    --nuvexa-carousel-accent: #a855f7;
    --nuvexa-carousel-accent-rgb: 168, 85, 247;
    --nuvexa-carousel-card-bg: #1c1826;
    --nuvexa-carousel-pt: 40px;
    --nuvexa-carousel-pb: 20px;
    background-color: var(--nuvexa-carousel-bg);
    padding-top: var(--nuvexa-carousel-pt);
    padding-bottom: var(--nuvexa-carousel-pb);
    overflow: hidden;
  }

  .nuvexa-carousel__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5vw;
  }

  /* Encabezado */
  .nuvexa-carousel__header {
    margin-bottom: 4rem;
    max-width: 800px;
  }

  .nuvexa-carousel__heading {
    font-family: var(--font-h);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--nuvexa-carousel-text);
    margin: 0 0 1rem 0;
    letter-spacing: -0.02em;
  }

  .nuvexa-carousel__description {
    font-family: var(--font-b);
    font-size: 1.1rem;
    color: #94A3B8;
    line-height: 1.6;
    margin: 0;
  }

  /* Pista del Carrusel (Scroll Snap) */
  .nuvexa-carousel__track-wrapper {
    margin-right: -5vw;
    padding-right: 5vw;
    padding-bottom: 2rem; /* Espacio para la sombra de las tarjetas */
  }

  .nuvexa-carousel__track {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    padding-left: 2px; /* Evita que se corte el borde izquierdo */
    padding-bottom: 2rem;
  }

  .nuvexa-carousel__track::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }

  .nuvexa-carousel__slide {
    flex: 0 0 calc(33.333% - 1.34rem); /* 3 tarjetas visibles en escritorio amplio para balancear formato vertical */
    max-width: 450px;
    scroll-snap-align: start;
    display: flex;
  }

  /* Anatomía de la Tarjeta */
  .nuvexa-carousel__card {
    background-color: var(--nuvexa-carousel-card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  }

  .nuvexa-carousel__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: rgba(var(--nuvexa-carousel-accent-rgb), 0.3);
  }

  /* Media & Badge (FORMATO VERTICAL) */
  .nuvexa-carousel__card-media {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5; /* Formato vertical (Retrato) ideal para Viales/Productos */
    overflow: hidden;
    background-color: rgba(255,255,255,0.02); /* Fondo sutil para destacar el producto */
  }

  .nuvexa-carousel__image,
  .nuvexa-carousel__placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cambiar a 'contain' si los bordes del producto se cortan */
    display: block;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .nuvexa-carousel__card:hover .nuvexa-carousel__image {
    transform: scale(1.05);
  }

  .nuvexa-carousel__card-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background-color: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    font-family: var(--font-b);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    z-index: 2;
  }

  /* Contenido de la Tarjeta */
  .nuvexa-carousel__card-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }

  .nuvexa-carousel__card-title {
    font-family: var(--font-h);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--nuvexa-carousel-text);
    margin: 0 0 1rem 0;
    letter-spacing: -0.01em;
  }

  .nuvexa-carousel__card-desc {
    font-family: var(--font-b);
    font-size: 0.95rem;
    color: #94A3B8;
    line-height: 1.6;
    margin: 0 0 2rem 0;
  }

  /* Bullets & Pulse Animation */
  .nuvexa-carousel__card-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    flex-grow: 1;
  }

  .nuvexa-carousel__card-bullets li {
    font-family: var(--font-b);
    font-size: 0.9rem;
    color: #CBD5E1;
    display: flex;
    align-items: center;
    gap: 1rem; /* Slightly increased gap to accommodate pulse */
  }

  .nuvexa-carousel__bullet-dot {
    width: 6px;
    height: 6px;
    background-color: var(--nuvexa-carousel-accent);
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 0 8px rgba(var(--nuvexa-carousel-accent-rgb), 0.6);
  }

  .nuvexa-carousel__bullet-dot::after {
    content: '';
    position: absolute;
    inset: -3px;
    background-color: inherit;
    border-radius: 50%;
    animation: nuvexa-pulse 2.5s infinite ease-out;
    animation-delay: calc(var(--bullet-index, 1) * 0.3s);
  }

  @keyframes nuvexa-pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(3.5); opacity: 0; }
  }

  /* Botonera */
  .nuvexa-carousel__card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: auto;
  }

  .nuvexa-carousel__btn--full {
    grid-column: 1 / -1;
  }

  .nuvexa-carousel__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-family: var(--font-b);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: center;
  }

  .nuvexa-carousel__btn--outline {
    background-color: transparent;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .nuvexa-carousel__btn--outline:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: #FFFFFF;
  }

  .nuvexa-carousel__btn--solid {
    background-color: var(--nuvexa-carousel-accent);
    color: #FFFFFF;
    border: 1px solid var(--nuvexa-carousel-accent);
  }

  .nuvexa-carousel__btn--solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -5px rgba(var(--nuvexa-carousel-accent-rgb), 0.6);
    filter: brightness(1.1);
  }

  /* Animaciones Reveal */
  .nuvexa-carousel--reveal-fade .vue-reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  }

  .nuvexa-carousel.is-visible .vue-reveal-item,
  .nuvexa-carousel.is-editor .vue-reveal-item {
    opacity: 1;
    transform: translateY(0);
  }.nuvexa-carousel.is-visible .nuvexa-carousel__slide:nth-child(1) {
      transition-delay: 0.25s;
    }.nuvexa-carousel.is-visible .nuvexa-carousel__slide:nth-child(2) {
      transition-delay: 0.4s;
    }.nuvexa-carousel.is-visible .nuvexa-carousel__slide:nth-child(3) {
      transition-delay: 0.55s;
    }.nuvexa-carousel.is-visible .nuvexa-carousel__slide:nth-child(4) {
      transition-delay: 0.7s;
    }.nuvexa-carousel.is-visible .nuvexa-carousel__slide:nth-child(5) {
      transition-delay: 0.85s;
    }.nuvexa-carousel.is-visible .nuvexa-carousel__slide:nth-child(6) {
      transition-delay: 1.0s;
    }.nuvexa-carousel.is-visible .nuvexa-carousel__slide:nth-child(7) {
      transition-delay: 1.15s;
    }.nuvexa-carousel.is-visible .nuvexa-carousel__slide:nth-child(8) {
      transition-delay: 1.3s;
    }/* Responsive Constraints */
  @media (max-width: 1024px) {
    .nuvexa-carousel__slide { flex: 0 0 calc(50% - 1rem); max-width: none; }
  }

  @media (max-width: 768px) {
    .nuvexa-carousel__slide { flex: 0 0 80vw; scroll-snap-align: center; }
    .nuvexa-carousel__track { padding-left: 5vw; padding-right: 5vw; scroll-padding-left: 5vw; gap: 1.5rem;}
    .nuvexa-carousel__track-wrapper { margin-right: -5vw; padding-right: 0; }
    .nuvexa-carousel__card-content { padding: 2rem; }
    .nuvexa-carousel__heading { font-size: 2.5rem; }
  }
  
  @media (max-width: 480px) {
    .nuvexa-carousel__card-actions { grid-template-columns: 1fr; }
  }

.nuvexa-validation {
    --nuvexa-validation-bg: #1a1525;
    --nuvexa-validation-text: #ffffff;
    --nuvexa-validation-accent: #a855f7;
    --nuvexa-validation-accent-rgb: 168, 85, 247;
    --nuvexa-validation-card-bg: #130e1b;
    --nuvexa-validation-pt: 40px;
    --nuvexa-validation-pb: 20px;
    background-color: var(--nuvexa-validation-bg);
    color: var(--nuvexa-validation-text);
    padding-top: var(--nuvexa-validation-pt);
    padding-bottom: var(--nuvexa-validation-pb);
    overflow: hidden;
  }

  .nuvexa-validation__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5vw;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Header */
  .nuvexa-validation__header {
    text-align: center;
    max-width: 800px;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .nuvexa-validation__header-icon {
    color: var(--nuvexa-validation-accent);
    margin-bottom: 1.5rem;
    display: inline-flex;
    animation: nuvexa-levitate 4s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(var(--nuvexa-validation-accent-rgb, 168, 85, 247), 0.5));
  }

  @keyframes nuvexa-levitate {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }

  .nuvexa-validation__heading {
    font-family: var(--font-h);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--nuvexa-validation-text);
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.01em;
  }

  .nuvexa-validation__description {
    font-family: var(--font-b);
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    line-height: 1.6;
    color: #94A3B8;
    opacity: 0.9;
    margin: 0;
  }

  /* Grid */
  .nuvexa-validation__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    width: 100%;
    margin-bottom: 4rem;
  }

  /* Cards */
  .nuvexa-validation__card {
    background-color: var(--nuvexa-validation-card-bg);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  }

  .nuvexa-validation__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
    border-color: rgba(var(--nuvexa-validation-accent-rgb, 168, 85, 247), 0.2);
  }

  .nuvexa-validation__card-value {
    font-family: var(--font-h);
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 0.8rem 0;
    letter-spacing: -0.01em;
    line-height: 1;
  }

  .nuvexa-validation__card-label {
    font-family: var(--font-b);
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
  }

  /* Footer CTA */
  .nuvexa-validation__footer {
    text-align: center;
  }

  .nuvexa-validation__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--nuvexa-validation-accent);
    font-family: var(--font-b);
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    padding-bottom: 0.3rem;
    transition: color 0.3s ease;
  }

  .nuvexa-validation__cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--nuvexa-validation-accent);
    transform: scaleX(1);
    transform-origin: left center;
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .nuvexa-validation__cta:hover {
    color: #FFFFFF;
  }

  .nuvexa-validation__cta:hover::after {
    transform: scaleX(0);
    transform-origin: right center;
    background-color: #FFFFFF;
  }

  .nuvexa-validation__cta-icon {
    transition: transform 0.3s ease;
  }

  .nuvexa-validation__cta:hover .nuvexa-validation__cta-icon {
    transform: translateY(3px);
  }

  /* Reveal Animations */
  .nuvexa-validation--reveal-fade .vue-reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  }

  .nuvexa-validation.is-visible .vue-reveal-item,
  .nuvexa-validation.is-editor .vue-reveal-item {
    opacity: 1;
    transform: translateY(0);
  }

  .nuvexa-validation.is-visible .nuvexa-validation__grid .vue-reveal-item:nth-child(1) { transition-delay: 0.1s; }
  .nuvexa-validation.is-visible .nuvexa-validation__grid .vue-reveal-item:nth-child(2) { transition-delay: 0.2s; }
  .nuvexa-validation.is-visible .nuvexa-validation__grid .vue-reveal-item:nth-child(3) { transition-delay: 0.3s; }
  .nuvexa-validation.is-visible .nuvexa-validation__grid .vue-reveal-item:nth-child(4) { transition-delay: 0.4s; }
  .nuvexa-validation.is-visible .nuvexa-validation__footer { transition-delay: 0.6s; }

  @media (max-width: 900px) {
    .nuvexa-validation__grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 480px) {
    .nuvexa-validation__grid { grid-template-columns: 1fr; }
    .nuvexa-validation__card { padding: 2rem 1.5rem; }
  }

.nuvexa-cta {
    --nuvexa-cta-bg: #f4f6f9;
    --nuvexa-cta-text: #2d3748;
    --nuvexa-cta-desc: #718096;
    --nuvexa-cta-accent: #43243c;
    --nuvexa-cta-accent-hover: #64365a;
    --nuvexa-cta-pt: 40px;
    --nuvexa-cta-pb: 40px;
    background-color: var(--nuvexa-cta-bg);
    padding-top: var(--nuvexa-cta-pt);
    padding-bottom: var(--nuvexa-cta-pb);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .nuvexa-cta__inner {
    width: 100%;
    max-width: 900px; /* Constraints reading width for elegance */
    margin: 0 auto;
    padding: 0 5vw;
  }

  .nuvexa-cta__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .nuvexa-cta__heading {
    font-family: var(--font-h);
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--nuvexa-cta-text);
    margin: 0 0 1.2rem 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

  .nuvexa-cta__description {
    font-family: var(--font-b);
    font-size: clamp(1.05rem, 2vw, 1.15rem);
    line-height: 1.6;
    color: var(--nuvexa-cta-desc);
    margin: 0 0 3.5rem 0;
    max-width: 750px;
    text-wrap: balance;
  }

  /* Actions & Buttons */
  .nuvexa-cta__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    width: 100%;
  }

  .nuvexa-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-b);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 1.2rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .nuvexa-cta__btn--primary {
    background-color: var(--nuvexa-cta-accent);
    color: #FFFFFF;
    border: 1px solid var(--nuvexa-cta-accent);
    box-shadow: 0 10px 20px -5px rgba(0,0,0,0.15);
  }

  .nuvexa-cta__btn--primary:hover {
    background-color: var(--nuvexa-cta-accent-hover);
    border-color: var(--nuvexa-cta-accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px -5px rgba(0,0,0,0.2);
  }

  .nuvexa-cta__btn--secondary {
    background-color: #FFFFFF;
    color: var(--nuvexa-cta-text);
    border: 1px solid #E2E8F0; /* Light gray border */
  }

  .nuvexa-cta__btn--secondary:hover {
    border-color: #CBD5E1;
    background-color: #F8FAFC;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -5px rgba(0,0,0,0.05);
  }

  /* Reveal Animations */
  .nuvexa-cta--reveal-fade .vue-reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  }

  .nuvexa-cta.is-visible .vue-reveal-item,
  .nuvexa-cta.is-editor .vue-reveal-item {
    opacity: 1;
    transform: translateY(0);
  }

  .nuvexa-cta.is-visible .vue-reveal-item:nth-child(2) { transition-delay: 0.15s; }
  .nuvexa-cta.is-visible .vue-reveal-item:nth-child(3) { transition-delay: 0.3s; }

  /* Responsive */
  @media (max-width: 600px) {
    .nuvexa-cta__actions {
      flex-direction: column;
      gap: 1rem;
    }
    .nuvexa-cta__btn {
      width: 100%;
    }
  }