/*
Theme Name: KlaroPOS Theme
Theme URI: /
Author: Antigravity Agent
Author URI: /
Description: Un tema de bloques ultraligero a medida para KlaroPOS, diseñado para máximo rendimiento con Gutenberg.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: klaropos-theme
*/

html, body {
    overflow-x: hidden;
}

/* --------------------------------------------------
 * Carrusel de Clientes Infinito (Ticker)
 * -------------------------------------------------- */
.k-ticker-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 1.5rem 0;
    display: flex;
}

.k-ticker-wrapper {
    display: flex;
    width: max-content;
    animation: k-marquee 45s linear infinite;
}

.k-ticker-wrapper:hover {
    animation-play-state: paused;
}

.k-ticker-item {
    width: 220px; /* Aumentado el ancho a 220px */
    height: 120px; /* Aumentada la altura a 120px */
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.5rem; /* Margen muy estrecho para que los logos se muestren grandiosos */
}

.k-ticker-item img {
    max-height: 100px; /* Aumentado a 100px de altura para maximizar la superficie visual */
    max-width: 95%; /* Ocupa hasta el 95% del contenedor */
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7; /* Opacidad al 70% por defecto para excelente visualización */
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.k-ticker-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.12); /* Zoom premium a 1.12 en hover */
}

@keyframes k-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --------------------------------------------------
 * Efectos Catálogo Visual e Interfaces (v2.2 Split)
 * -------------------------------------------------- */
.k-sectors-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem 2rem 1rem;
}

@media (min-width: 640px) {
    .k-sectors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .k-sectors-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.k-cat-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem 4rem 1rem;
}

@media (min-width: 640px) {
    .k-cat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .k-cat-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.k-cat-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 420px;
}

.k-card-badge-hot {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #EF4444;
    color: #FFFFFF;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
    z-index: 10;
    letter-spacing: 0.5px;
}

/* Tarjeta destacada B2B premium */
.woocommerce ul.products li.product.k-product-highlighted {
    border: 1px solid rgba(245, 158, 11, 0.35) !important;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 247, 237, 0.25) 100%) !important;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.03) !important;
}

.woocommerce ul.products li.product.k-product-highlighted:hover {
    border-color: rgba(245, 158, 11, 0.7) !important;
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.08) !important;
}

.k-cat-card:hover {
    transform: translateY(-8px);
    border-color: #CBD5E1;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.k-cat-img-container {
    flex: 1.2; /* 50% alto aprox */
    width: 100%;
    height: 210px;
    background: #F8FAFC;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #E2E8F0;
    overflow: hidden;
    position: relative;
}

.k-cat-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1.5rem;
    mix-blend-mode: multiply;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.k-cat-card:hover img {
    transform: scale(1.08);
}

.k-cat-info {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background: #FFFFFF;
}

.k-cat-info h4 {
    margin: 0 0 0.75rem 0;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: #0F172A;
    font-size: 1.2rem;
}

.k-cat-info p {
    margin: 0;
    color: #64748B;
    font-size: 13px;
    line-height: 1.6;
}

.k-cat-cta {
    margin-top: 1rem;
    color: #EA580C;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: all 0.2s ease;
}

.k-cat-card:hover .k-cat-cta {
    color: #F97316;
}

/* --------------------------------------------------
 * Logos Oficiales de Marcas (bajo Hero)
 * -------------------------------------------------- */
.k-hero-brands {
    background: #FFFFFF;
    border-bottom: 1px solid #EEF2F6;
    padding: 2.5rem 0;
}

.k-hero-brands-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2.5rem 3.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.k-brand-logo-svg {
    height: 26px;
    opacity: 0.7;
    filter: grayscale(40%);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.k-brand-logo-svg:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: translateY(-2px);
}

.k-brand-logo-svg svg,
.k-brand-logo-svg img {
    height: 100%;
    width: auto;
    max-height: 26px;
    object-fit: contain;
    display: block;
}

/* --------------------------------------------------
 * SuperTop & Cabecera con MegaMenú
 * -------------------------------------------------- */
.k-supertop {
    background: #FFF7ED;
    color: #9A3412;
    font-size: 0.75rem;
    padding: 0.4rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', sans-serif;
    border-bottom: 1px solid rgba(234, 88, 12, 0.12);
}

.k-supertop-links a {
    color: #ea580c;
    text-decoration: none;
    margin-right: 1.5rem;
    font-weight: 700;
    transition: color 0.2s ease-in-out;
    display: inline-flex;
    align-items: center;
}

.k-supertop-links a:hover {
    color: #0F172A;
}

.k-supertop-contact {
    display: flex;
    gap: 1.5rem;
    color: #ea580c;
    font-weight: 700;
}

.k-supertop-contact span {
    color: #9A3412;
    font-weight: 500;
    margin-right: 4px;
    display: inline-flex;
    align-items: center;
}

.k-supertop-icon {
    transition: transform 0.2s ease-in-out;
}

.k-supertop-links a:hover .k-supertop-icon {
    transform: scale(1.1);
}

/* Bypassing the FSE template wrapper to allow proper sticky scroll context */
.wp-block-template-part:has(.k-main-header) {
    display: contents !important;
}

.k-main-header {
    background: #FFFFFF;
    border-bottom: 1px solid #E2E8F0;
    padding: 0.65rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 2100;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
}

.k-logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: #0F172A;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: opacity 0.2s ease;
}

.k-logo:hover {
    opacity: 0.9;
}

.k-logo img {
    height: 32px;
    width: auto;
    display: block;
}

.k-logo span {
    color: #EA580C;
}

.k-nav {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.k-nav-item {
    position: relative;
    padding: 0.75rem 0; /* Zona activa amplia para hover */
}

.k-nav-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: #334155;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s;
}

.k-nav-link::after {
    content: '▾';
    font-size: 0.8rem;
    opacity: 0.7;
}

.k-nav-link.no-arrow::after {
    content: '';
    display: none;
}

.k-nav-item:hover > .k-nav-link {
    color: #EA580C;
}

/* Contenedor del MegaMenú Desplegable */
.k-megamenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: #FFFFFF !important;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
    width: 640px;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 9999 !important;
}

.k-nav-item:hover .k-megamenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.k-mega-col-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    border-bottom: 1px solid #F1F5F9;
    padding-bottom: 0.5rem;
}

.k-mega-link {
    display: flex;
    gap: 12px;
    text-decoration: none;
    padding: 0.75rem;
    border-radius: 8px;
    transition: background 0.2s;
    align-items: flex-start;
}

.k-mega-link:hover {
    background: #F8FAFC;
}

.k-mega-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #FFF7ED; /* Soft orange tint */
    color: #EA580C; /* Vibrant flat orange */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.k-mega-link:hover .k-mega-icon {
    background: #EA580C;
    color: #FFFFFF;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(234, 88, 12, 0.15);
}

