/* ==========================================================================
   CONCOMSIS - Paleta Cromática Corporativa Oficial
   Extraída directamente del Logotipo CONCOMSIS:
   - 5 Tonos Verdes Primarios y de Acento del Isotipo
   - Tonos Grises Neutros Secundarios del Logotipo tipográfico
   ========================================================================== */
:root {
    /* 5 Tonos de Verde Corporativo CONCOMSIS */
    --con-green-light: #daf034;      /* Tono 1: Verde Lima / Resplandor Neón */
    --con-green-primary: #bde00b;    /* Tono 2: Verde Eléctrico / Acento Primario */
    --con-green-chartreuse: #aad103; /* Tono 3: Verde Chartreuse / Intermedio Brillante */
    --con-green-mid: #77b000;        /* Tono 4: Verde Manzana / Marca y Botones */
    --con-green-deep: #5f8f00;       /* Tono 5: Verde Bosque Técnico / Bordes y Sombras */

    /* Tonos Grises Corporativos de las Letras del Logo */
    --con-gray-light: #acac9d;       /* Gris Letras Primario */
    --con-gray-muted: #abab9d;       /* Gris Letras Secundario */
    --con-gray-soft: #d8d8ce;        /* Gris Claro Letras */
    --con-gray-dark: #636357;        /* Gris Oscuro Letras */
    
    /* Variables de Tema Axtra Sobrescritas con la Identidad CONCOMSIS */
    --primary: #bde00b;
    --primary-hover: #77b000;
}

/* ==========================================================================
   CONCOMSIS - Estilos personalizados del proyecto
   ========================================================================== */

/* Añade aquí estilos adicionales específicos para el sitio web */


/* ==========================================================================
   CONCOMSIS - Nav & Mega Menu Personalizado & Toggle de Modo
   ========================================================================== */

/* Ajuste de espaciado en la barra de navegación para que no desborde en desktop */
.header__nav-2 .main-menu-3 > li {
    padding: 0 16px !important;
}

.header__nav-2 .main-menu-3 > li > a {
    font-size: 15px !important;
    white-space: nowrap !important;
    font-weight: 500 !important;
}

@media only screen and (min-width: 1200px) and (max-width: 1400px) {
    .header__nav-2 .main-menu-3 > li {
        padding: 0 12px !important;
    }
    .header__nav-2 .main-menu-3 > li > a {
        font-size: 14px !important;
    }
}

/* Mega Menu / BigMenu para Desarrollo e Infraestructura */
.mega-menu-desarrollo,
.mega-menu-infraestructura {
    position: absolute;
    left: 50% !important;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 85px;
    z-index: 999;
    background: #181818;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px 28px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: left !important;
}

.mega-menu-desarrollo {
    width: 1060px !important;
    max-width: 95vw;
}

.mega-menu-infraestructura {
    width: 820px !important;
    max-width: 95vw;
}

body:not(.dark) .mega-menu-desarrollo,
body:not(.dark) .mega-menu-infraestructura {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.main-menu-3 > li:hover .mega-menu-desarrollo,
.main-menu-3 > li:hover .mega-menu-infraestructura {
    top: 72px;
    opacity: 1;
    visibility: visible;
}

/* Fila 1: CTA Banner en 2 columnas */
.mm-row-top {
    display: block;
    margin-bottom: 22px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body:not(.dark) .mm-row-top {
    border-bottom-color: rgba(0, 0, 0, 0.08);
}

.mm-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(189, 224, 11, 0.08) 0%, rgba(189, 224, 11, 0.02) 100%);
    border: 1px solid rgba(189, 224, 11, 0.25);
    border-radius: 10px;
    padding: 18px 24px;
}

.mm-banner-infra {
    background: linear-gradient(135deg, rgba(189, 224, 11, 0.08) 0%, rgba(119, 176, 0, 0.02) 100%);
    border-color: rgba(189, 224, 11, 0.25);
}

.mm-banner-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white, #fff);
    margin-bottom: 6px;
}

body:not(.dark) .mm-banner-info h4 {
    color: #111;
}

.mm-banner-info p {
    font-size: 13px;
    line-height: 1.5;
    color: #aaa;
    margin: 0;
    max-width: 650px;
}

body:not(.dark) .mm-banner-info p {
    color: #555;
}

.mm-btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #bde00b;
    color: #000 !important;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 6px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.mm-btn-cta-infra {
    background: #77b000;
}

.mm-btn-cta:hover {
    background: #fff;
    color: #000 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(189, 224, 11, 0.3);
}

.mm-btn-cta-infra:hover {
    box-shadow: 0 6px 15px rgba(119, 176, 0, 0.3);
}

/* Fila 2: Columnas (2 columnas para Infraestructura, 3 columnas para Desarrollo) */
.mm-row-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
}

.mm-row-bottom.mm-3col {
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 24px;
}

.mm-col h5 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #bde00b;
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

body:not(.dark) .mm-col h5 {
    color: #77b000;
    border-bottom-color: rgba(0, 0, 0, 0.06);
}

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

.mm-col ul li {
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
}

.mm-col ul li a {
    display: block;
    padding: 7px 10px !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
    color: #bbb !important;
    border-radius: 6px;
    transition: all 0.2s ease;
    text-transform: none !important;
}

body:not(.dark) .mm-col ul li a {
    color: #444 !important;
}

.mm-col ul li a:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.05);
    padding-left: 15px !important;
}

body:not(.dark) .mm-col ul li a:hover {
    color: #000 !important;
    background: rgba(0, 0, 0, 0.04);
}

/* Botón flotante Switcher Mode Toggle */
.theme-toggle-btn {
    position: fixed;
    width: 46px;
    height: 46px;
    background: #bde00b;
    color: #000;
    right: 20px;
    bottom: 25px;
    border-radius: 50%;
    z-index: 9999;
    border: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.theme-toggle-btn:hover {
    transform: scale(1.1);
    background: #fff;
    color: #000;
}

/* Ocultar el switcher viejo si quedase algo */
.switcher__items {
    display: none !important;
}

/* ============================================================
   Estilos para Catálogo de Productos y Servicios (CRM REST API)
   ============================================================ */
.api-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 20px;
}

.api-status-live {
    background: rgba(189, 224, 11, 0.12);
    color: #bde00b;
    border: 1px solid rgba(189, 224, 11, 0.3);
}

.api-status-cached {
    background: rgba(119, 176, 0, 0.12);
    color: #77b000;
    border: 1px solid rgba(119, 176, 0, 0.3);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 10px currentColor;
    display: inline-block;
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.85); }
}

/* ==========================================================================
   Hero del Catálogo (Espaciado superior sin solapar con header fijo)
   ========================================================================== */
.catalog-hero-section {
    position: relative;
    padding-top: 180px;
    padding-bottom: 70px;
}

