/* ================================================================
   estilos.css — Creativex S.A.C.
   Paleta corporativa: azul marino #1B2A4A, acento #2E6BE6,
   verde institucional #0F9D6B, fondo #F8F9FC
================================================================ */

/* ----------------------------------------------------------------
   Variables globales y reset base
---------------------------------------------------------------- */
:root {
    --cx-primario:       #1B2A4A;
    --cx-acento:         #2E6BE6;
    --cx-acento-claro:   #7AABFF;
    --cx-verde:          #0F9D6B;
    --cx-naranja:        #E67E22;
    --cx-gris-texto:     #4A5568;
    --cx-gris-claro:     #F8F9FC;
    --cx-texto:          #1A202C;
    --cx-texto-suave:    #718096;
    --cx-borde:          #E2E8F0;
    --cx-navbar-alto:    70px;
    --cx-radio:          10px;
    --cx-radio-lg:       16px;
    --cx-transicion:     all 0.3s ease;
}

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

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

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--cx-texto);
    background-color: #fff;
    overflow-x: hidden;
    line-height: 1.7;
}

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

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

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}


/* ================================================================
   BARRA DE NAVEGACIÓN
================================================================ */
.cx-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: var(--cx-navbar-alto);
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

/* Estado al hacer scroll — fondo sólido */
.cx-navbar.scrolled {
    background: var(--cx-primario);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.cx-navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--cx-navbar-alto);
}

/* Marca / logo */
.cx-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cx-brand-img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.cx-brand-text {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
}

.cx-brand-accent {
    color: var(--cx-acento);
}

/* Menú de escritorio */
.cx-nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.cx-nav-link {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.78);
    padding: 6px 14px;
    border-radius: 6px;
    transition: var(--cx-transicion);
    position: relative;
}

.cx-nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--cx-acento);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.cx-nav-link:hover,
.cx-nav-link.activo {
    color: #fff;
}

.cx-nav-link:hover::after,
.cx-nav-link.activo::after {
    width: 60%;
}

/* Botón CTA en el menú */
.cx-nav-link-cta {
    background: var(--cx-acento);
    color: #fff;
    border-radius: 6px;
    padding: 7px 18px;
}

.cx-nav-link-cta:hover {
    background: #1f58d0;
    color: #fff;
}

.cx-nav-link-cta::after {
    display: none;
}

/* Botón hamburguesa */
.cx-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.cx-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: var(--cx-transicion);
}

.cx-hamburger.abierto span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.cx-hamburger.abierto span:nth-child(2) {
    opacity: 0;
}

.cx-hamburger.abierto span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Menú móvil */
.cx-menu-movil {
    display: none;
    position: fixed;
    top: var(--cx-navbar-alto);
    left: 0;
    width: 100%;
    background: var(--cx-primario);
    z-index: 999;
    padding: 1rem 1.5rem 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transform: translateY(-10px);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.cx-menu-movil.visible {
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.cx-menu-movil-link {
    display: block;
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--cx-transicion);
}

.cx-menu-movil-link:hover {
    color: #fff;
    padding-left: 8px;
}


/* ================================================================
   HERO
================================================================ */
.cx-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Canvas de partículas */
#canvasParticulas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Imagen de fondo */
.cx-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Capa oscura */
.cx-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(27, 42, 74, 0.92) 0%,
        rgba(27, 42, 74, 0.75) 60%,
        rgba(17, 29, 46, 0.88) 100%
    );
    z-index: 1;
}

/* Contenido del hero sobre las capas */
.cx-hero .container {
    flex: 1;
    z-index: 2;
    padding-top: var(--cx-navbar-alto);
}

/* Etiqueta flotante */
.cx-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(46, 107, 230, 0.18);
    border: 1px solid rgba(46, 107, 230, 0.35);
    color: var(--cx-acento-claro);
    font-size: 13px;
    padding: 6px 16px;
    border-radius: 99px;
    margin-bottom: 1.5rem;
}

/* Título principal */
.cx-hero-titulo {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 1.25rem;
}