.k-mega-text {
    display: flex;
    flex-direction: column;
}

.k-mega-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: #0F172A;
    margin-bottom: 3px;
}

.k-mega-desc {
    font-size: 0.75rem;
    color: #64748B;
    line-height: 1.4;
}

/* CTA de Cabecera */
.k-header-cta {
    background: #F97316;
    color: #FFFFFF;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.65rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.15);
    transition: all 0.2s;
}

.k-header-cta:hover {
    background: #EA580C;
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(249, 115, 22, 0.25);
}

/* --------------------------------------------------
 * Estilos SaaS para Landing Page de Software (v2.4)
 * -------------------------------------------------- */
.k-saas-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem 4rem 1rem;
}

@media (min-width: 768px) {
    .k-saas-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.k-saas-card {
    background: #FFFFFF;
    border-radius: 24px;
    border: 1px solid #E2E8F0;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
    transition: all 0.4s ease;
    height: 100%;
}

.k-saas-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.1);
    border-color: #CBD5E1;
}

/* Decoración superior de color de marca */
.k-saas-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    border-radius: 24px 24px 0 0;
}

.k-saas-bdp::before { background: linear-gradient(90deg, #1E3A8A, #3B82F6); }
.k-saas-factory::before { background: linear-gradient(90deg, #EA580C, #F97316); }
.k-saas-etpos::before { background: linear-gradient(90deg, #059669, #10B981); }

.k-saas-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.k-saas-bdp .k-saas-badge { background: rgba(30, 58, 138, 0.1); color: #1E3A8A; }
.k-saas-factory .k-saas-badge { background: rgba(234, 88, 12, 0.1); color: #EA580C; }
.k-saas-etpos .k-saas-badge { background: rgba(5, 150, 105, 0.1); color: #059669; }

.k-saas-logo-container {
    height: 36px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.k-saas-logo-container img {
    height: 100%;
    width: auto;
    max-height: 36px;
    object-fit: contain;
}

.k-saas-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: #0F172A;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.k-saas-desc {
    font-size: 14px;
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.k-saas-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    border-top: 1px solid #F1F5F9;
    padding-top: 1.5rem;
    flex-grow: 1;
}

.k-saas-features li {
    font-size: 13px;
    color: #475569;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
}

.k-saas-features li strong {
    color: #0F172A;
}

.k-saas-btn {
    margin-top: auto;
    display: block;
    text-align: center;
    padding: 0.9rem 1.5rem;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.k-saas-bdp .k-saas-btn { background: #1E3A8A; color: #FFFFFF; box-shadow: 0 4px 12px rgba(30, 58, 138, 0.15); }
.k-saas-factory .k-saas-btn { background: #EA580C; color: #FFFFFF; box-shadow: 0 4px 12px rgba(234, 88, 12, 0.15); }
.k-saas-etpos .k-saas-btn { background: #059669; color: #FFFFFF; box-shadow: 0 4px 12px rgba(5, 150, 105, 0.15); }

.k-saas-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* --------------------------------------------------
 * Nuevas Cajas de Características Transversales (v2.4)
 * -------------------------------------------------- */
.k-feat-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .k-feat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .k-feat-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.k-feat-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 2.25rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.k-feat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    border-color: #CBD5E1;
}

.k-feat-icon {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    display: inline-block;
    line-height: 1;
}

.k-feat-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    color: #0F172A;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.k-feat-text {
    font-size: 13px;
    color: #64748B;
    line-height: 1.6;
    margin: 0;
}

/* --------------------------------------------------
 * Ecosistema BDP: Comparador Dual y Verticales (v2.4)
 * -------------------------------------------------- */
.k-duel-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .k-duel-container {
        flex-direction: row;
    }
}

.k-duel-card {
    flex: 1;
    background: #FFFFFF;
    border-radius: 24px;
    padding: 3rem 2rem;
    border: 1px solid #E2E8F0;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.k-duel-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    border-radius: 24px 24px 0 0;
}

.k-duel-card.k-duel-net::before {
    background: linear-gradient(90deg, #1D4ED8, #3B82F6);
}

.k-duel-card.k-duel-one::before {
    background: linear-gradient(90deg, #EA580C, #F97316);
}

.k-duel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.08);
}

.k-duel-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.85rem;
    color: #0F172A;
    margin: 0 0 0.5rem 0;
}

.k-duel-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.k-duel-card.k-duel-net .k-duel-badge {
    background: #EFF6FF;
    color: #1E40AF;
}

.k-duel-card.k-duel-one .k-duel-badge {
    background: #FFF7ED;
    color: #C2410C;
}

/* Grid de Sub-Verticales en Hub */
.k-vgrid-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .k-vgrid-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .k-vgrid-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1200px) {
    .k-vgrid-grid { grid-template-columns: repeat(4, 1fr); }
}

.k-vgrid-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 1.75rem;
    text-decoration: none !important;
    color: inherit !important;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.k-vgrid-card:hover {
    transform: scale(1.03);
    border-color: #3B82F6;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.08);
}

.k-vgrid-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.k-vgrid-info {
    display: flex;
    flex-direction: column;
}

.k-vgrid-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #0F172A;
    margin: 0 0 2px 0;
}

.k-vgrid-desc {
    font-size: 12px;
    color: #64748B;
    line-height: 1.4;
}

/* --------------------------------------------------
 * Rejilla de Características de Verticales (v2.6)
 * -------------------------------------------------- */
.k-vfeat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 32px;
    gap: 32px;
    margin-top: 2rem;
    box-sizing: border-box;
}

.k-vfeat-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.01);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    position: relative;
    height: auto;
    min-height: 280px;
}

/* --------------------------------------------------
 * Split Hero Premium con Galería Integrada (v2.8)
 * -------------------------------------------------- */
.k-vhero-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .k-vhero-split {
        grid-template-columns: 1.1fr 0.9fr; /* 55% / 45% */
    }
}

.k-vhero-left {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.k-vhero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
}

/* Apilamiento de Imágenes 3D / Superpuesto */
.k-vhero-gallery-stack {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: 340px;
    margin: 0 auto;
}

.k-vhero-img-card {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
    border: 2px solid #FFFFFF;
    background: #FFFFFF;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    width: 78%;
    aspect-ratio: 16 / 10;
}

.k-vhero-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.k-vhero-img-1 {
    top: 0;
    left: 0;
    z-index: 2;
    transform: rotate(-2deg);
}

.k-vhero-img-2 {
    bottom: 0;
    right: 0;
    z-index: 1;
    transform: rotate(3deg);
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.k-vhero-img-card:hover {
    z-index: 10;
    transform: scale(1.04) rotate(0deg);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
}

.k-img-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    color: #FFFFFF;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 640px) {
    .k-vhero-gallery-stack {
        height: 260px;
    }
}

.k-vfeat-card:hover {
    transform: translateY(-8px);
    border-color: #CBD5E1;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.k-vfeat-icon {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.k-vfeat-card:hover .k-vfeat-icon {
    transform: scale(1.15);
}

.k-vfeat-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
    color: #0F172A;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.k-vfeat-desc {
    color: #64748B;
    font-size: 14.5px;
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 992px) {
    .k-vfeat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

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

/* --------------------------------------------------
 * Grid de Implementación Llave en Mano (v2.6.1)
 * -------------------------------------------------- */
.k-imp-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr; /* 60% / 40% */
    gap: 4rem;
    align-items: center;
}

.k-imp-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    padding: 3.5rem 2.5rem;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.04);
    border-bottom: 4px solid #EA580C;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.k-imp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px -10px rgba(0,0,0,0.06);
}