.catalog-hero-header {
    position: relative;
    z-index: 2;
}

.catalog-hero-subtitle {
    display: block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #bde00b;
    margin-bottom: 12px;
}

.catalog-hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 20px;
}

body:not(.dark) .catalog-hero-title {
    color: #0f172a;
}

@media (max-width: 768px) {
    .catalog-hero-section {
        padding-top: 140px;
    }
    .catalog-hero-title {
        font-size: 38px;
    }
}

.catalog-hero-desc {
    font-size: 17px;
    line-height: 1.6;
    color: #94a3b8;
    max-width: 620px;
    margin: 0;
}

body:not(.dark) .catalog-hero-desc {
    color: #475569;
}

/* Botón cambio de catálogo (Productos <-> Servicios) */
.catalog-switch-page-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    background: rgba(119, 176, 0, 0.12);
    border: 1px solid rgba(119, 176, 0, 0.35);
    color: #77b000 !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.catalog-switch-page-btn:hover {
    background: #77b000;
    color: #000 !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(119, 176, 0, 0.25);
}

.catalog-switch-page-btn-prod {
    background: rgba(189, 224, 11, 0.12);
    border-color: rgba(189, 224, 11, 0.35);
    color: #bde00b !important;
}

.catalog-switch-page-btn-prod:hover {
    background: #bde00b;
    color: #000 !important;
    box-shadow: 0 10px 25px rgba(189, 224, 11, 0.25);
}

/* ==========================================================================
   Buscador y Filtros de Categorías
   ========================================================================== */
.catalog-search-wrap {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body:not(.dark) .catalog-search-wrap {
    border-bottom-color: rgba(0, 0, 0, 0.08);
}

.catalog-filter-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.product-filter-btn,
.service-filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #94a3b8;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.25s ease;
}

body:not(.dark) .product-filter-btn,
body:not(.dark) .service-filter-btn {
    background: #f1f5f9;
    border-color: #cbd5e1;
    color: #475569;
}

.product-filter-btn:hover,
.product-filter-btn.active {
    background: #bde00b;
    border-color: #bde00b;
    color: #000000;
    box-shadow: 0 4px 15px rgba(189, 224, 11, 0.25);
}

.service-filter-btn:hover,
.service-filter-btn.active {
    background: #77b000;
    border-color: #77b000;
    color: #000000;
    box-shadow: 0 4px 15px rgba(119, 176, 0, 0.25);
}

.catalog-search-box {
    position: relative;
    min-width: 300px;
}

@media (max-width: 768px) {
    .catalog-search-box {
        width: 100%;
        min-width: 100%;
    }
}

.catalog-search-box input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 12px 46px 12px 22px;
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

body:not(.dark) .catalog-search-box input {
    background: #ffffff;
    border-color: #cbd5e1;
    color: #0f172a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.catalog-search-box input:focus {
    border-color: #bde00b;
    box-shadow: 0 0 15px rgba(189, 224, 11, 0.2);
}

.catalog-search-box i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}

/* ==========================================================================
   Animación de Entrada de Tarjetas (Scroll-Driven Smooth Fade-Up)
   ========================================================================== */
.catalog-col-item {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.catalog-col-item.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Diseño de Tarjeta de Producto y Servicio
   ========================================================================== */
.catalog-card {
    background: #141416;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease;
    position: relative;
    z-index: 1;
}

body:not(.dark) .catalog-card {
    background: #ffffff;
    border-color: #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.catalog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(189, 224, 11, 0.4);
    box-shadow: 0 20px 45px rgba(189, 224, 11, 0.12);
}

.catalog-card.card-service:hover {
    border-color: rgba(119, 176, 0, 0.4);
    box-shadow: 0 20px 45px rgba(119, 176, 0, 0.12);
}

/* Cabecera visual con Imagen de Producto / Servicio */
.catalog-card-media {
    position: relative;
    height: 195px;
    width: 100%;
    overflow: hidden;
    background: #090a0d;
}

body:not(.dark) .catalog-card-media {
    background: #f1f5f9;
}

.catalog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
}

.catalog-card:hover .catalog-card-img {
    transform: scale(1.06);
}

.catalog-media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(20, 20, 22, 0.95) 0%, rgba(20, 20, 22, 0.25) 55%, rgba(0, 0, 0, 0.35) 100%);
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    pointer-events: none;
}

body:not(.dark) .catalog-media-overlay {
    background: linear-gradient(to top, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.2) 55%, rgba(0, 0, 0, 0.15) 100%);
}

.catalog-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    background: rgba(189, 224, 11, 0.2);
    border: 1px solid rgba(189, 224, 11, 0.4);
    color: #bde00b;
    backdrop-filter: blur(8px);
}

body:not(.dark) .catalog-badge {
    background: rgba(119, 176, 0, 0.15);
    border-color: rgba(119, 176, 0, 0.3);
    color: #5f8f00;
}

.catalog-badge-service {
    background: rgba(119, 176, 0, 0.2);
    border-color: rgba(119, 176, 0, 0.4);
    color: #77b000;
}

body:not(.dark) .catalog-badge-service {
    background: rgba(95, 143, 0, 0.15);
    border-color: rgba(95, 143, 0, 0.3);
    color: #5f8f00;
}

.catalog-type-pill {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 8px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    backdrop-filter: blur(6px);
}

body:not(.dark) .catalog-type-pill {
    background: rgba(15, 23, 42, 0.75);
}