/* Efecto typewriter */
.cx-typewriter {
    color: var(--cx-acento);
    border-right: 3px solid var(--cx-acento);
    padding-right: 4px;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
}

.cx-typewriter.pausado {
    border-right-color: transparent;
    animation: parpadeo-cursor 0.8s step-end infinite;
}

@keyframes parpadeo-cursor {
    0%, 100% { border-right-color: var(--cx-acento); }
    50%       { border-right-color: transparent; }
}

/* Subtítulo */
.cx-hero-subtitulo {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.68);
    max-width: 520px;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Botones del hero */
.cx-hero-botones {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cx-btn-primario {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--cx-acento);
    color: #fff;
    padding: 12px 28px;
    border-radius: var(--cx-radio);
    font-size: 15px;
    font-weight: 500;
    transition: var(--cx-transicion);
    border: 2px solid var(--cx-acento);
}

.cx-btn-primario:hover {
    background: #1f58d0;
    border-color: #1f58d0;
    color: #fff;
    transform: translateY(-2px);
}

.cx-btn-secundario {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    padding: 12px 28px;
    border-radius: var(--cx-radio);
    font-size: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--cx-transicion);
}

.cx-btn-secundario:hover {
    border-color: rgba(255, 255, 255, 0.7);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

/* Barra de estadísticas */
.cx-hero-stats {
    position: relative;
    z-index: 2;
    background: rgba(17, 29, 46, 0.85);
    backdrop-filter: blur(6px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cx-stat-item {
    padding: 1.5rem 1rem;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.cx-stat-item:last-child {
    border-right: none;
}

.cx-stat-num {
    display: block;
    font-size: 34px;
    font-weight: 700;
    color: var(--cx-acento);
    line-height: 1;
    margin-bottom: 4px;
}

.cx-stat-minedu {
    font-size: 28px;
}

.cx-stat-label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.4;
}

.cx-stat-item-destacado {
    background: rgba(46, 107, 230, 0.12);
}


/* ================================================================
   SECCIONES — BASE
================================================================ */
.cx-seccion {
    padding: 5rem 0;
}

.cx-seccion-clara {
    background-color: #fff;
}

.cx-seccion-gris {
    background-color: var(--cx-gris-claro);
}

.cx-seccion-oscura {
    background-color: var(--cx-primario);
}

.cx-seccion-map {
    background-color: #111d2e;
}

.cx-seccion-clientes {
    background-color: var(--cx-gris-claro);
    padding: 4rem 0;
}

/* Etiqueta de sección */
.cx-etiqueta-seccion {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--cx-acento);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.cx-etiqueta-clara {
    color: var(--cx-acento-claro);
}

/* Títulos de sección */
.cx-titulo-seccion {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    color: var(--cx-texto);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.cx-titulo-claro {
    color: #fff;
}

.cx-subtitulo-claro {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

.cx-texto-seccion {
    font-size: 15px;
    color: var(--cx-gris-texto);
    margin-bottom: 1rem;
    line-height: 1.8;
}


/* ================================================================
   NOSOTROS
================================================================ */
.cx-img-wrapper {
    position: relative;
    border-radius: var(--cx-radio-lg);
    overflow: visible;
}

.cx-img-redondeada {
    width: 100%;
    border-radius: var(--cx-radio-lg);
    object-fit: cover;
    max-height: 420px;
}

/* Insignia flotante sobre la imagen */
.cx-img-badge {
    position: absolute;
    bottom: -18px;
    right: -18px;
    background: var(--cx-acento);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: var(--cx-radio);
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 4px 16px rgba(46, 107, 230, 0.4);
}

.cx-img-badge i {
    font-size: 18px;
}

/* Lista de puntos */
.cx-nosotros-puntos {
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cx-punto {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--cx-gris-texto);
}

.cx-punto i {
    color: var(--cx-verde);
    font-size: 18px;
    flex-shrink: 0;
}


/* ================================================================
   PRODUCTO — SLIDER
================================================================ */
.cx-slider-wrapper {
    position: relative;
    border-radius: var(--cx-radio-lg);
    overflow: hidden;
    background: #0d1b2e;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cx-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 7;
    overflow: hidden;
}

.cx-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.cx-slide.activo {
    opacity: 1;
}

.cx-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cx-slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    padding: 1.5rem 1.25rem 0.75rem;
}

/* Botones prev/next del slider */
.cx-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--cx-transicion);
    font-size: 18px;
}

.cx-slider-btn:hover {
    background: var(--cx-acento);
    border-color: var(--cx-acento);
}

.cx-slider-prev {
    left: 12px;
}

.cx-slider-next {
    right: 12px;
}

/* Puntos del slider */
.cx-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 10px 0;
}

.cx-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    border: none;
    transition: var(--cx-transicion);
    padding: 0;
}