@media (max-width: 992px) {
    .k-imp-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .k-imp-card {
        padding: 3rem 2rem;
    }
}



/* Enlaces de sub-grilla para el megamenú de software */
.k-mega-sublink {
    text-decoration: none !important;
    color: #475569 !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.k-mega-sublink:hover {
    background: #F1F5F9 !important;
    color: #EA580C !important;
    border-color: #E2E8F0;
}

.k-mega-sublink span {
    font-size: 1.1rem;
}

/* --------------------------------------------------
 * Migas de Pan (Breadcrumbs) - v2.5
 * -------------------------------------------------- */
.k-breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #64748B;
    margin-bottom: 1.75rem;
}

.k-breadcrumbs a {
    color: #64748B;
    text-decoration: none;
    transition: color 0.2s ease;
}

.k-breadcrumbs a:hover {
    color: #EA580C;
    text-decoration: underline;
}

.k-breadcrumbs span.k-bc-sep {
    color: #CBD5E1;
    user-select: none;
    font-size: 10px;
}

.k-breadcrumbs span.k-bc-current {
    color: #94A3B8;
    font-weight: 400;
}

/* --------------------------------------------------
 * Tabla Comparativa Premium BDP NET vs ONE (v3.0)
 * -------------------------------------------------- */
.k-table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 2.5rem 0;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
    border: 1px solid #E2E8F0;
}

.k-comparison-table {
    width: 100%;
    min-width: 750px;
    border-collapse: collapse;
    background: #FFFFFF;
    font-family: 'Inter', sans-serif;
    table-layout: fixed;
}

/* Cabeceras de la tabla */
.k-comparison-table th {
    padding: 2.5rem 1.5rem 2rem 1.5rem;
    vertical-align: bottom;
    background: #F8FAFC;
    border-bottom: 2px solid #E2E8F0;
    position: relative;
}

.k-table-th-sector {
    width: 46%;
    text-align: left;
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: #0F172A;
    padding-left: 2.5rem !important;
}

.k-table-th-net {
    width: 27%;
    text-align: center;
}

.k-table-th-one {
    width: 27%;
    text-align: center;
}

/* Estilo Banners Ribbon Flotantes */
.k-table-banner-net,
.k-table-banner-one {
    position: relative;
    padding: 1rem 1rem;
    border-radius: 12px;
    color: #FFFFFF;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    font-family: 'Outfit', sans-serif;
    text-align: center;
    max-width: 160px;
    margin: 0 auto;
}

.k-table-banner-net {
    background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.k-table-banner-one {
    background: linear-gradient(135deg, #C2410C 0%, #F97316 100%);
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.k-banner-title {
    display: block;
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: 0.5px;
}

.k-banner-subtitle {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    opacity: 0.9;
    margin-top: 2px;
}

/* Pico triangular abajo de los banners (estilo cinta) */
.k-table-banner-net::after,
.k-table-banner-one::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px 8px 0 8px;
    border-style: solid;
    display: block;
    width: 0;
    height: 0;
}

.k-table-banner-net::after {
    border-color: #3B82F6 transparent transparent transparent;
}

.k-table-banner-one::after {
    border-color: #F97316 transparent transparent transparent;
}

/* Celdas de la tabla */
.k-comparison-table td {
    padding: 1.5rem 1.5rem;
    border-bottom: 1px solid #F1F5F9;
    vertical-align: middle;
    transition: background 0.15s ease;
}

.k-comparison-table tbody tr {
    transition: background 0.15s ease;
}

.k-comparison-table tbody tr:nth-child(even) {
    background: #FAFBFD;
}

.k-comparison-table tbody tr:hover {
    background: #F1F5F9 !important;
}

/* Celda del Sector */
.k-td-sector {
    padding-left: 2.5rem !important;
}

.k-sector-title {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 4px;
}

.k-sector-desc {
    font-size: 13px;
    color: #64748B;
    line-height: 1.5;
    margin: 0;
}

/* Celda de Estado (Disponibilidad) */
.k-td-status {
    text-align: center;
}

.k-status-icon-check,
.k-status-icon-cross {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin: 0 auto 6px auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.k-status-icon-check {
    background: #DCFCE7;
    color: #15803D;
    font-size: 14px;
    border: 1px solid #BBF7D0;
}

.k-status-icon-cross {
    background: #FEE2E2;
    color: #B91C1C;
    font-size: 12px;
    border: 1px solid #FECACA;
}

.k-status-text {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-available .k-status-text {
    color: #15803D;
}

.status-unavailable .k-status-text {
    color: #94A3B8;
}

/* --------------------------------------------------
 * Ecosistema de Módulos Ultra-Compacto BDP (v3.3)
 * -------------------------------------------------- */
.k-mini-modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.25rem;
    margin-top: 3rem;
    font-family: 'Inter', sans-serif;
}

.k-mini-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 1rem 1.2rem;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.k-mini-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.k-mini-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: #60A5FA;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.k-mini-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.k-mini-title {
    font-family: 'Outfit', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 2px 0;
    line-height: 1.2;
}


.k-mini-desc {
    font-size: 11.5px;
    color: #94A3B8;
    margin: 0;
    line-height: 1.3;
}

/* --------------------------------------------------
 * Ecosistema Suite FactoryPOS (v3.0)
 * -------------------------------------------------- */
.k-fpos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .k-fpos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .k-fpos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.k-fpos-card {
    background: rgba(30, 41, 59, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
}

.k-fpos-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(249, 115, 22, 0) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 0;
}

.k-fpos-card:hover {
    transform: translateY(-8px);
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(30, 41, 59, 0.7);
}

.k-fpos-card:hover::before {
    opacity: 1;
}

.k-fpos-icon-wrapper {
    position: relative;
    z-index: 1;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.2);
    color: #F97316;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.k-fpos-card:hover .k-fpos-icon-wrapper {
    background: #F97316;
    color: #FFFFFF;
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
    transform: scale(1.05);
}

.k-fpos-info {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.k-fpos-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
    color: #FFFFFF;
    margin: 0 0 0.75rem 0;
    line-height: 1.25;
}

.k-fpos-desc {
    font-size: 14.5px;
    line-height: 1.6;
    color: #94A3B8;
    margin: 0 0 2rem 0;
}

.k-fpos-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 13.5px;
    color: #F97316;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    width: fit-content;
    transition: gap 0.2s ease;
}