/* Contenido de la Tarjeta */
.catalog-card-content {
    padding: 24px 26px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.catalog-card-price-bar {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

body:not(.dark) .catalog-card-price-bar {
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

.catalog-price-tag .amount {
    font-size: 22px;
    font-weight: 800;
    color: #bde00b;
    letter-spacing: -0.5px;
}

body:not(.dark) .catalog-price-tag .amount {
    color: #5f8f00;
}

.catalog-card.card-service .catalog-price-tag .amount {
    color: #77b000;
}

body:not(.dark) .catalog-card.card-service .catalog-price-tag .amount {
    color: #5f8f00;
}

.catalog-price-tag .period {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 500;
}

body:not(.dark) .catalog-price-tag .period {
    color: #64748b;
}

.catalog-sku-tag {
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    letter-spacing: 0.5px;
    background: rgba(255, 255, 255, 0.05);
    padding: 3px 8px;
    border-radius: 4px;
}

body:not(.dark) .catalog-sku-tag {
    background: #f1f5f9;
    color: #475569;
}

/* Efecto de Máquina de Escribir en Título */
.catalog-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.35;
    min-height: 52px;
    display: flex;
    align-items: flex-start;
}

body:not(.dark) .catalog-title {
    color: #0f172a;
}

.catalog-typewriter.is-typing::after {
    content: '|';
    display: inline-block;
    color: #bde00b;
    animation: blinkCaret 0.7s infinite;
    margin-left: 3px;
    font-weight: 300;
}

.catalog-card.card-service .catalog-typewriter.is-typing::after {
    color: #77b000;
}

@keyframes blinkCaret {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.catalog-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #94a3b8;
    margin-bottom: 20px;
    min-height: 66px;
}

body:not(.dark) .catalog-desc {
    color: #475569;
}

/* Lista de Especificaciones Clave */
.catalog-features-wrap {
    margin-bottom: 20px;
}

.catalog-features-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748b;
    font-weight: 700;
    margin-bottom: 10px;
}

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

.catalog-features li {
    font-size: 13px;
    color: #cbd5e1;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.45;
}

body:not(.dark) .catalog-features li {
    color: #334155;
}

.catalog-features li i {
    color: #bde00b;
    font-size: 13px;
    margin-top: 3px;
    flex-shrink: 0;
}

.catalog-card.card-service .catalog-features li i {
    color: #77b000;
}

body:not(.dark) .catalog-card.card-service .catalog-features li i {
    color: #5f8f00;
}

/* Botones de Acción (Sin interferencia de clases magnetic / btn-item) */
.catalog-card-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

body:not(.dark) .catalog-card-actions {
    border-top-color: #e2e8f0;
}

.catalog-action-btn {
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: 700;
    transition: all 0.25s ease;
}

.catalog-action-btn.primary {
    flex: 1;
    background: #bde00b;
    color: #000000 !important;
    padding: 12px 18px;
    font-size: 14px;
}

.catalog-action-btn.primary:hover {
    background: #aad103;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(189, 224, 11, 0.3);
}

.catalog-card.card-service .catalog-action-btn.primary {
    background: #77b000;
    color: #000000 !important;
}

.catalog-card.card-service .catalog-action-btn.primary:hover {
    background: #5f8f00;
    box-shadow: 0 8px 20px rgba(119, 176, 0, 0.3);
}

.catalog-action-btn.whatsapp {
    width: 48px;
    height: 48px;
    background: #77b000;
    color: #ffffff !important;
    font-size: 20px;
    border-radius: 10px;
}

.catalog-action-btn.whatsapp:hover {
    background: #77b000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(119, 176, 0, 0.35);
}

.catalog-action-btn.contact {
    width: 48px;
    height: 48px;
    background: rgba(189, 224, 11, 0.12);
    color: #bde00b !important;
    border: 1px solid rgba(189, 224, 11, 0.35);
    font-size: 18px;
    border-radius: 10px;
}

.catalog-action-btn.contact:hover {
    background: #bde00b;
    color: #000000 !important;
    border-color: #bde00b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(189, 224, 11, 0.35);
}

body:not(.dark) .catalog-action-btn.contact {
    background: #f1f5f9;
    color: #0f172a !important;
    border: 1px solid rgba(15, 23, 42, 0.2);
}

body:not(.dark) .catalog-action-btn.contact:hover {
    background: #0f172a;
    color: #ffffff !important;
    border-color: #0f172a;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.25);
}

/* ==========================================================================
   Sección CTA Limpia (Sin duplicación de texto ni splitText roto)
   ========================================================================== */
.catalog-cta-section {
    padding: 90px 0;
    background: #111215;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

body:not(.dark) .catalog-cta-section {
    background: #f8fafc;
    border-top-color: #e2e8f0;
}

.catalog-cta-heading {
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.25;
}

body:not(.dark) .catalog-cta-heading {
    color: #0f172a;
}

.catalog-cta-subtext {
    font-size: 17px;
    color: #94a3b8;
    max-width: 640px;
    margin: 0 auto 32px auto;
    line-height: 1.6;
}

body:not(.dark) .catalog-cta-subtext {
    color: #475569;
}

.catalog-cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.catalog-cta-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #bde00b;
    color: #000000 !important;
    font-size: 15px;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 40px;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.catalog-cta-primary-btn:hover {
    background: #aad103;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(189, 224, 11, 0.3);
}

.catalog-cta-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 40px;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

body:not(.dark) .catalog-cta-whatsapp-btn {
    background: #ffffff;
    border-color: #cbd5e1;
    color: #0f172a !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.catalog-cta-whatsapp-btn:hover {
    background: #77b000;
    border-color: #77b000;
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(119, 176, 0, 0.3);
}

/* ==========================================================================
   CONCOMSIS - Estilos de Alto Contraste para /desarrollo-a-medida
   ========================================================================== */

/* Subtítulo / Tag de categoría */
.dev-badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(189, 224, 11, 0.1);
    border: 1px solid rgba(189, 224, 11, 0.3);
    color: #bde00b !important;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
}

body:not(.dark) .dev-badge-tag {
    background: rgba(95, 143, 0, 0.08);
    border-color: rgba(95, 143, 0, 0.3);
    color: #77b000 !important;
}

/* Títulos y textos del área de desarrollo */
body.dark .development__area .sec-title {
    color: #ffffff !important;
}

body.dark .development__content p {
    color: #cbd5e1 !important;
    font-size: 18px;
    line-height: 1.7;
}

body:not(.dark) .development__content p {
    color: #334155 !important;
    font-size: 18px;
    line-height: 1.7;
}

body.dark .development__wrapper ul li {
    color: #e2e8f0 !important;
    font-size: 16px;
    font-weight: 500;
}

body:not(.dark) .development__wrapper ul li {
    color: #1e293b !important;
    font-size: 16px;
    font-weight: 600;
}

/* Tarjetas de Metodología de 4 Semanas (Workflow) */
.dev-workflow-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px 24px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dev-workflow-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #bde00b, #77b000);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dev-workflow-card:hover {
    transform: translateY(-5px);
    border-color: rgba(189, 224, 11, 0.3);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.dev-workflow-card:hover::before {
    opacity: 1;
}

body:not(.dark) .dev-workflow-card {
    background: #ffffff;
    border-color: #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

body:not(.dark) .dev-workflow-card:hover {
    background: #ffffff;
    border-color: #bde00b;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.dev-workflow-num {
    font-size: 14px;
    font-weight: 800;
    color: #bde00b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

body:not(.dark) .dev-workflow-num {
    color: #77b000;
}

.dev-workflow-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 14px;
}

body:not(.dark) .dev-workflow-title {
    color: #0f172a !important;
}

.dev-workflow-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #94a3b8 !important;
    margin: 0;
}

body:not(.dark) .dev-workflow-desc {
    color: #475569 !important;
}

/* Tarjetas de Pilares Técnicos de Arquitectura */
.dev-pillar-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 28px 24px;
    height: 100%;
    transition: all 0.3s ease;
}