.cx-slider-dot.activo {
    background: var(--cx-acento);
    width: 22px;
    border-radius: 4px;
}


/* ================================================================
   PRODUCTO — TABS DE MÓDULOS
================================================================ */
.cx-tabs-nav {
    display: flex;
    gap: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0;
    margin-bottom: 1.5rem;
    overflow-x: auto;
}

.cx-tab-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    padding: 10px 20px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: var(--cx-transicion);
    white-space: nowrap;
}

.cx-tab-btn:hover {
    color: rgba(255, 255, 255, 0.85);
}

.cx-tab-btn.activo {
    color: #fff;
    border-bottom-color: var(--cx-acento);
}

.cx-tab-panel {
    display: none;
}

.cx-tab-panel.activo {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Tarjeta de módulo */
.cx-modulo-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--cx-radio);
    padding: 1.25rem;
    height: 100%;
    transition: var(--cx-transicion);
}

.cx-modulo-card:hover {
    background: rgba(46, 107, 230, 0.12);
    border-color: rgba(46, 107, 230, 0.3);
    transform: translateY(-3px);
}

.cx-modulo-card i {
    font-size: 28px;
    color: var(--cx-acento);
    margin-bottom: 0.75rem;
    display: block;
}

.cx-modulo-card h5 {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.4rem;
}

.cx-modulo-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin: 0;
}


/* ================================================================
   LOGROS
================================================================ */
.cx-logro-card {
    display: flex;
    gap: 1.25rem;
    background: #fff;
    border: 1px solid var(--cx-borde);
    border-radius: var(--cx-radio-lg);
    padding: 1.5rem;
    height: 100%;
    transition: var(--cx-transicion);
}

.cx-logro-card:hover {
    box-shadow: 0 8px 32px rgba(27, 42, 74, 0.1);
    transform: translateY(-4px);
}

.cx-logro-destacado {
    flex-direction: column;
    border-left: 4px solid var(--cx-acento);
}

.cx-logro-icono {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: var(--cx-radio);
    background: rgba(46, 107, 230, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cx-logro-icono i {
    font-size: 24px;
    color: var(--cx-acento);
}

.cx-logro-icono-verde {
    background: rgba(15, 157, 107, 0.1);
}

.cx-logro-icono-verde i {
    color: var(--cx-verde);
}

.cx-logro-icono-naranja {
    background: rgba(230, 126, 34, 0.1);
}

.cx-logro-icono-naranja i {
    color: var(--cx-naranja);
}

.cx-logro-rm {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: var(--cx-verde);
    background: rgba(15, 157, 107, 0.1);
    padding: 3px 12px;
    border-radius: 99px;
    margin-bottom: 0.5rem;
}

.cx-logro-cuerpo h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--cx-texto);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.cx-logro-cuerpo p {
    font-size: 14px;
    color: var(--cx-gris-texto);
    line-height: 1.7;
    margin: 0;
}

.cx-logro-img {
    margin-top: 1rem;
    width: 100%;
    border-radius: var(--cx-radio);
    border: 1px solid var(--cx-borde);
    object-fit: contain;
    max-height: 180px;
}


/* ================================================================
   MAPA SVG
================================================================ */
.cx-mapa-wrapper {
    position: relative;
}

#mapaPeru {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    display: block;
}

/* Regiones del mapa */
.cx-region {
    fill: #2a3a52;
    stroke: #1a2a40;
    stroke-width: 1;
    transition: fill 0.25s ease;
}