.k-fpos-card:hover .k-fpos-link {
    color: #FB923C;
    gap: 10px;
}

/* --------------------------------------------------
 * Ecosistema Suite ETPOS (v3.0)
 * -------------------------------------------------- */
.k-etpos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .k-etpos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .k-etpos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.k-etpos-card {
    background: rgba(15, 23, 42, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
}

.k-etpos-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 0;
}

.k-etpos-card:hover {
    transform: translateY(-8px);
    border-color: rgba(16, 185, 129, 0.35);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(15, 23, 42, 0.7);
}

.k-etpos-card:hover::before {
    opacity: 1;
}

.k-etpos-icon-wrapper {
    position: relative;
    z-index: 1;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #10B981;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.k-etpos-card:hover .k-etpos-icon-wrapper {
    background: #10B981;
    color: #FFFFFF;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
    transform: scale(1.05);
}

.k-etpos-info {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.k-etpos-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
    color: #FFFFFF;
    margin: 0 0 0.75rem 0;
    line-height: 1.25;
}

.k-etpos-desc {
    font-size: 14.5px;
    line-height: 1.6;
    color: #94A3B8;
    margin: 0 0 2rem 0;
}

.k-etpos-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 13.5px;
    color: #10B981;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    width: fit-content;
    transition: gap 0.2s ease;
}

.k-etpos-card:hover .k-etpos-link {
    color: #34D399;
    gap: 10px;
}

/* --------------------------------------------------
 * Formularios Premium de Integración QCPro
 * -------------------------------------------------- */
.k-qcpro-form-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 28px;
    padding: 3.5rem 2.5rem;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.03),
        0 10px 15px -3px rgba(0, 0, 0, 0.02),
        0 20px 40px -5px rgba(15, 23, 42, 0.06);
    text-align: left;
    width: 100% !important;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    box-sizing: border-box;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Glassmorphism esmerilado para formularios premium */