.dev-pillar-card:hover {
    border-color: rgba(189, 224, 11, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(189, 224, 11, 0.1);
}

body:not(.dark) .dev-pillar-card {
    background: #ffffff;
    border-color: #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

body:not(.dark) .dev-pillar-card:hover {
    border-color: #bde00b;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.dev-pillar-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(189, 224, 11, 0.1);
    color: #bde00b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
}

body:not(.dark) .dev-pillar-icon {
    background: rgba(95, 143, 0, 0.1);
    color: #77b000;
}

.dev-pillar-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 10px;
}

body:not(.dark) .dev-pillar-title {
    color: #0f172a !important;
}

.dev-pillar-text {
    font-size: 14px;
    line-height: 1.6;
    color: #94a3b8 !important;
    margin: 0;
}

body:not(.dark) .dev-pillar-text {
    color: #475569 !important;
}

/* Tarjeta Destacada de Precios ($20,000 MXN / mes) */
.dev-pricing-box {
    background: linear-gradient(135deg, rgba(18, 20, 18, 0.95) 0%, rgba(24, 28, 20, 0.95) 100%);
    border: 2px solid rgba(189, 224, 11, 0.35);
    border-radius: 20px;
    padding: 45px 35px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(189, 224, 11, 0.1);
    position: relative;
    overflow: hidden;
}

.dev-pricing-fast {
    border-color: rgba(218, 240, 52, 0.6);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 35px rgba(218, 240, 52, 0.2);
}

body:not(.dark) .dev-pricing-box {
    background: linear-gradient(135deg, #ffffff 0%, #f7faf0 100%);
    border-color: #bde00b;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

body:not(.dark) .dev-pricing-fast {
    border-color: #8fa700;
    background: linear-gradient(135deg, #ffffff 0%, #fcfef2 100%);
}

.dev-pricing-badge {
    display: inline-block;
    background: #bde00b;
    color: #000000;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.dev-pricing-badge-fast {
    background: #daf034;
    color: #000000;
}

.dev-pricing-amount {
    font-size: 46px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 8px;
}

body:not(.dark) .dev-pricing-amount {
    color: #0f172a;
}

.dev-pricing-currency {
    font-size: 16px;
    color: #94a3b8;
    font-weight: 500;
}

body:not(.dark) .dev-pricing-currency {
    color: #64748b;
}

.dev-pricing-list {
    list-style: none;
    padding: 0;
    margin: 28px 0;
}

.dev-pricing-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    line-height: 1.5;
    color: #e2e8f0 !important;
    margin-bottom: 14px;
}

body:not(.dark) .dev-pricing-list li {
    color: #1e293b !important;
}

.dev-pricing-list li i {
    color: #bde00b;
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

body:not(.dark) .dev-pricing-list li i {
    color: #77b000;
}

/* Acordeón FAQ con Alto Contraste en Dark Mode */
.dev-faq-card {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 14px !important;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.dev-faq-card:hover {
    border-color: rgba(189, 224, 11, 0.3) !important;
}

body:not(.dark) .dev-faq-card {
    background: #ffffff !important;
    border-color: #e2e8f0 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.dev-faq-btn {
    background: transparent !important;
    color: #ffffff !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    padding: 22px 26px !important;
    box-shadow: none !important;
    outline: none !important;
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

body:not(.dark) .dev-faq-btn {
    color: #0f172a !important;
}

.dev-faq-btn:not(.collapsed) {
    color: #bde00b !important;
}

body:not(.dark) .dev-faq-btn:not(.collapsed) {
    color: #77b000 !important;
}

.dev-faq-body {
    padding: 0 26px 24px 26px !important;
}

.dev-faq-body p {
    color: #cbd5e1 !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
    margin: 0;
}

body:not(.dark) .dev-faq-body p {
    color: #475569 !important;
}

/* ==========================================================================
   Ecosistema de Soluciones & Enlaces debajo de imágenes en /desarrollo-a-medida
   ========================================================================== */
.dev-ecosystem-wrapper {
    margin-top: 60px;
    padding-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

body:not(.dark) .dev-ecosystem-wrapper {
    border-top-color: #e2e8f0;
}

.dev-nav-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px 24px;
    height: 100%;
    transition: all 0.3s ease;
}

.dev-nav-box:hover {
    border-color: rgba(189, 224, 11, 0.35);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transform: translateY(-4px);
}

body:not(.dark) .dev-nav-box {
    background: #ffffff;
    border-color: #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

body:not(.dark) .dev-nav-box:hover {
    border-color: #bde00b;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.dev-nav-box-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

body:not(.dark) .dev-nav-box-header {
    border-bottom-color: #f1f5f9;
}

.dev-nav-box-header i {
    font-size: 20px;
    color: #bde00b;
}

body:not(.dark) .dev-nav-box-header i {
    color: #77b000;
}

.dev-nav-box-header h4 {
    font-size: 19px;
    font-weight: 700;
    color: #ffffff !important;
    margin: 0;
}

body:not(.dark) .dev-nav-box-header h4 {
    color: #0f172a !important;
}

.dev-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dev-nav-links li {
    margin-bottom: 10px;
}

.dev-nav-links li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: 8px;
    color: #cbd5e1 !important;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none !important;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
}

body:not(.dark) .dev-nav-links li a {
    color: #334155 !important;
    background: #f8fafc;
}

.dev-nav-links li a:hover {
    color: #bde00b !important;
    background: rgba(189, 224, 11, 0.08);
    border-color: rgba(189, 224, 11, 0.25);
    transform: translateX(4px);
}

body:not(.dark) .dev-nav-links li a:hover {
    color: #77b000 !important;
    background: #f7faf0;
    border-color: #bde00b;
}

.dev-nav-links li a span.nav-item-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dev-nav-links li a i.arrow-icon {
    font-size: 11px;
    opacity: 0.5;
    transition: all 0.2s ease;
}

.dev-nav-links li a:hover i.arrow-icon {
    opacity: 1;
    transform: translateX(3px);
}

/* Visual Showcase Cards en Desarrollo a Medida */
.dev-showcase-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #090b10;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

body:not(.dark) .dev-showcase-card {
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.dev-showcase-card:hover {
    transform: translateY(-4px);
    border-color: rgba(189, 224, 11, 0.5);
    box-shadow: 0 25px 50px rgba(189, 224, 11, 0.15);
}

body:not(.dark) .dev-showcase-card:hover {
    border-color: #77b000;
    box-shadow: 0 20px 40px rgba(0, 143, 114, 0.15);
}

.dev-showcase-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.dev-showcase-caption {
    padding: 14px 18px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

body:not(.dark) .dev-showcase-caption {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.dev-showcase-caption span.caption-title {
    font-size: 13px;
    font-weight: 600;
    color: #e2e8f0;
    display: flex;
    align-items: center;
    gap: 8px;
}

body:not(.dark) .dev-showcase-caption span.caption-title {
    color: #1e293b;
}

.dev-showcase-caption span.caption-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    background: rgba(189, 224, 11, 0.15);
    color: #bde00b;
    border: 1px solid rgba(189, 224, 11, 0.3);
}

body:not(.dark) .dev-showcase-caption span.caption-badge {
    background: rgba(0, 143, 114, 0.1);
    color: #77b000;
    border-color: rgba(0, 143, 114, 0.3);
}

/* Botones CTA dedicados en Desarrollo a Medida (Evitan colisión con circulares wc-btn-primary) */
.dev-cta-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    padding: 16px 36px !important;
    border-radius: 40px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    width: auto !important;
    height: auto !important;
    min-height: 54px !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    line-height: 1 !important;
}

.dev-cta-btn-primary {
    background: #bde00b !important;
    color: #000000 !important;
    border: 1px solid #bde00b !important;
    box-shadow: 0 4px 20px rgba(189, 224, 11, 0.3) !important;
}

.dev-cta-btn-primary:hover {
    background: #aad103 !important;
    border-color: #aad103 !important;
    color: #000000 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 25px rgba(189, 224, 11, 0.45) !important;
}

.dev-cta-btn-secondary {
    background: rgba(255, 255, 255, 0.06) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(8px) !important;
}

body:not(.dark) .dev-cta-btn-secondary {
    background: #ffffff !important;
    color: #0f172a !important;
    border-color: #cbd5e1 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
}

.dev-cta-btn-secondary:hover {
    background: rgba(189, 224, 11, 0.12) !important;
    border-color: #bde00b !important;
    color: #bde00b !important;
    transform: translateY(-3px) !important;
}

body:not(.dark) .dev-cta-btn-secondary:hover {
    background: #f7faf0 !important;
    border-color: #77b000 !important;
    color: #5f8f00 !important;
}

/* ==========================================================================
   Condiciones de Servicio & Reglas de Desarrollo (Legal Tech Framework)
   ========================================================================== */
.dev-rules-section {
    position: relative;
}

.dev-rule-card {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
}

body:not(.dark) .dev-rule-card {
    background: #ffffff;
    border-color: #e2e8f0;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}

.dev-rule-card:hover {
    transform: translateY(-4px);
    border-color: rgba(189, 224, 11, 0.4);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
}

body:not(.dark) .dev-rule-card:hover {
    border-color: #77b000;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.dev-rule-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(189, 224, 11, 0.1);
    color: #bde00b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}

body:not(.dark) .dev-rule-icon {
    background: rgba(119, 176, 0, 0.1);
    color: #77b000;
}

.dev-rule-tag {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #77b000;
    margin-bottom: 8px;
}

body:not(.dark) .dev-rule-tag {
    color: #5f8f00;
}

.dev-rule-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.35;
}

body:not(.dark) .dev-rule-card h4 {
    color: #0f172a;
}

.dev-rule-card p {
    font-size: 14px;
    line-height: 1.65;
    color: #94a3b8;
    margin: 0;
    flex-grow: 1;
}

body:not(.dark) .dev-rule-card p {
    color: #475569;
}

.dev-rule-card p strong {
    color: #e2e8f0;
}

body:not(.dark) .dev-rule-card p strong {
    color: #1e293b;
}

/* Tarjeta destacada de advertencia/rescisión */
.dev-rule-warning {
    border-color: rgba(234, 179, 8, 0.25);
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.dev-rule-warning .dev-rule-icon {
    background: rgba(234, 179, 8, 0.15);
    color: #eab308;
}

.dev-rule-warning .dev-rule-tag {
    color: #eab308;
}

.dev-rule-warning:hover {
    border-color: #eab308;
    box-shadow: 0 16px 32px rgba(234, 179, 8, 0.12);
}

body:not(.dark) .dev-rule-warning {
    background: #fffdf5;
    border-color: #fde047;
}

body:not(.dark) .dev-rule-warning .dev-rule-icon {
    color: #ca8a04;
}

body:not(.dark) .dev-rule-warning .dev-rule-tag {
    color: #ca8a04;
}

/* ==========================================================================
   PLANTILLA DE ALTO IMPACTO: SOLUCIONES APPCLOUD & LANDINGS DE VENTA
   ========================================================================== */

/* Badges y Tags */
.app-badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--con-green, #bde00b);
    background: rgba(189, 224, 11, 0.08);
    border: 1px solid rgba(189, 224, 11, 0.3);
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
}

body:not(.dark) .app-badge-tag {
    color: #5d8200;
    background: rgba(189, 224, 11, 0.15);
    border-color: rgba(189, 224, 11, 0.5);
}

/* Hero Mockup Frame con Glassmorphism */
.app-mockup-frame {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(189, 224, 11, 0.3);
    background: rgba(15, 23, 42, 0.6);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(189, 224, 11, 0.15);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.app-mockup-frame:hover {
    transform: translateY(-6px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.7), 0 0 55px rgba(189, 224, 11, 0.25);
}

body:not(.dark) .app-mockup-frame {
    background: #ffffff;
    border-color: rgba(189, 224, 11, 0.6);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.app-mockup-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 18px;
    background: rgba(10, 15, 25, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body:not(.dark) .app-mockup-topbar {
    background: #f1f5f9;
    border-bottom-color: #e2e8f0;
}

.app-mockup-dots {
    display: flex;
    gap: 6px;
}

.app-mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.app-mockup-dots span:nth-child(1) { background: #ff5f56; }
.app-mockup-dots span:nth-child(2) { background: #ffbd2e; }
.app-mockup-dots span:nth-child(3) { background: #27c93f; }

.app-mockup-url {
    font-family: monospace;
    font-size: 11px;
    color: #94a3b8;
    background: rgba(255, 255, 255, 0.05);
    padding: 3px 14px;
    border-radius: 12px;
}

body:not(.dark) .app-mockup-url {
    color: #475569;
    background: #e2e8f0;
}

/* Grilla Showcase (Capturas Actuales & Espacios Futuros) */
.app-showcase-card {
    position: relative;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: all 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-showcase-card:hover {
    border-color: rgba(189, 224, 11, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

body:not(.dark) .app-showcase-card {
    background: #ffffff;
    border-color: #e2e8f0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

body:not(.dark) .app-showcase-card:hover {
    border-color: #bde00b;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.09);
}

.app-mockup-frame picture {
    display: block;
    width: 100%;
}

.app-mockup-frame picture img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.app-showcase-thumb {
    position: relative;
    width: 100%;
    min-height: 200px;
    background: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.app-showcase-thumb picture {
    width: 100%;
    display: block;
}

.app-showcase-thumb img,
.app-showcase-thumb picture img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.app-showcase-card:hover .app-showcase-thumb img,
.app-showcase-card:hover .app-showcase-thumb picture img {
    transform: scale(1.04);
}

.app-showcase-thumb-placeholder {
    padding: 40px 20px;
    text-align: center;
    color: #64748b;
}

.app-showcase-thumb-placeholder i {
    font-size: 38px;
    margin-bottom: 12px;
    color: rgba(189, 224, 11, 0.4);
}

.app-showcase-info {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.app-showcase-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--con-green, #bde00b);
    margin-bottom: 8px;
}

body:not(.dark) .app-showcase-tag {
    color: #5d8200;
}

.app-showcase-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.35;
}

body:not(.dark) .app-showcase-title {
    color: #0f172a;
}

.app-showcase-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #94a3b8;
    margin: 0;
}

body:not(.dark) .app-showcase-desc {
    color: #475569;
}

/* Tarjetas de Público Objetivo */
.app-audience-card {
    background: linear-gradient(135deg, rgba(20, 25, 35, 0.95) 0%, rgba(15, 20, 30, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px 26px;
    transition: all 0.3s ease;
    height: 100%;
}

.app-audience-card:hover {
    border-color: rgba(189, 224, 11, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

body:not(.dark) .app-audience-card {
    background: #ffffff;
    border-color: #e2e8f0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.app-audience-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(189, 224, 11, 0.12);
    color: var(--con-green, #bde00b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
}

body:not(.dark) .app-audience-icon {
    background: rgba(189, 224, 11, 0.2);
    color: #5d8200;
}

.app-audience-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

body:not(.dark) .app-audience-title {
    color: #0f172a;
}

.app-audience-text {
    font-size: 14px;
    line-height: 1.6;
    color: #94a3b8;
    margin: 0;
}

body:not(.dark) .app-audience-text {
    color: #475569;
}

/* Banner de Socios VPS & Servidor Propio */
.app-partner-banner {
    background: linear-gradient(135deg, rgba(18, 24, 20, 0.95) 0%, rgba(12, 18, 24, 0.95) 100%);
    border: 2px solid rgba(189, 224, 11, 0.35);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

body:not(.dark) .app-partner-banner {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f8e9 100%);
    border-color: rgba(189, 224, 11, 0.6);
}

.app-partner-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.25s ease;
}

.app-partner-chip:hover {
    background: rgba(189, 224, 11, 0.2);
    border-color: var(--con-green, #bde00b);
    color: var(--con-green, #bde00b);
    transform: translateY(-2px);
}

body:not(.dark) .app-partner-chip {
    background: #ffffff;
    border-color: #cbd5e1;
    color: #0f172a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

body:not(.dark) .app-partner-chip:hover {
    border-color: #77b000;
    color: #5d8200;
}

/* Tabla Comparativa de Paquetes de Licencias & Hardware */
.app-pricing-table-wrap {
    background: linear-gradient(135deg, rgba(18, 20, 25, 0.95) 0%, rgba(12, 14, 18, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    overflow-x: auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

body:not(.dark) .app-pricing-table-wrap {
    background: #ffffff;
    border-color: #e2e8f0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.app-pricing-table {
    width: 100%;
    min-width: 850px;
    border-collapse: collapse;
    margin: 0;
}

.app-pricing-table th {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    background: rgba(255, 255, 255, 0.02);
    padding: 18px 16px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

body:not(.dark) .app-pricing-table th {
    color: #475569;
    background: #f8fafc;
    border-bottom-color: #cbd5e1;
}

.app-pricing-table td {
    padding: 18px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 14px;
    color: #cbd5e1;
    vertical-align: middle;
}

body:not(.dark) .app-pricing-table td {
    border-bottom-color: #f1f5f9;
    color: #1e293b;
}

.app-pricing-table tbody tr {
    transition: background-color 0.2s ease;
}

.app-pricing-table tbody tr:hover {
    background: rgba(189, 224, 11, 0.05);
}

body:not(.dark) .app-pricing-table tbody tr:hover {
    background: #f7faf0;
}

.app-pricing-table tr.highlight-tier {
    background: rgba(189, 224, 11, 0.08);
    border-left: 3px solid var(--con-green, #bde00b);
}

body:not(.dark) .app-pricing-table tr.highlight-tier {
    background: rgba(189, 224, 11, 0.12);
    border-left: 3px solid #77b000;
}

.app-tier-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    color: #000000;
    background: var(--con-green, #bde00b);
    padding: 3px 10px;
    border-radius: 12px;
    margin-left: 8px;
}

.app-pricing-value {
    font-weight: 800;
    font-size: 16px;
    color: #ffffff;
}

body:not(.dark) .app-pricing-value {
    color: #0f172a;
}

.app-pricing-hardware {
    font-family: monospace;
    font-size: 12px;
    color: var(--con-green, #bde00b);
    background: rgba(189, 224, 11, 0.1);
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid rgba(189, 224, 11, 0.2);
    display: inline-block;
}

body:not(.dark) .app-pricing-hardware {
    color: #5d8200;
    background: rgba(189, 224, 11, 0.15);
    border-color: rgba(189, 224, 11, 0.4);
}

/* Soporte para Mockups con Proporción Panorámica 16:9 */
.app-mockup-frame.app-mockup-frame-16-9 picture img,
.app-mockup-frame picture img.app-mockup-img-16-9 {
    aspect-ratio: 16 / 9 !important;
    object-fit: cover;
}

/* Tarjetas de Funciones / Módulos de Aplicación (Sin imágenes) */
.app-function-card {
    background: linear-gradient(135deg, rgba(20, 25, 35, 0.95) 0%, rgba(15, 20, 30, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px 28px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.app-function-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(189, 224, 11, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.app-function-card:hover {
    border-color: rgba(189, 224, 11, 0.35);
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

.app-function-card:hover::before {
    opacity: 1;
}

body:not(.dark) .app-function-card {
    background: #ffffff;
    border-color: #e2e8f0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.app-function-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.app-function-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(189, 224, 11, 0.12);
    color: var(--con-green, #bde00b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
}

.app-function-card:hover .app-function-icon {
    background: #bde00b;
    color: #0b0f19;
    transform: scale(1.05);
}

body:not(.dark) .app-function-icon {
    background: rgba(189, 224, 11, 0.2);
    color: #5d8200;
}

.app-function-badge {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #bde00b;
    background: rgba(189, 224, 11, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(189, 224, 11, 0.25);
}

body:not(.dark) .app-function-badge {
    color: #5d8200;
    background: rgba(189, 224, 11, 0.15);
    border-color: rgba(189, 224, 11, 0.4);
}

.app-function-num {
    font-size: 13px;
    font-weight: 800;
    color: #64748b;
    letter-spacing: 0.05em;
}

.app-function-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.3;
}

body:not(.dark) .app-function-title {
    color: #0f172a;
}

.app-function-desc {
    font-size: 14px;
    line-height: 1.65;
    color: #cbd5e1;
    margin-bottom: 20px;
    flex-grow: 1;
}

body:not(.dark) .app-function-desc {
    color: #475569;
}

.app-function-points {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

body:not(.dark) .app-function-points {
    border-color: #f1f5f9;
}

.app-function-points li {
    font-size: 13px;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 8px;
}

body:not(.dark) .app-function-points li {
    color: #334155;
}

.app-function-points li i {
    color: #bde00b;
    font-size: 11px;
}

body:not(.dark) .app-function-points li i {
    color: #5d8200;
}

/* =========================================================
   APPCLOUD SHOWCASE, SLIDER & SUPER LANDING PAGE (INDEX)
   ========================================================= */

.appcloud-section {
    position: relative;
    overflow: hidden;
}

/* Phone Mockup Slider Card */
.app-phone-card {
    background: linear-gradient(145deg, rgba(20, 26, 38, 0.95) 0%, rgba(12, 17, 26, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.app-phone-card:hover {
    border-color: rgba(189, 224, 11, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45), 0 0 25px rgba(189, 224, 11, 0.12);
}

body:not(.dark) .app-phone-card {
    background: #ffffff;
    border-color: #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.app-phone-frame {
    position: relative;
    border-radius: 0;
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
    margin-bottom: 18px;
    cursor: pointer;
    overflow: visible;
}

.app-phone-frame picture img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0;
    aspect-ratio: 524 / 1080;
    object-fit: contain;
    background: transparent;
    transition: transform 0.4s ease, filter 0.3s ease;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.4));
}

.app-phone-frame:hover picture img {
    transform: translateY(-4px) scale(1.02);
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 15px rgba(189, 224, 11, 0.2));
}

body:not(.dark) .app-phone-frame picture img {
    filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.12));
}

body:not(.dark) .app-phone-frame:hover picture img {
    filter: drop-shadow(0 18px 25px rgba(0, 0, 0, 0.18)) drop-shadow(0 0 12px rgba(119, 176, 0, 0.2));
}

.app-phone-zoom-hint {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(11, 15, 25, 0.85);
    color: #bde00b;
    border: 1px solid rgba(189, 224, 11, 0.4);
    backdrop-filter: blur(8px);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.app-phone-frame:hover .app-phone-zoom-hint {
    opacity: 1;
    transform: translateX(-50%) translateY(-2px);
}

.app-phone-apptag {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #bde00b;
    background: rgba(189, 224, 11, 0.1);
    border: 1px solid rgba(189, 224, 11, 0.25);
    padding: 4px 10px;
    border-radius: 12px;
    margin-bottom: 8px;
}

.app-phone-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
    line-height: 1.3;
}

body:not(.dark) .app-phone-title {
    color: #0f172a;
}

.app-phone-desc {
    font-size: 13px;
    line-height: 1.5;
    color: #94a3b8;
    margin-bottom: 12px;
    flex-grow: 1;
}

body:not(.dark) .app-phone-desc {
    color: #64748b;
}

/* Swiper Navigation Controls */
.appcloud-swiper-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.appcloud-nav-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.appcloud-nav-btn:hover {
    background: #bde00b;
    color: #0b0f19;
    border-color: #bde00b;
    transform: scale(1.08);
}

body:not(.dark) .appcloud-nav-btn {
    background: #f1f5f9;
    color: #0f172a;
    border-color: #cbd5e1;
}

body:not(.dark) .appcloud-nav-btn:hover {
    background: #77b000;
    color: #ffffff;
}

/* Lightbox Modal para capturas */
.app-img-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 8, 15, 0.92);
    backdrop-filter: blur(12px);
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.app-img-lightbox.active {
    display: flex;
    opacity: 1;
}

.app-lightbox-content {
    position: relative;
    max-width: 520px;
    width: 100%;
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.app-lightbox-img {
    max-height: 80vh;
    width: auto;
    max-width: 100%;
    border-radius: 0;
    border: none;
    box-shadow: none;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 30px rgba(189, 224, 11, 0.25));
    object-fit: contain;
    background: transparent;
}

.app-lightbox-info {
    text-align: center;
    margin-top: 14px;
    width: 100%;
}

.app-lightbox-close {
    position: absolute;
    top: -46px;
    right: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.app-lightbox-close:hover {
    background: #bde00b;
    color: #0b0f19;
}

/* Tarjetas Resumen de Pilares de Negocio (Super Landing) */
.super-pillar-card {
    background: linear-gradient(145deg, rgba(18, 24, 34, 0.95) 0%, rgba(12, 17, 25, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 36px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.super-pillar-card:hover {
    border-color: rgba(189, 224, 11, 0.35);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

body:not(.dark) .super-pillar-card {
    background: #ffffff;
    border-color: #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.super-pillar-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: rgba(189, 224, 11, 0.12);
    color: #bde00b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 22px;
}

body:not(.dark) .super-pillar-icon {
    background: rgba(189, 224, 11, 0.2);
    color: #5d8200;
}

.super-pillar-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

body:not(.dark) .super-pillar-title {
    color: #0f172a;
}

.super-pillar-desc {
    font-size: 15px;
    line-height: 1.65;
    color: #94a3b8;
    margin-bottom: 24px;
    flex-grow: 1;
}

body:not(.dark) .super-pillar-desc {
    color: #475569;
}

.super-pillar-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.super-btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}

.super-btn-cta-primary {
    background: #bde00b;
    color: #0b0f19 !important;
}

.super-btn-cta-primary:hover {
    background: #a5c704;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(189, 224, 11, 0.3);
}

.super-btn-cta-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.super-btn-cta-secondary:hover {
    background: rgba(189, 224, 11, 0.15);
    border-color: rgba(189, 224, 11, 0.4);
    color: #bde00b !important;
    transform: translateY(-2px);
}

body:not(.dark) .super-btn-cta-secondary {
    background: #f1f5f9;
    color: #1e293b !important;
    border-color: #cbd5e1;
}

/* APPCLOUD Catalog 6-grid Card */
.appcloud-item-card {
    background: linear-gradient(145deg, rgba(20, 26, 38, 0.95) 0%, rgba(12, 17, 26, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 28px 24px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.appcloud-item-card:hover {
    border-color: rgba(189, 224, 11, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

body:not(.dark) .appcloud-item-card {
    background: #ffffff;
    border-color: #e2e8f0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.appcloud-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.appcloud-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(189, 224, 11, 0.12);
    color: #bde00b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

body:not(.dark) .appcloud-item-icon {
    background: rgba(189, 224, 11, 0.2);
    color: #5d8200;
}

.appcloud-item-badge {
    font-size: 11px;
    font-weight: 700;
    color: #bde00b;
    background: rgba(189, 224, 11, 0.1);
    border: 1px solid rgba(189, 224, 11, 0.25);
    padding: 4px 10px;
    border-radius: 12px;
}

body:not(.dark) .appcloud-item-badge {
    color: #5d8200;
    background: rgba(189, 224, 11, 0.15);
    border-color: rgba(189, 224, 11, 0.4);
}

.appcloud-item-thumb {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    aspect-ratio: 16 / 9;
    background: #090d16;
}

.appcloud-item-thumb picture img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.appcloud-item-card:hover .appcloud-item-thumb picture img {
    transform: scale(1.05);
}

body:not(.dark) .appcloud-item-thumb {
    border-color: #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.appcloud-item-title {
    font-size: 19px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

body:not(.dark) .appcloud-item-title {
    color: #0f172a;
}

.appcloud-item-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #94a3b8;
    margin-bottom: 20px;
    flex-grow: 1;
}

body:not(.dark) .appcloud-item-desc {
    color: #475569;
}

/* ==========================================================================
   CONCOMSIS - Rediseño Ejecutivo de Sección Hero & About (Portada)
   - Watermarks sutiles de alta tecnología
   - Tipografía balanceada y espaciado despejado
   - Composición dual fotográfica para infraestructura física y nube
   ========================================================================== */

/* --- HERO EJECUTIVO --- */
.hero__area.hero-executive-section {
    position: relative;
    overflow: hidden;
    background-color: #0b0c10;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-executive-watermark {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 80% 20%, rgba(189, 224, 11, 0.08) 0%, transparent 60%),
                      radial-gradient(circle at 10% 90%, rgba(119, 176, 0, 0.05) 0%, transparent 50%),
                      url('/images/home/hero/hero-tech-watermark-pc.webp');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    opacity: 0.45;
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: screen;
}

.hero-executive-content {
    position: relative;
    z-index: 2;
    padding-top: 140px;
    padding-bottom: 90px;
}

.hero-tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(189, 224, 11, 0.1);
    border: 1px solid rgba(189, 224, 11, 0.3);
    color: #bde00b;
    font-size: 13px;
    font-weight: 600;
    padding: 7px 18px;
    border-radius: 30px;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
}

.hero-tag-pill:hover {
    background: rgba(189, 224, 11, 0.18);
    border-color: #bde00b;
    color: #daf034;
    transform: translateY(-2px);
}

.hero-executive-title {
    font-size: 64px !important;
    font-weight: 800 !important;
    line-height: 1.12 !important;
    letter-spacing: -1.5px;
    color: #ffffff;
    margin-bottom: 28px;
    max-width: 950px;
}

.hero-executive-title .accent-gradient {
    background: linear-gradient(135deg, #bde00b 0%, #daf034 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-executive-subtitle {
    font-size: 19px;
    line-height: 1.6;
    color: #cbd5e1;
    max-width: 720px;
    margin-bottom: 35px;
    font-weight: 400;
}

.hero-executive-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 35px;
}

.hero-tech-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    color: #94a3b8;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 5px 14px;
    border-radius: 20px;
}

.hero-tech-chip i {
    color: #bde00b;
    font-size: 11px;
}

@media (max-width: 991px) {
    .hero-executive-title {
        font-size: 46px !important;
        letter-spacing: -1px;
    }
    .hero-executive-subtitle {
        font-size: 17px;
    }
}

@media (max-width: 767px) {
    .hero-executive-content {
        padding-top: 100px;
        padding-bottom: 60px;
    }
    .hero-executive-title {
        font-size: 34px !important;
        line-height: 1.18 !important;
    }
}

/* --- ABOUT EJECUTIVO --- */
.about-executive-section {
    position: relative;
    background-color: #0c0d12;
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 120px;
}

.about-executive-watermark {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 10% 20%, rgba(189, 224, 11, 0.04) 0%, transparent 50%),
                      url('/images/home/about/about-tech-grid-watermark-pc.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: screen;
}

.about-executive-content {
    position: relative;
    z-index: 2;
}

/* Composición Visual Dual de Alta Gama */
.executive-gallery-duo {
    position: relative;
    padding: 20px 20px 40px 0;
}

.executive-frame-primary {
    position: relative;
    width: 86%;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
    background: #14151b;
}

.executive-frame-primary img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.executive-frame-primary:hover img {
    transform: scale(1.03);
}

.executive-frame-overlay-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(12, 13, 18, 0.88);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(189, 224, 11, 0.3);
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.executive-frame-overlay-badge i {
    color: #bde00b;
}

.executive-frame-secondary {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 54%;
    border-radius: 14px;
    overflow: hidden;
    border: 2px solid rgba(189, 224, 11, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85);
    background: #14151b;
    z-index: 3;
}

.executive-frame-secondary img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.executive-frame-secondary:hover img {
    transform: scale(1.04);
}

/* Tarjetas de Métricas Ejecutivas */
.about-executive-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0 35px;
}

.about-exec-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 18px 20px;
    transition: all 0.3s ease;
}

.about-exec-card:hover {
    border-color: rgba(189, 224, 11, 0.35);
    background: rgba(189, 224, 11, 0.04);
    transform: translateY(-3px);
}

.about-exec-card-icon {
    font-size: 20px;
    color: #bde00b;
    margin-bottom: 10px;
}

.about-exec-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.about-exec-card-desc {
    font-size: 13px;
    line-height: 1.5;
    color: #94a3b8;
    margin: 0;
}

@media (max-width: 991px) {
    .executive-gallery-duo {
        margin-bottom: 50px;
        padding-right: 0;
    }
    .executive-frame-primary {
        width: 90%;
    }
    .executive-frame-secondary {
        width: 60%;
    }
}

@media (max-width: 576px) {
    .about-executive-features {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Botones de Acción Ejecutivos (Hero y About en Home - Solución a Encimado)
   ========================================================================== */
.hero-executive-actions,
.about-executive-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 32px;
}

.hero-btn-primary,
.about-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 40px;
    background: #bde00b;
    color: #0b0f19 !important;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    line-height: 1;
    box-shadow: 0 4px 20px rgba(189, 224, 11, 0.35);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-btn-primary:hover,
.about-btn-primary:hover {
    background: #a5c704;
    color: #0b0f19 !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(189, 224, 11, 0.5);
}

.hero-btn-secondary,
.about-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    line-height: 1;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-btn-secondary:hover,
.about-btn-secondary:hover {
    background: rgba(189, 224, 11, 0.12);
    border-color: #bde00b;
    color: #bde00b !important;
    transform: translateY(-3px);
}

body:not(.dark) .hero-btn-secondary,
body:not(.dark) .about-btn-secondary {
    background: #ffffff;
    color: #0f172a !important;
    border-color: #cbd5e1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

body:not(.dark) .hero-btn-secondary:hover,
body:not(.dark) .about-btn-secondary:hover {
    background: #f7faf0;
    border-color: #77b000;
    color: #5f8f00 !important;
}

@media (max-width: 767px) {
    .hero-executive-actions,
    .about-executive-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .hero-btn-primary,
    .hero-btn-secondary,
    .about-btn-primary,
    .about-btn-secondary {
        width: 100%;
        text-align: center;
    }
}