.cx-region:hover {
    fill: #3a4f6a;
}

/* Regiones activas */
.cx-region-activa {
    fill: rgba(46, 107, 230, 0.35);
    stroke: rgba(46, 107, 230, 0.6);
}

.cx-region-activa:hover {
    fill: rgba(46, 107, 230, 0.5);
}

/* Puntos de despliegue */
.cx-punto-ugel {
    cursor: pointer;
}

.cx-punto-circulo {
    fill: var(--cx-acento);
    stroke: #fff;
    stroke-width: 1.5;
    transition: var(--cx-transicion);
}

.cx-punto-ugel:hover .cx-punto-circulo {
    fill: #fff;
    stroke: var(--cx-acento);
    r: 8;
}

/* Efecto ripple / ping */
.cx-punto-ripple {
    fill: rgba(46, 107, 230, 0.2);
    animation: ripple-mapa 2s ease-out infinite;
}

@keyframes ripple-mapa {
    0%   { r: 8;  opacity: 0.5; }
    100% { r: 16; opacity: 0; }
}

/* Etiquetas de texto en el mapa */
.cx-punto-label {
    font-size: 9px;
    fill: rgba(255, 255, 255, 0.75);
    font-weight: 600;
    pointer-events: none;
}

/* Tooltip del mapa */
.cx-mapa-tooltip {
    position: absolute;
    background: var(--cx-primario);
    border: 1px solid rgba(46, 107, 230, 0.4);
    border-radius: var(--cx-radio);
    padding: 10px 14px;
    font-size: 12px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
    min-width: 160px;
    z-index: 10;
}

.cx-mapa-tooltip.visible {
    opacity: 1;
}

.cx-tooltip-nombre {
    font-size: 14px;
    font-weight: 700;
    color: var(--cx-acento-claro);
    margin-bottom: 3px;
}

.cx-tooltip-ugel {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2px;
}

.cx-tooltip-ciudad {
    color: rgba(255, 255, 255, 0.45);
    font-size: 11px;
}

/* Panel lateral del mapa */
.cx-ugel-panel {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--cx-radio-lg);
    padding: 1.5rem;
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cx-ugel-panel-default {
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
}

.cx-ugel-panel-default i {
    font-size: 36px;
    display: block;
    margin-bottom: 0.5rem;
}

.cx-ugel-panel-default p {
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

.cx-ugel-panel-info {
    width: 100%;
}

.cx-panel-encabezado {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.cx-panel-sistema {
    font-size: 22px;
    font-weight: 700;
    color: var(--cx-acento-claro);
}

.cx-panel-region {
    font-size: 12px;
    background: rgba(46, 107, 230, 0.2);
    color: var(--cx-acento-claro);
    padding: 3px 12px;
    border-radius: 99px;
}

.cx-panel-cuerpo {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cx-panel-fila {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.cx-panel-fila i {
    color: var(--cx-acento);
    font-size: 18px;
}

/* Lista de UGELs */
.cx-ugel-lista {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cx-ugel-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--cx-radio);
    padding: 10px 14px;
    cursor: pointer;
    transition: var(--cx-transicion);
}

.cx-ugel-item:hover,
.cx-ugel-item.activo {
    background: rgba(46, 107, 230, 0.12);
    border-color: rgba(46, 107, 230, 0.3);
}

.cx-ugel-sistema {
    font-size: 13px;
    font-weight: 700;
    color: var(--cx-acento-claro);
    min-width: 90px;
}

.cx-ugel-info {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}


/* ================================================================
   SERVICIOS
================================================================ */
.cx-servicio-card {
    background: #fff;
    border: 1px solid var(--cx-borde);
    border-radius: var(--cx-radio-lg);
    padding: 2rem 1.5rem;
    height: 100%;
    transition: var(--cx-transicion);
    position: relative;
    overflow: hidden;
}

.cx-servicio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--cx-acento);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.cx-servicio-card:hover {
    box-shadow: 0 10px 40px rgba(27, 42, 74, 0.1);
    transform: translateY(-5px);
}

.cx-servicio-card:hover::before {
    transform: scaleX(1);
}

.cx-servicio-icono {
    width: 52px;
    height: 52px;
    border-radius: var(--cx-radio);
    background: rgba(46, 107, 230, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: var(--cx-transicion);
}

.cx-servicio-card:hover .cx-servicio-icono {
    background: var(--cx-acento);
}

.cx-servicio-icono i {
    font-size: 24px;
    color: var(--cx-acento);
    transition: var(--cx-transicion);
}

.cx-servicio-card:hover .cx-servicio-icono i {
    color: #fff;
}

.cx-servicio-card h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--cx-texto);
    margin-bottom: 0.6rem;
}

.cx-servicio-card p {
    font-size: 14px;
    color: var(--cx-gris-texto);
    line-height: 1.7;
    margin: 0;
}


/* ================================================================
   CARRUSEL DE CLIENTES — INFINITO
================================================================ */
.cx-carrusel-wrapper {
    overflow: hidden;
    position: relative;
    padding: 0.5rem 0;
}

/* Desvanecimiento en los bordes */
.cx-carrusel-wrapper::before,
.cx-carrusel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.cx-carrusel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--cx-gris-claro), transparent);
}