.k-qcpro-form-card.k-premium-glass {
    background: rgba(255, 255, 255, 0.78) !important;
    border: 1px solid rgba(255, 255, 255, 0.45) !important;
    backdrop-filter: blur(24px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.04),
        0 10px 15px -3px rgba(0, 0, 0, 0.02),
        0 20px 50px -10px rgba(15, 23, 42, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
}

.k-qcpro-form-card.k-premium-glass:hover {
    transform: translateY(-4px) !important;
    border-color: rgba(255, 255, 255, 0.75) !important;
    box-shadow: 
        0 10px 20px -5px rgba(15, 23, 42, 0.03),
        0 30px 60px -15px rgba(15, 23, 42, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
}

/* Glassmorphism para formularios en fondos oscuros */
.k-qcpro-form-card.k-dark-glass {
    background: rgba(15, 23, 42, 0.7) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(24px) saturate(140%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(140%) !important;
    color: #FFFFFF !important;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
    border-radius: 28px !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.k-qcpro-form-card.k-dark-glass:hover {
    transform: translateY(-4px) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

.k-qcpro-form-card.k-dark-glass label {
    color: #94A3B8 !important;
}

.k-qcpro-form-card.k-dark-glass input,
.k-qcpro-form-card.k-dark-glass select,
.k-qcpro-form-card.k-dark-glass textarea {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #FFFFFF !important;
}

.k-qcpro-form-card.k-dark-glass input:hover,
.k-qcpro-form-card.k-dark-glass select:hover,
.k-qcpro-form-card.k-dark-glass textarea:hover {
    background: rgba(255, 255, 255, 0.07) !important;
    border-color: rgba(255, 255, 255, 0.18) !important;
}

.k-qcpro-form-card.k-dark-glass input:focus,
.k-qcpro-form-card.k-dark-glass select:focus,
.k-qcpro-form-card.k-dark-glass textarea:focus {
    border-color: #10B981 !important;
    background: rgba(15, 23, 42, 0.8) !important;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2) !important;
}

.k-qcpro-form-card.k-dark-glass .k-form-help {
    color: #64748B !important;
}

/* Campos de Formulario y Micro-interacciones */
.k-qcpro-form-group {
    display: block !important;
    width: 100% !important;
    margin-bottom: 1.65rem !important;
    box-sizing: border-box !important;
}

.k-qcpro-form-group label {
    display: block !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    font-size: 11.5px !important;
    color: #475569 !important;
    margin-bottom: 7px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    transition: color 0.3s ease;
}

.k-qcpro-form-group input,
.k-qcpro-form-group select,
.k-qcpro-form-group textarea {
    display: block !important;
    width: 100% !important;
    padding: 0.95rem 1.25rem !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 14.5px !important;
    color: #0F172A !important;
    background: rgba(248, 250, 252, 0.7) !important;
    border: 1px solid #E2E8F0 !important;
    border-radius: 14px !important;
    box-sizing: border-box !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover interactivo suave */
.k-qcpro-form-group input:hover,
.k-qcpro-form-group select:hover,
.k-qcpro-form-group textarea:hover {
    border-color: #CBD5E1 !important;
    background: rgba(255, 255, 255, 0.9) !important;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03) !important;
}

/* Foco Premium con brillo esférico HSL */
.k-qcpro-form-group input:focus,
.k-qcpro-form-group select:focus,
.k-qcpro-form-group textarea:focus {
    outline: none !important;
    border-color: #2563EB !important; /* Azul primario corporativo */
    background: #FFFFFF !important;
    box-shadow: 
        0 0 0 4px rgba(37, 99, 235, 0.12),
        0 4px 12px rgba(37, 99, 235, 0.05) !important;
    transform: translateY(-1px) !important;
}

.k-qcpro-form-group textarea {
    resize: vertical !important;
    min-height: 120px !important;
    line-height: 1.6 !important;
}

.k-form-help {
    font-size: 11px !important;
    color: #64748B !important;
    margin-top: 7px !important;
    display: block !important;
    line-height: 1.4 !important;
}

.k-qcpro-form-group.k-half-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    margin-bottom: 1.65rem !important;
    width: 100% !important;
}

@media (min-width: 640px) {
    .k-qcpro-form-group.k-half-grid {
        grid-template-columns: 1fr 1fr !important;
        margin-bottom: 0 !important;
    }
}

/* Custom Select Dropdown Vectorial */
.k-qcpro-form-group select {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b' stroke-width='2.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 16px center !important;
    background-size: 14px !important;
    padding-right: 2.85rem !important;
    cursor: pointer !important;
}

/* Botón de Envío Animado (Shimmer + Gradient Glide) */
.k-qcpro-submit-btn {
    width: 100%;
    padding: 1.15rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 15px;
    color: #FFFFFF;
    background: linear-gradient(135deg, #EA580C 0%, #F97316 50%, #EA580C 100%);
    background-size: 200% auto;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(234, 88, 12, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.k-qcpro-submit-btn:hover {
    background-position: right center;
    transform: translateY(-2.5px);
    box-shadow: 0 15px 30px rgba(234, 88, 12, 0.25);
}

.k-qcpro-submit-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(30, 64, 175, 0.2);
}

/* Efecto Shimmer de haz de luz */
.k-qcpro-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.25) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: none;
    pointer-events: none;
}

.k-qcpro-submit-btn:hover::before {
    animation: k-shimmer-btn 1.6s infinite;
}

@keyframes k-shimmer-btn {
    0% { left: -100%; }
    100% { left: 200%; }
}

.k-qcpro-submit-btn:disabled {
    background: #94A3B8 !important;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.k-btn-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #FFFFFF;
    animation: k-spin 1s ease-in-out infinite;
}

@keyframes k-spin {
    to { transform: rotate(360deg); }
}

/* Alertas de Feedback Premium */
.k-form-feedback {
    display: none;
    padding: 1.1rem 1.35rem;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.5;
    margin-top: 1.5rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    animation: k-fade-in 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.k-feedback-success {
    background: #ECFDF5;
    border: 1px solid #A7F3D0;
    color: #047857;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.05);
}

.k-feedback-error {
    background: #FEF2F2;
    border: 1px solid #FEE2E2;
    color: #B91C1C;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.05);
}

/* Formulario en sintonía con SAT (Efecto Verde Esmeralda) */
.k-qcpro-form-ticket .k-qcpro-submit-btn {
    background: linear-gradient(135deg, #10B981 0%, #34D399 50%, #10B981 100%);
    background-size: 200% auto;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.15);
}

.k-qcpro-form-ticket .k-qcpro-submit-btn:hover {
    background-position: right center;
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.25);
}

.k-qcpro-form-ticket input:focus,
.k-qcpro-form-ticket select:focus,
.k-qcpro-form-ticket textarea:focus {
    border-color: #10B981;
    box-shadow: 
        0 0 0 4px rgba(16, 185, 129, 0.12),
        0 4px 12px rgba(16, 185, 129, 0.05);
}

@keyframes k-fade-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --------------------------------------------------
 * Estilos de Formulario Premium y Split Layout (v3.5)
 * -------------------------------------------------- */
.k-premium-form-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .k-premium-form-split {
        grid-template-columns: 0.95fr 1.05fr;
    }
}

.k-form-trust-card {
    background: linear-gradient(135deg, #0F172A 0%, #EA580C 100%);
    border-radius: 28px;
    padding: 3.5rem 3rem;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.k-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 6px 14px;
    width: fit-content;
}

.k-trust-stars {
    letter-spacing: 2px;
}

.k-trust-text {
    font-family: 'Inter', sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    color: #94A3B8;
}

.k-trust-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2.5rem 0;
}

.k-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
}

.k-trust-icon-box {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.k-trust-info h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 16.5px;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0 0 6px 0;
}

.k-trust-info p {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    line-height: 1.55;
    color: #94A3B8;
    margin: 0;
}

.k-qcpro-form-wrapper {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: stretch !important;
    width: 100% !important;
}

/* Iconos de entrada alineados e interactivos */
.k-input-icon-wrapper {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.k-input-icon {
    position: absolute !important;
    left: 16px !important;
    font-size: 1.15rem !important;
    color: #64748B !important;
    pointer-events: none !important;
    z-index: 10 !important;
    transition: all 0.3s ease !important;
}

.k-input-icon-wrapper input,
.k-input-icon-wrapper select,
.k-input-icon-wrapper textarea {
    flex-grow: 1 !important;
    width: 100% !important;
    padding-left: 2.85rem !important;
    box-sizing: border-box !important;
}

/* Transiciones al activar los wrappers de entrada */
.k-input-icon-wrapper:focus-within .k-input-icon {
    color: #2563EB;
    transform: scale(1.15);
}

.k-qcpro-form-ticket .k-input-icon-wrapper:focus-within .k-input-icon {
    color: #10B981;
}

/* Badges comerciales/soporte flotantes en formularios */
.k-form-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
    border: 1px solid rgba(37, 99, 235, 0.2);
    color: #1D4ED8;
    font-size: 10.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 1.25rem;
    width: fit-content;
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.02);
}

.k-qcpro-form-ticket .k-form-badge {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.05) 100%);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #047857;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.02);
}

/* Pie de página con seguridad GDPR y confianza */
.k-form-security-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 1.65rem;
    padding-top: 1.35rem;
    border-top: 1px solid rgba(226, 232, 240, 0.7);
    font-size: 12px;
    color: #64748B;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.k-form-security-footer span {
    line-height: 1.2;
}

/* Pulsing effect for premium button */
.k-pulse-btn {
    position: relative;
    overflow: hidden;
}

.k-pulse-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.15);
    opacity: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}

.k-pulse-btn:active::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    transition: 0s;
}

@media (max-width: 1023px) {
    .k-form-trust-card {
        padding: 2.5rem 2rem;
    }
}

/* Bulletproof native select dropdown option styling */
.k-qcpro-form-group select option {
    background-color: #FFFFFF !important;
    color: #0F172A !important;
}
.k-qcpro-form-card.k-dark-glass select option {
    background-color: #0F172A !important;
    color: #FFFFFF !important;
}

/* ==================================================
 * Estilos para Loops y Bloques de Productos de WooCommerce
 * ================================================== */
/* Eliminar pseudo-elementos clearfix que interfieren con CSS Grid */
.woocommerce ul.products::before,
.woocommerce ul.products::after {
    display: none !important;
    content: none !important;
}

/* Quitar subrayado en enlaces del loop estándar */
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
    text-decoration: none !important;
    display: block !important;
    text-align: center !important;
}