.cx-carrusel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--cx-gris-claro), transparent);
}

.cx-carrusel-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: carrusel-infinite 28s linear infinite;
}

.cx-carrusel-track:hover {
    animation-play-state: paused;
}

@keyframes carrusel-infinite {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.cx-carrusel-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 140px;
    padding: 1rem;
    background: #fff;
    border: 1px solid var(--cx-borde);
    border-radius: var(--cx-radio);
    transition: var(--cx-transicion);
}

.cx-carrusel-item:hover {
    border-color: var(--cx-acento);
    box-shadow: 0 4px 16px rgba(46, 107, 230, 0.12);
}

.cx-carrusel-item img {
    height: 250px;
    width: auto;
    
}

.cx-carrusel-item:hover img {
    filter: grayscale(0%);
}

.cx-carrusel-item span {
    font-size: 11px;
    color: var(--cx-texto-suave);
    text-align: center;
    line-height: 1.4;
}


/* ================================================================
   CONTACTO
================================================================ */
.cx-contacto-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.cx-contacto-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.cx-contacto-icono {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: var(--cx-radio);
    background: rgba(46, 107, 230, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cx-contacto-icono i {
    font-size: 20px;
    color: var(--cx-acento-claro);
}

.cx-contacto-label {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 3px;
}

.cx-contacto-valor {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.82);
    transition: var(--cx-transicion);
}

a.cx-contacto-valor:hover {
    color: var(--cx-acento-claro);
}

/* Formulario de contacto */
.cx-formulario {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--cx-radio-lg);
    padding: 2rem;
}

.cx-form-label {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 6px;
}

.cx-form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--cx-radio);
    color: #fff;
    font-size: 14px;
    padding: 10px 14px;
    transition: var(--cx-transicion);
    outline: none;
    font-family: inherit;
}

.cx-form-input::placeholder {
    color: rgba(255, 255, 255, 0.28);
}

.cx-form-input:focus {
    border-color: var(--cx-acento);
    background: rgba(46, 107, 230, 0.08);
}

.cx-form-input.invalido {
    border-color: #e53e3e;
}

.cx-form-input.valido {
    border-color: var(--cx-verde);
}

.cx-form-textarea {
    resize: vertical;
    min-height: 110px;
}

.cx-form-error {
    display: block;
    font-size: 12px;
    color: #fc8181;
    margin-top: 4px;
    min-height: 18px;
}

.cx-btn-formulario {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--cx-acento);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: var(--cx-radio);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--cx-transicion);
    width: 100%;
    justify-content: center;
}

.cx-btn-formulario:hover {
    background: #1f58d0;
    transform: translateY(-2px);
}

.cx-btn-formulario:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.cx-form-respuesta {
    padding: 12px 16px;
    border-radius: var(--cx-radio);
    font-size: 14px;
    text-align: center;
}

.cx-form-respuesta.exito {
    background: rgba(15, 157, 107, 0.15);
    color: #68d391;
    border: 1px solid rgba(15, 157, 107, 0.3);
}

.cx-form-respuesta.error {
    background: rgba(229, 62, 62, 0.12);
    color: #fc8181;
    border: 1px solid rgba(229, 62, 62, 0.3);
}


/* ================================================================
   FOOTER
================================================================ */
.cx-footer {
    background: #0d1520;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cx-footer-brand {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1.5px;
    margin-bottom: 2px;
}

.cx-footer-ubicacion {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
}

.cx-footer-copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}

.cx-footer-link {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--cx-transicion);
}

.cx-footer-link:hover {
    color: var(--cx-acento-claro);
}


/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 991px) {
    .cx-nav-links {
        display: none;
    }

    .cx-hamburger {
        display: flex;
    }

    .cx-producto-hero {
        grid-template-columns: 1fr;
    }

    .cx-img-badge {
        bottom: -12px;
        right: 12px;
    }
}

@media (max-width: 767px) {
    .cx-seccion {
        padding: 3.5rem 0;
    }

    .cx-hero-titulo {
        font-size: 26px;
    }

    .cx-stat-num {
        font-size: 26px;
    }

    .cx-logro-card {
        flex-direction: column;
    }

    .cx-formulario {
        padding: 1.25rem;
    }

    #mapaPeru {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .cx-hero-botones {
        flex-direction: column;
    }

    .cx-btn-primario,
    .cx-btn-secundario {
        width: 100%;
        justify-content: center;
    }

    .cx-ugel-lista {
        display: none;
    }
}

/* ================================================================
   CAPTCHA
================================================================ */
.cx-captcha-wrapper {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.cx-captcha-imagen-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.cx-captcha-img {
    width: 200px;
    height: 60px;
    border-radius: var(--cx-radio);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: block;
}

.cx-captcha-reload {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.6);
    width: 36px;
    height: 36px;
    border-radius: var(--cx-radio);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--cx-transicion);
    flex-shrink: 0;
}

.cx-captcha-reload:hover {
    background: var(--cx-acento);
    border-color: var(--cx-acento);
    color: #fff;
}

.cx-captcha-reload i {
    font-size: 18px;
}

.cx-captcha-input-wrapper {
    flex: 1;
    min-width: 140px;
}

.cx-panel-url {
    color: var(--cx-acento-claro);
    font-size: 13px;
    text-decoration: none;
    transition: var(--cx-transicion);
    word-break: break-all;
}

.cx-panel-url:hover {
    color: #fff;
    text-decoration: underline;
}


/* ================================================================
   SECCIÓN ASESORÍA Y SOPORTE TÉCNICO
================================================================ */
.cx-seccion-asesoria {
    background: #0d1b2e;
    padding: 5rem 0;
}

.cx-etiqueta-verde {
    color: #0F9D6B;
}

/* Tabla de precios */
.cx-precios-wrapper {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--cx-radio-lg);
    overflow: hidden;
}

.cx-precios-titulo {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(15, 157, 107, 0.15);
    color: #0F9D6B;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cx-precios-titulo i {
    font-size: 18px;
}

.cx-precio-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--cx-transicion);
}

.cx-precio-item:last-child {
    border-bottom: none;
}

.cx-precio-item:hover {
    background: rgba(255, 255, 255, 0.03);
}

.cx-precio-popular {
    background: rgba(15, 157, 107, 0.08);
    border-left: 3px solid #0F9D6B;
}

.cx-precio-tiempo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
}

.cx-precio-tiempo i {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.35);
}

.cx-precio-monto {
    font-size: 16px;
    font-weight: 700;
    color: #0F9D6B;
}

.cx-precio-badge {
    font-size: 10px;
    background: #0F9D6B;
    color: #fff;
    padding: 2px 8px;
    border-radius: 99px;
    margin-left: 6px;
}

/* Yape */
.cx-yape-wrapper {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--cx-radio-lg);
    padding: 1.25rem 1.5rem;
}

.cx-yape-titulo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
}

.cx-yape-titulo i {
    font-size: 16px;
    color: #0F9D6B;
}