/* Título de productos de los bucles clásicos en color negro por defecto */
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link .woocommerce-loop-product__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h2.woocommerce-loop-product__title,
.woocommerce ul.products li.product h3.woocommerce-loop-product__title,
.woocommerce ul.products li.product h2,
.woocommerce ul.products li.product h3 {
    color: #0F172A !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
    line-height: 1.4 !important;
    text-align: center !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

/* En bucles clásicos estándar, el título cambia a naranja en hover */
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link:hover .woocommerce-loop-product__title,
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link:hover h2,
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link:hover h3,
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link:hover {
    color: #EA580C !important;
}

/* ==================================================
 * FORZADO ESPECÍFICO PARA BLOQUES DE PRODUCTO GUTENBERG (PRODUCTOS RELACIONADOS)
 * Títulos estrictamente en NEGRO (#0F172A) siempre, desactivando cualquier cambio o hover a naranja
 * ================================================== */
.wp-block-woocommerce-product-template .wp-block-post-title,
.wp-block-woocommerce-product-template .wp-block-post-title a,
.wp-block-woocommerce-product-template .wp-block-post-title a:hover,
.wc-block-product-template .wp-block-post-title,
.wc-block-product-template .wp-block-post-title a,
.wc-block-product-template .wp-block-post-title a:hover,
.wc-block-product .wp-block-post-title,
.wc-block-product .wp-block-post-title a,
.wc-block-product .wp-block-post-title a:hover,
.related.products .woocommerce-loop-product__title,
.related.products .woocommerce-loop-product__title:hover,
.related.products h2.woocommerce-loop-product__title,
.related.products h2.woocommerce-loop-product__title:hover,
.related.products h3.woocommerce-loop-product__title,
.related.products h3.woocommerce-loop-product__title:hover,
.related.products a,
.related.products a:hover,
.related.products a * {
    color: #0F172A !important;
    text-decoration: none !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    transition: none !important;
}

/* Contenedor del precio del loop */
.price .k-renting-price-tag {
    display: block !important;
    text-align: center !important;
    margin-top: 0.5rem !important;
    font-family: 'Outfit', sans-serif !important;
}

/* Estilos para el botón Ver Ficha Técnica en Loops */
.k-loop-view-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-top: 1.25rem !important;
    padding: 0.75rem 1.25rem !important;
    background: #EA580C !important;
    color: #FFFFFF !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    border-radius: 10px !important;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    width: 100% !important;
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.15) !important;
    border: none !important;
    box-sizing: border-box !important;
}

.k-loop-view-btn:hover {
    background: #D03E00 !important; /* Tono naranja más oscuro e intenso para hover */
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(234, 88, 12, 0.3) !important;
    color: #FFFFFF !important;
}

/* Forzar que las letras del botón "Ver Ficha Técnica" sean siempre blancas */
.woocommerce ul.products li.product a.k-loop-view-btn,
.related.products a.k-loop-view-btn,
.wp-block-woocommerce-product-template a.k-loop-view-btn,
.wc-block-product-template a.k-loop-view-btn {
    color: #FFFFFF !important;
    text-decoration: none !important;
}

/* ==================================================
 * ESTRUCTURA PREMIUM TIENDA CATÁLOGO Y FILTROS B2B
 * ================================================== */

/* Menú visual de familias en la home de la tienda */
.k-shop-families-nav {
    margin-bottom: 4rem;
    position: relative;
    z-index: 5;
}
.k-families-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 1.25rem;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 1rem;
}
.k-family-item-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
}
.k-family-item-card:hover {
    transform: translateY(-4px);
    border-color: #EA580C;
    box-shadow: 0 12px 24px rgba(234, 88, 12, 0.08);
}
.k-family-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #FFF7ED; /* Soft orange tint */
    color: #EA580C; /* Vibrant flat orange */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.k-family-item-card:hover .k-family-icon {
    background: #EA580C;
    color: #FFFFFF;
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 8px 16px rgba(234, 88, 12, 0.2);
}
.k-family-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #0F172A;
    margin: 0;
    transition: color 0.2s ease;
}
.k-family-item-card:hover .k-family-name {
    color: #EA580C;
}
.k-family-count {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #64748B;
    background: #F1F5F9;
    padding: 2px 8px;
    border-radius: 20px;
    margin-top: 0.25rem;
}
.k-family-item-card:hover .k-family-count {
    background: #FFF7ED;
    color: #EA580C;
}

/* Layout de Dos Columnas para Categorías B2B */
.k-catalog-layout {
    display: flex;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem 5rem 1rem;
    align-items: flex-start;
}
.k-catalog-sidebar {
    width: 25%;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
    z-index: 10;
}
.k-catalog-products {
    width: 75%;
    flex-grow: 1;
}

@media (max-width: 1023px) {
    .k-catalog-layout {
        flex-direction: column;
        gap: 2.5rem;
        padding: 2rem 1rem 4rem 1rem;
    }
    .k-catalog-sidebar {
        width: 100%;
        position: static;
    }
    .k-catalog-products {
        width: 100%;
    }
}

/* Barra Lateral de Filtros B2B Aislada */
aside.k-shop-sidebar {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
    width: 100%;
    box-sizing: border-box;
}
aside.k-shop-sidebar .k-filter-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    color: #0F172A;
    margin: 0 0 1.5rem 0;
    border-bottom: 1px solid #E2E8F0;
    padding-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
aside.k-shop-sidebar .k-filter-group {
    margin-bottom: 1.75rem;
}
aside.k-shop-sidebar .k-filter-group:last-child {
    margin-bottom: 0;
}
aside.k-shop-sidebar .k-group-label {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 0.85rem 0;
}
aside.k-shop-sidebar .k-filter-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
aside.k-shop-sidebar .k-filter-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    color: #475569;
    user-select: none;
    transition: color 0.2s ease;
}
aside.k-shop-sidebar .k-filter-item:hover {
    color: #EA580C;
}
aside.k-shop-sidebar .k-filter-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid #CBD5E1;
    border-radius: 5px;
    background: #FFFFFF;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.2s ease;
    flex-shrink: 0;
}
aside.k-shop-sidebar .k-filter-checkbox:checked {
    background: #EA580C;
    border-color: #EA580C;
}
aside.k-shop-sidebar .k-filter-checkbox:checked::after {
    content: '✓';
    font-size: 12px;
    color: #FFFFFF;
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
aside.k-shop-sidebar .k-filter-checkbox:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.15);
}
aside.k-shop-sidebar .k-reset-filters-btn {
    width: 100%;
    background: rgba(234, 88, 12, 0.05);
    border: 1px solid rgba(234, 88, 12, 0.15);
    color: #EA580C;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 13.5px;
    padding: 0.85rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 1.5rem;
}
aside.k-shop-sidebar .k-reset-filters-btn:hover {
    background: #EA580C;
    border-color: #EA580C;
    color: #FFFFFF;
    box-shadow: 0 8px 20px rgba(234, 88, 12, 0.15);
}