.cx-yape-numero {
    font-size: 28px;
    font-weight: 700;
    color: #0F9D6B;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.cx-yape-nota {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
    margin: 0;
}

/* Nota de disponibilidad */
.cx-disponibilidad {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(46, 107, 230, 0.08);
    border: 1px solid rgba(46, 107, 230, 0.2);
    border-radius: var(--cx-radio);
    padding: 12px 16px;
}

.cx-disponibilidad i {
    font-size: 18px;
    color: var(--cx-acento-claro);
    flex-shrink: 0;
    margin-top: 2px;
}

.cx-disponibilidad p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    margin: 0;
}

/* Indicador de monto */
.cx-monto-display {
    background: rgba(15, 157, 107, 0.08);
    border: 1px solid rgba(15, 157, 107, 0.25);
    border-radius: var(--cx-radio);
    padding: 10px 14px;
    font-size: 20px;
    font-weight: 700;
    color: #0F9D6B;
    height: 44px;
    display: flex;
    align-items: center;
}

.cx-monto-display.vacio {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.3);
}

/* Botón verde para el formulario de cita */
.cx-btn-verde {
    background: #0F9D6B;
}

.cx-btn-verde:hover {
    background: #0a7a54;
}

/* Select con estilo oscuro */
.cx-formulario-cita select.cx-form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='rgba(255,255,255,0.4)' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
    cursor: pointer;
}

.cx-formulario-cita select.cx-form-input option {
    background: #1B2A4A;
    color: #fff;
}

/* Input date con estilo oscuro */
.cx-formulario-cita input[type="date"].cx-form-input {
    color-scheme: dark;
}



.cx-nav-link-asesoria {
    /*
	background: #F03;
    color: #FFF !important;
    border: 1px solid #FFC;
    border-radius: 6px;
    padding: 3px 8px;
    display: flex;
    align-items: center;
    gap: 5px;
	*/
	color:#FFF;
	font-weight:bolder;
}

.cx-nav-link-asesoria:hover {
    background: #0F9D6B;
    color: #fff !important;
    border-color: #0F9D6B;
}

.cx-nav-link-asesoria::after {
    display: none;
}


/* ================================================================
   CTA HERO — Bloque dentro del hero
================================================================ */
.cx-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: rgba(15, 157, 107, 0.12);
    border: 1px solid rgba(15, 157, 107, 0.35);
    border-radius: var(--cx-radio-lg);
    padding: 12px 18px;
    margin-top: 1.75rem;
    max-width: 620px;
    transition: var(--cx-transicion);
}

.cx-hero-cta:hover {
    background: rgba(15, 157, 107, 0.2);
    border-color: rgba(15, 157, 107, 0.6);
}