/* ==================================================
 * ECOSISTEMA DE NAVEGACIÓN MÓVIL RESPONSIVE PREMIUM
 * ================================================== */

/* Botón de Hamburguesa para Móviles */
.k-hamburger-btn {
    display: none;
    width: 28px;
    height: 20px;
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 2100;
}

.k-hamburger-btn span {
    display: block;
    position: absolute;
    height: 2.5px;
    width: 100%;
    background: #0F172A;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.k-hamburger-btn span:nth-child(1) { top: 0px; }
.k-hamburger-btn span:nth-child(2) { top: 8px; }
.k-hamburger-btn span:nth-child(3) { top: 16px; }

/* Transición animada a X al activarse */
.k-hamburger-btn.k-active span:nth-child(1) {
    top: 8px;
    transform: rotate(135deg);
}
.k-hamburger-btn.k-active span:nth-child(2) {
    opacity: 0;
    left: -40px;
}
.k-hamburger-btn.k-active span:nth-child(3) {
    top: 8px;
    transform: rotate(-135deg);
}

/* Panel Lateral Móvil (Drawer) */
.k-mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 2050;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 40px rgba(15, 23, 42, 0.08);
    display: block;
}

/* En tablets, no ocupar toda la pantalla */
@media (min-width: 640px) {
    .k-mobile-drawer {
        width: 380px;
    }
}

.k-mobile-drawer.k-active {
    right: 0;
}

.k-mobile-drawer-inner {
    height: 100%;
    overflow-y: auto;
    padding: 6rem 2rem 2.5rem 2rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

/* Deshabilitar scroll en el fondo al abrir */
body.k-no-scroll {
    overflow: hidden !important;
}

/* Lista de Navegación Móvil */
.k-mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.k-mobile-nav-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #0F172A;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s ease;
}

.k-mobile-nav-link:hover,
.k-mobile-nav-link:focus {
    color: #EA580C;
}

.k-accordion-arrow {
    font-size: 0.75rem;
    color: #94A3B8;
    transition: transform 0.3s ease;
}

/* Submenús desplegables (Acordeones) */
.k-mobile-submenu {
    list-style: none;
    padding: 0 0 0 1rem;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.k-submenu-header {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #94A3B8;
    letter-spacing: 0.5px;
    margin: 1.25rem 0 0.5rem 0;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid #F1F5F9;
}

.k-mobile-submenu a {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: #475569;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 0.55rem 0;
    transition: color 0.2s ease;
}

.k-mobile-submenu a:hover,
.k-mobile-submenu a:focus {
    color: #EA580C;
}

/* Separadores */
.k-mobile-divider {
    height: 1px;
    background: #E2E8F0;
    margin: 1.75rem 0;
    flex-shrink: 0;
}

/* Enlaces Extra Secundarios */
.k-mobile-extra-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.k-mobile-extra-links a {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.85rem;
    color: #64748B;
    text-decoration: none;
    transition: color 0.2s ease;
}

.k-mobile-extra-links a:hover {
    color: #EA580C;
}

/* Caja de Contacto Rápido */
.k-mobile-contact-info {
    margin: 1.75rem 0;
    text-align: center;
}

.k-mobile-call-btn {
    display: inline-block;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: #EA580C;
    text-decoration: none;
    font-size: 1.05rem;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    margin-bottom: 0.6rem;
    transition: all 0.2s ease;
}

.k-mobile-call-btn:hover {
    background: #EA580C;
    color: #FFFFFF;
    border-color: #EA580C;
}

.k-mobile-mail {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: #64748B;
}

/* Botón CTA de Cabecera Móvil */
.k-mobile-cta {
    display: block;
    background: #EA580C;
    color: #FFFFFF;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    text-align: center;
    padding: 0.95rem;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(234, 88, 12, 0.2);
    margin-top: auto;
    transition: all 0.2s ease;
}

.k-mobile-cta:hover {
    background: #D03E00;
    transform: translateY(-1px);
}

/* ==================================================
 * MEDIA QUERIES PARA ADAPTACIÓN RESPONSIVE DE CABECERA
 * ================================================== */
@media (max-width: 1023px) {
    /* Ocultar barra superior para ahorrar espacio vertical */
    .k-supertop {
        display: none !important;
    }
    
    /* Adaptar márgenes de cabecera principal */
    .k-main-header {
        padding: 0.75rem 1.5rem !important;
    }
    
    /* Ocultar elementos de navegación de escritorio */
    .k-desktop-nav,
    .k-main-header .k-header-cta {
        display: none !important;
    }
    
    /* Mostrar botón de hamburguesa */
    .k-hamburger-btn {
        display: block !important;
    }
}

/* ==================================================
 * ESTILOS DE LOOPS DE PRODUCTOS WOOCOMMERCE GLOBALES
 * ================================================== */
.k-shop-wrap {
    font-family: 'Inter', sans-serif;
    color: #475569;
    background-color: #FFFFFF;
    line-height: 1.7;
}

.k-heavy-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #0F172A;
}

/* Forzado estricto del Grid de WooCommerce */
.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important;
    gap: 2.25rem !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 2rem 0 !important;
    width: 100% !important;
}

.woocommerce.columns-4 ul.products,
.woocommerce .columns-4 ul.products {
    grid-template-columns: repeat(1, 1fr) !important;
}

.woocommerce.columns-3 ul.products,
.woocommerce .columns-3 ul.products {
    grid-template-columns: repeat(1, 1fr) !important;
}