.cx-hero-cta-icono {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: rgba(15, 157, 107, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulso-cta 2s ease-in-out infinite;
}

.cx-hero-cta-icono i {
    font-size: 20px;
    color: #0F9D6B;
}

@keyframes pulso-cta {
    0%, 100% { box-shadow: 0 0 0 0 rgba(15, 157, 107, 0.4); }
    50%       { box-shadow: 0 0 0 8px rgba(15, 157, 107, 0); }
}





.cx-hero-cta-texto {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cx-hero-cta-texto span {
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.3;
}

.cx-hero-cta-texto small {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.cx-hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #0F9D6B;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--cx-radio);
    white-space: nowrap;
    transition: var(--cx-transicion);
    flex-shrink: 0;
}

.cx-hero-cta-btn:hover {
    background: #0a7a54;
    color: #fff;
    transform: translateX(3px);
}

.cx-hero-cta-btn i {
    font-size: 15px;
    transition: var(--cx-transicion);
}





/* ================================================================
   FRANJA CTA — Entre secciones
================================================================ */
.cx-franja-cta {
    background: linear-gradient(135deg, #0a7a54 0%, #0F9D6B 50%, #1ab87e 100%);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

/* Elemento decorativo de fondo */
.cx-franja-cta::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.cx-franja-cta::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.cx-franja-cta-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* Ícono animado con anillo */
.cx-franja-icono {
    position: relative;
    width: 70px;
    height: 70px;
    min-width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cx-franja-icono i {
    font-size: 34px;
    color: #fff;
    position: relative;
    z-index: 1;
}

.cx-franja-icono-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    animation: anillo-cta 2.5s ease-out infinite;
}

@keyframes anillo-cta {
    0%   { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* Texto de la franja */
.cx-franja-texto {
    flex: 1;
    min-width: 200px;
}

.cx-franja-texto h3 {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    line-height: 1.3;
}

.cx-franja-texto p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

/* Botón de la franja */
.cx-franja-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #0F9D6B;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: var(--cx-radio);
    white-space: nowrap;
    transition: var(--cx-transicion);
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.cx-franja-btn:hover {
    background: #1B2A4A;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.cx-franja-btn i {
    font-size: 18px;
}

/* Responsive */
@media (max-width: 767px) {
    .cx-hero-cta {
        flex-direction: column;
        text-align: center;
    }

    .cx-franja-cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .cx-franja-icono {
        margin: 0 auto;
    }
}
















/* ================================================================
   MODAL DE CONFIRMACIÓN
================================================================ */
.cx-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.cx-modal-overlay.visible {
    opacity: 1;
    pointer-events: all;
}

.cx-modal {
    background: #162238;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--cx-radio-lg);
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(20px) scale(0.97);
    transition: transform 0.3s ease;
}

.cx-modal-overlay.visible .cx-modal {
    transform: translateY(0) scale(1);
}

/* Encabezado del modal */
.cx-modal-encabezado {
    padding: 1.75rem 1.75rem 1.25rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.cx-modal-icono {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(15, 157, 107, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    animation: pulso-cta 2s ease-in-out infinite;
}

.cx-modal-icono i {
    font-size: 26px;
    color: #0F9D6B;
}

.cx-modal-encabezado h3 {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.cx-modal-encabezado p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
    line-height: 1.5;
}

/* Cuerpo del modal */
.cx-modal-cuerpo {
    padding: 1.25rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cx-modal-fila {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cx-modal-fila:last-child {
    border-bottom: none;
}

.cx-modal-fila-destacada {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--cx-radio);
    padding: 10px 12px;
    margin: 2px 0;
    border-bottom: none;
}

.cx-modal-etiqueta {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    min-width: 140px;
    flex-shrink: 0;
    padding-top: 1px;
}

.cx-modal-valor {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.82);
    text-align: right;
    line-height: 1.4;
}

.cx-modal-monto {
    font-size: 18px;
    font-weight: 700;
    color: #0F9D6B;
}

.cx-modal-yape {
    font-weight: 600;
    color: var(--cx-acento-claro);
}

/* Nota de disponibilidad */
.cx-modal-nota {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    background: rgba(46, 107, 230, 0.08);
    border-top: 1px solid rgba(46, 107, 230, 0.15);
    padding: 12px 1.75rem;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.5;
}

.cx-modal-nota i {
    font-size: 16px;
    color: var(--cx-acento-claro);
    flex-shrink: 0;
    margin-top: 1px;
}

/* Botones del modal */
.cx-modal-botones {
    display: flex;
    gap: 10px;
    padding: 1.25rem 1.75rem 1.75rem;
}

.cx-modal-btn-cancelar {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    padding: 11px 16px;
    border-radius: var(--cx-radio);
    cursor: pointer;
    transition: var(--cx-transicion);
}

.cx-modal-btn-cancelar:hover {
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}

.cx-modal-btn-confirmar {
    flex: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: #0F9D6B;
    border: none;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 11px 20px;
    border-radius: var(--cx-radio);
    cursor: pointer;
    transition: var(--cx-transicion);
}

.cx-modal-btn-confirmar:hover {
    background: #0a7a54;
    transform: translateY(-2px);
}

.cx-modal-btn-confirmar:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Scroll interno del modal en pantallas pequeñas */
@media (max-width: 480px) {
    .cx-modal-etiqueta {
        min-width: 110px;
    }

    .cx-modal-botones {
        flex-direction: column;
    }
}