@media (min-width: 640px) {
    .woocommerce.columns-4 ul.products,
    .woocommerce .columns-4 ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .woocommerce.columns-3 ul.products,
    .woocommerce .columns-3 ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (min-width: 1024px) {
    .woocommerce.columns-4 ul.products,
    .woocommerce .columns-4 ul.products {
        grid-template-columns: repeat(4, 1fr) !important;
    }
    .woocommerce.columns-3 ul.products,
    .woocommerce .columns-3 ul.products {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

/* Eliminar pseudo-elementos float clear que interfieren con CSS Grid */
.woocommerce ul.products::before,
.woocommerce ul.products::after {
    display: none !important;
    content: none !important;
}

/* Estilos Premium de Ficha del Loop */
.woocommerce ul.products li.product {
    background: #FFFFFF !important;
    border: 1px solid #E2E8F0 !important;
    border-radius: 18px !important;
    padding: 1.5rem !important;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    position: relative !important;
    margin: 0 !important;
    width: auto !important;
    float: none !important;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-5px) !important;
    border-color: #CBD5E1 !important;
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.06) !important;
}

.woocommerce ul.products li.product img {
    margin: 0 auto 1rem auto !important;
    display: block !important;
    height: 180px !important;
    width: 100% !important;
    object-fit: contain !important;
    mix-blend-mode: multiply !important;
    transition: transform 0.4s ease !important;
}

.woocommerce ul.products li.product:hover img {
    transform: scale(1.05) !important;
}

/* Estilos del sidebar B2B interactivo */
.k-filter-item {
    transition: transform 0.15s ease;
}
.k-filter-item:active {
    transform: scale(0.97);
}

/* ==================================================
 * SOPORTE PARA FILTROS COLAPSIBLES EN MÓVIL (B2B)
 * ================================================== */
@media (max-width: 1023px) {
    aside.k-shop-sidebar {
        padding: 1.25rem 1.5rem !important;
        border-radius: 16px !important;
        margin-bottom: 1.5rem !important;
    }
    aside.k-shop-sidebar .k-filter-title {
        cursor: pointer;
        user-select: none;
        margin-bottom: 0 !important;
        border-bottom: none !important;
        padding-bottom: 0 !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        font-size: 1.05rem !important;
    }
    aside.k-shop-sidebar .k-filter-title::after {
        content: '▼';
        font-size: 12px;
        color: #EA580C;
        transition: transform 0.3s ease;
    }
    aside.k-shop-sidebar.active .k-filter-title {
        border-bottom: 1px solid #E2E8F0 !important;
        padding-bottom: 0.75rem !important;
        margin-bottom: 1.5rem !important;
    }
    aside.k-shop-sidebar.active .k-filter-title::after {
        content: '▲';
        transform: rotate(180deg);
    }
    aside.k-shop-sidebar .k-filter-groups-wrapper {
        display: none;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    aside.k-shop-sidebar.active .k-filter-groups-wrapper {
        display: block;
        opacity: 1;
        margin-top: 1rem;
    }
}

/* ==================================================
 * MEJORAS RESPONSIVE PARA EL GRID DE PRODUCTOS EN MÓVIL
 * ================================================== */
@media (max-width: 639px) {
    .woocommerce.columns-4 ul.products,
    .woocommerce .columns-4 ul.products,
    .woocommerce.columns-3 ul.products,
    .woocommerce .columns-3 ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.85rem !important;
    }
    .woocommerce ul.products li.product {
        padding: 1rem !important;
        border-radius: 14px !important;
    }
    .woocommerce ul.products li.product img {
        height: 120px !important;
        margin-bottom: 0.5rem !important;
    }
    .woocommerce ul.products li.product .woocommerce-loop-product__title,
    .woocommerce ul.products li.product h2,
    .woocommerce ul.products li.product h3 {
        font-size: 13.5px !important;
        line-height: 1.3 !important;
        margin-top: 0.25rem !important;
        margin-bottom: 0.5rem !important;
        font-weight: 700 !important;
    }
    .woocommerce ul.products li.product .k-loop-view-btn {
        font-size: 11px !important;
        padding: 0.55rem 0.4rem !important;
        margin-top: 0.75rem !important;
        border-radius: 8px !important;
    }
    .woocommerce ul.products li.product .k-renting-price-tag {
        margin-top: 0.25rem !important;
    }
    .woocommerce ul.products li.product .k-renting-price-tag span {
        font-size: 11px !important;
    }
    .woocommerce ul.products li.product .k-renting-price-tag span span {
        font-size: 1.15rem !important;
    }
    .woocommerce ul.products li.product .k-card-badge-hot {
        top: 8px !important;
        left: 8px !important;
        font-size: 8px !important;
        padding: 3px 8px !important;
    }
}

/* Estilos de Iconos Flat Orange para Menú Móvil */
.k-mobile-icon {
    width: 16px;
    height: 16px;
    color: #EA580C;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    margin-top: -2px;
}
.k-mobile-contact-info svg {
    width: 16px;
    height: 16px;
    color: #EA580C;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    margin-top: -2px;
}

/* ==================================================
 * MEJORAS DE LEGIBILIDAD DE TIPOGRAFÍA EN MÓVIL
 * ================================================== */
@media (max-width: 767px) {
    /* Evitar que se dividan palabras a mitad de carácter en titulares */
    h1, h2, h3, h4, h5, h6,
    .has-huge-font-size,
    .has-large-font-size {
        word-break: keep-all !important;
        overflow-wrap: break-word !important;
        word-wrap: break-word !important;
        hyphens: none !important;
    }

    /* Redimensionar tipografía excesivamente grande para pantallas móviles */
    h1, .has-huge-font-size {
        font-size: 2.15rem !important;
        line-height: 1.15 !important;
    }
}

/* Soporte de visualización responsiva para descripciones de categoría */
.k-category-description-top {
    display: block;
}
.k-category-description-bottom {
    display: block;
}

@media (max-width: 1023px) {
    .k-category-description-top {
        display: none !important;
    }
}

@media (min-width: 1024px) {
    .k-category-description-bottom {
        display: none !important;
    }
}

/* Grid de adquisición B2B en la ficha de producto */
.k-acquisition-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

@media (max-width: 767px) {
    .k-acquisition-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
}

/* Estilos de botones de adquisición */
.k-acq-btn-cash {
    background: #FFFFFF !important;
    border: 1px solid #E2E8F0 !important;
    color: #475569 !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    padding: 0.65rem 1rem !important;
    border-radius: 10px !important;
    cursor: pointer !important;
    width: 100% !important;
    text-align: center !important;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
    outline: none !important;
}

.k-acq-btn-cash:hover {
    background: #F8FAFC !important;
    border-color: #CBD5E1 !important;
    color: #0F172A !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05) !important;
}

.k-acq-btn-renting {
    background: #EA580C !important;
    border: none !important;
    color: #FFFFFF !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    padding: 0.65rem 1rem !important;
    border-radius: 10px !important;
    cursor: pointer !important;
    width: 100% !important;
    text-align: center !important;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
    outline: none !important;
    box-shadow: 0 4px 10px rgba(234, 88, 12, 0.15) !important;
}

.k-acq-btn-renting:hover {
    background: #D97706 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 15px rgba(234, 88, 12, 0.25) !important;
}

.k-acq-btn-cash:active,
.k-acq-btn-renting:active {
    transform: translateY(0) !important;
}

/* Padding lateral de seguridad en versión móvil/tablet para fichas de producto */
@media (max-width: 1023px) {
    .single-product div.product,
    .single-product .woocommerce-breadcrumb {
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
        box-sizing: border-box !important;
    }
}

/* FactoryPOS Hero Screenshots Layout (Direct screenshots, no device frame mockup) */
.k-fpos-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.k-fpos-hero-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.k-fpos-hero-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.k-fpos-hero-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    object-fit: contain;
}

.k-fpos-hero-card-title {
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 13px;
    margin-top: 8px;
}

@media (max-width: 640px) {
    .k-fpos-hero-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        max-width: 320px;
    }
}


