/*** Estilos Generales ***/

body, html {
    margin: 0;
    padding: 0;
}

.mobile-only {
    display: none !important;
}

.desktop-only {
    display: inline-block !important;
}

.general-padding-20{
    padding: 20px;
}

.general-margin-top-10 {
    margin-top: 20px;
}

.general-margin-top-20{
    margin-top: 20px;
}

.general-margin-bottom-20 {
    margin-bottom: 20px;
}


.general-section-padding-10 {
    padding: 10px;
    box-sizing: border-box;
}

.general-seccion-completo {
    width: 100%;
    display: flex;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
}

.general-seccion-contenedor {
    max-width: 1600px;
    width: 100%;
    margin: auto;
    border-radius: 10px;
}

.general-seccion-body{
    margin-bottom: 10px;
}

.detalle-carrusel-titulo, .general-seccion-cabecera{
    color: white;
    padding: 0px 15px;
    border-radius: 10px 10px 0 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.detalle-carrusel-titulo:nth-child(1), .general-seccion-cabecera:nth-child(1){
    background-color: #4385f9;
}

.detalle-carrusel-titulo:nth-child(2), .general-seccion-cabecera:nth-child(3){
    background-color: #a477c0;
}

.detalle-carrusel-titulo:nth-child(3), .general-seccion-cabecera:nth-child(5){
    background-color: #f76c8f;
}

.general-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.general-footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.2s ease;
}

/*** Carrusel Swiper ***/

.general-banner-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.swipper-index {
    width: 100%;
    height: inherit;
    padding: 20px 0px;
}

.swiper-wrapper {
    display: flex;
    align-items: center;
}

.swiper-slide {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-slide:hover {
    transform: translateY(-10px);
}

.swiper-button-next,
.swiper-button-prev {
    background: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: #8A2BE2;
    transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #8A2BE2;
    color: white;
    transform: scale(1.1);
}

.swiper-pagination-bullet {
    background: rgba(138, 43, 226, 0.5);
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    background: #8A2BE2;
}

/*** TKI ***/

.tki-general-contenedor {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/*** TKI Cabecera ***/

.tki-general-cabecera {
    background-color: white;
    border-bottom: 1px solid rgba(138, 43, 226, 0.1);
    padding-top: 10px;
    position: sticky;
    top: 0;
    z-index: 1000;
    font-family: 'Poppins', sans-serif;
}

.tki-general-cabecera-contenedor {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/*** TKI Logo Hamburguesa ***/

.tki-general-logo-hamburguesa {
    display: flex;
    align-items: center;
    gap: 20px;
}

.tki-general-logo-enlace {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.tki-general-logo-enlace img {
    margin-bottom: 10px;
}

.tki-general-logo-icono {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8A2BE2 0%, #00CED1 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.tki-general-logo-icono:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
    animation: tki-general-brillar 3s infinite linear;
}

@keyframes tki-general-brillar {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.tki-general-logo-icono i {
    font-size: 24px;
    color: white;
    z-index: 1;
}

.tki-general-logo-texto {
    display: flex;
    flex-direction: column;
}

.tki-general-logo-nombre {
    font-size: 28px;
    font-weight: 800;
    color: #2C2C54;
    line-height: 1;
}

.tki-general-logo-subtitulo {
    font-size: 12px;
    color: #8A2BE2;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 3px;
}

/*** TKI Botón Hamburguesa ***/

.tki-general-hamburguesa-boton {
    display: none;
    background: #7d7cd7;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    color: white;
    font-size: 22px;
    cursor: pointer;
    justify-content: center;
    align-items: center;
}

.tki-general-hamburguesa-boton:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(138, 43, 226, 0.3);
}

/*** TKI Barra Búsqueda ***/

.tki-general-busqueda-contenedor {
    flex: 1;
    max-width: 500px;
    margin: 0 40px;
    position: relative;
}

.tki-general-busqueda-input {
    width: 100%;
    padding: 14px 20px;
    padding-left: 50px;
    border: 2px solid rgba(138, 43, 226, 0.2);
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.tki-general-busqueda-input:focus {
    outline: none;
    border-color: #8A2BE2;
    background-color: white;
    box-shadow: 0 5px 20px rgba(138, 43, 226, 0.15);
}

.tki-general-busqueda-icono {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #8A2BE2;
    font-size: 18px;
    cursor: pointer;
}

/*** TKI Acciones Superiores ***/

.tki-general-acciones-contenedor {
    display: flex;
    align-items: center;
    gap: 25px;
}

.tki-general-accion-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #2C2C54;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.tki-general-accion-icono {
    width: 42px;
    height: 42px;
    background-color: rgba(138, 43, 226, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
    font-size: 18px;
    color: #8A2BE2;
    transition: all 0.3s ease;
}

.tki-general-accion-texto {
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

.tki-general-accion-item:hover {
    color: #8A2BE2;
}

.tki-general-accion-item:hover .tki-general-accion-icono {
    background-color: rgba(138, 43, 226, 0.2);
    transform: translateY(-3px);
}

.tki-general-badge-notificacion {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #FF6B8B;
    color: white;
    font-size: 11px;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tki-general-badge-oferta {
    background-color: #FF6B8B;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    position: absolute;
    top: -8px;
    right: -8px;
}

/*** TKI Menú Principal ***/

.tki-general-menu-lateral-oferta {
    padding: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(138, 43, 226, 0.1);
    position: absolute;
    bottom: 40px;
    background: #fff;
    box-sizing: border-box;
}

.tki-general-menu-principal {
    background: linear-gradient(135deg, #FF6B8B 0%, #3A86FF 100%);
    padding: 0;
    position: relative;
    box-shadow: 0 5px 20px rgba(138, 43, 226, 0.15);
}

.tki-general-menu-contenedor {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

/*** TKI Navegación Principal ***/

.tki-general-navegacion-lista {
    display: flex;
    list-style: none;
    gap: 0;
    flex: 1;
    margin: 0px;
}

.tki-general-navegacion-item {
    position: relative;
}

.tki-general-navegacion-enlace {
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 15px;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tki-general-navegacion-enlace:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    top: 0;
    left: -100%;
    transition: left 0.3s ease;
    z-index: -1;
}

.tki-general-navegacion-enlace:hover:before {
    left: 0;
}

.tki-general-navegacion-enlace:hover {
    color: white;
}

.tki-general-navegacion-enlace i {
    font-size: 16px;
}

.tki-general-navegacion-item.tki-general-con-desplegable > .tki-general-navegacion-enlace:after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 11px;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.tki-general-navegacion-item.tki-general-con-desplegable:hover > .tki-general-navegacion-enlace:after {
    transform: rotate(180deg);
}

.tki-general-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 350px;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    z-index: 100;
    overflow: hidden;
}

.tki-general-submenu-drop {
    width: 800px;
}

.tki-general-submenu:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #8A2BE2 0%, #00CED1 100%);
}

.tki-general-navegacion-item:hover .tki-general-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tki-general-submenu-enlace {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    text-decoration: none;
    color: #2C2C54;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.tki-general-submenu-drop .tki-general-submenu-enlace {
    width: 350px;
    display: inline-flex;
}

.tki-general-submenu-enlace:before {
    content: '';
    position: absolute;
    width: 4px;
    height: 0;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #8A2BE2;
    transition: height 0.2s ease;
}

.tki-general-submenu-icono {
    width: 36px;
    height: 36px;
    background: rgba(138, 43, 226, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #8A2BE2;
    font-size: 16px;
    transition: all 0.3s ease;
}

.tki-general-submenu-enlace:hover .tki-general-submenu-icono {
    background: rgba(138, 43, 226, 0.2);
    transform: scale(1.1);
}

.tki-general-submenu-texto {
    flex: 1;
}

.tki-general-submenu-titulo {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 3px;
}

.tki-general-submenu-descripcion {
    font-size: 12px;
    color: #6C757D;
}

/*** TKI Menú Drop Down ***/

.tki-general-overlay-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tki-general-overlay-menu.tki-general-activo {
    display: block;
    opacity: 1;
}

.tki-general-menu-lateral {
    position: fixed;
    top: 0;
    left: -350px;
    width: 320px;
    height: 100%;
    background: white;
    box-shadow: 5px 0 30px rgba(0, 0, 0, 0.15);
    z-index: 2001;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    padding: 20px 0;
    font-family: 'Poppins', sans-serif;
}

.tki-general-menu-lateral-logo img {
    max-height: 70px;
}

.tki-general-menu-lateral.tki-general-activo {
    left: 0;
}

.tki-general-menu-lateral-cabecera {
    padding: 0px 10px 10px 10px;
    border-bottom: 1px solid rgba(138, 43, 226, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tki-general-menu-lateral-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.tki-general-menu-lateral-icono {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #8A2BE2 0%, #00CED1 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.tki-general-menu-lateral-texto {
    display: flex;
    flex-direction: column;
}

.tki-general-menu-lateral-nombre {
    font-size: 20px;
    font-weight: 800;
    color: #2C2C54;
    line-height: 1;
}

.tki-general-menu-lateral-cerrar {
    background: none;
    border: none;
    font-size: 24px;
    color: #2C2C54;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.tki-general-menu-lateral-cerrar:hover {
    background-color: rgba(138, 43, 226, 0.1);
    color: #8A2BE2;
}

.tki-general-menu-lateral-lista {
    list-style: none;
    padding: 0px 0px 20px 0px;
    height: calc(100% - 250px);
    display: inline-block;
    overflow-y: auto;
    width: 100%;
}

.tki-general-menu-lateral-item {
    border-bottom: 1px solid rgba(138, 43, 226, 0.05);
}

.tki-general-menu-lateral-enlace {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    text-decoration: none;
    color: #2C2C54;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    gap: 12px;
}

.tki-general-menu-lateral-enlace:hover {
    background-color: rgba(138, 43, 226, 0.05);
    color: #8A2BE2;
    padding-left: 25px;
}

.tki-general-menu-lateral-enlace i {
    width: 24px;
    text-align: center;
    font-size: 18px;
}

.tki-general-menu-lateral-enlace.tki-general-activo {
    color: #8A2BE2;
    background-color: rgba(138, 43, 226, 0.08);
    border-left: 4px solid #8A2BE2;
}

.tki-general-menu-lateral-item.tki-general-con-desplegable > .tki-general-menu-lateral-enlace:after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 12px;
    margin-left: auto;
    transition: transform 0.3s ease;
}

.tki-general-menu-lateral-item.tki-general-con-desplegable.tki-general-activo > .tki-general-menu-lateral-enlace:after {
    transform: rotate(180deg);
}

.tki-general-menu-lateral-submenu {
    background-color: rgba(138, 43, 226, 0.03);
    padding: 0 0 0 40px;
    display: none;
}

.tki-general-menu-lateral-item.tki-general-con-desplegable.tki-general-activo .tki-general-menu-lateral-submenu {
    display: block;
}

.tki-general-menu-lateral-submenu-enlace {
    display: flex;
    align-items: center;
    padding: 10px 10px 10px 0px;
    text-decoration: none;
    color: #2C2C54;
    font-size: 14px;
    gap: 10px;
    border-left: 2px solid transparent;
    transition: all 0.3s ease;
}

.tki-general-menu-lateral-submenu-enlace:hover {
    color: #8A2BE2;
    border-left-color: #8A2BE2;
    background-color: rgba(138, 43, 226, 0.05);
}

.tki-general-menu-lateral-submenu-icono {
    width: 20px;
    text-align: center;
    font-size: 14px;
}

/*** Header de Categoría ***/

.general-categoria-header {
    background: linear-gradient(135deg, #FF6B8B 0%, #3A86FF 100%);
    color: white;
    padding: 20px;
    border-radius: 10px 10px 0 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.general-categoria-titulo {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.general-categoria-titulo i {
    color: #fcdb5a;
    margin-right: 10px;
}

.general-categoria-icono {
    transition: transform 0.3s ease;
}

.general-cta-conteendor-titulo {
    display: inline-block;
    text-align: center;
    font-weight: bold;
    font-size: calc(0.9em + 0.7vw);
    margin: 10px 0px 25px 0px;
}

/*** TKI Banner ***/

.tki-general-banner {
    padding: 15px 0;
    background: linear-gradient(135deg, rgb(255 107 139 / 5%) 0%, rgb(58 134 255 / 6%) 100%);
    position: relative;
    overflow: hidden;
    height: inherit;
    display: flex;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    border-radius: 20px;
}

.tki-general-banner-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}

.tki-general-banner-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.tki-general-banner-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 107, 139, 0.1) 0%, rgba(58, 134, 255, 0.1) 100%);
    animation: tki-float 6s ease-in-out infinite;
}

.tki-general-banner-shape-1 {
    width: 120px;
    height: 120px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.tki-general-banner-shape-2 {
    width: 80px;
    height: 80px;
    top: 50%;
    right: 15%;
    animation-delay: 2s;
}

.tki-general-banner-shape-3 {
    width: 60px;
    height: 60px;
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes tki-float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.03); }
}

.tki-general-banner-main {
    position: relative;
    z-index: 2;
    text-align: center;
}

.tki-general-banner-titulo {
    font-size: calc(1.4em + 0.6vw);
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FF6B8B 0%, #3A86FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.tki-general-banner-titulo:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #FF6B8B 0%, #3A86FF 100%);
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.tki-general-banner-acciones {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
}

.tki-general-banner-boton {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
    justify-content: center;
    width: 50%;
}

.tki-general-banner-boton-primario {
    background: linear-gradient(135deg, #FF6B8B 0%, #3A86FF 100%);
    color: white;
}

.tki-general-banner-boton-secundario {
    background: white;
    color: #FF6B8B;
    border: 2px solid rgba(255, 107, 139, 0.2);
}

/*** TKI Sección Categorías ***/

.tki-categorias-seccion {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.05) 0%, rgba(0, 206, 209, 0.05) 100%);
    padding: 25px 0;
    border-bottom: 1px solid rgba(138, 43, 226, 0.1);
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.tki-categorias-seccion:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at 10% 20%, rgba(138, 43, 226, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(0, 206, 209, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.tki-categorias-titulo {
    font-size: 14px;
    font-weight: 600;
    color: #8A2BE2;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tki-categorias-titulo i {
    font-size: 16px;
}

.tki-categorias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.tki-categorias-item {
    display: flex;
    align-items: center;
    padding: 10px;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: #2C2C54;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(138, 43, 226, 0.1);
    position: relative;
    overflow: hidden;
}

.tki-categorias-item:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, #8A2BE2 0%, #00CED1 100%);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.tki-categorias-item:hover:before {
    transform: scaleX(1);
    transform-origin: left;
}

.tki-categorias-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(138, 43, 226, 0.15);
    border-color: rgba(138, 43, 226, 0.3);
}

.tki-categorias-icono {
    width: 40px;
    height: 40px;
    background: rgba(138, 43, 226, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #8A2BE2;
    font-size: 18px;
    transition: all 0.3s ease;
}

.tki-categorias-item:hover .tki-categorias-icono {
    background: rgba(138, 43, 226, 0.2);
    transform: scale(1.1);
}

.tki-categorias-texto {
    font-weight: 600;
    font-size: 15px;
}


/*** Accesos ***/

.general-acceso-contenedor {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    padding: 32px 24px;
    width: 100%;
    max-width: 320px;
    text-align: center;
    margin: auto;
    font-family: 'Poppins', sans-serif;
}

.general-acceso-logo {
    margin-bottom: 16px;
}

.general-acceso-logo-icono {
    font-size: 40px;
    color: #4285F4;
}

.general-acceso-titulo {
    color: #333;
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 500;
}

.general-acceso-mensaje {
    color: #666;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 24px;
}

.general-acceso-boton {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #4285F4;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: all 0.2s;
}

.general-acceso-boton:active {
    background: #3367D6;
    transform: translateY(1px);
}

.general-acceso-boton-icono {
    width: 18px;
    height: 18px;
    margin-right: 10px;
}

.general-acceso-beneficios {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
    text-align: left;
}

.general-acceso-beneficio {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 13px;
    color: #555;
}

.general-acceso-beneficio-icono {
    color: #34A853;
    margin-right: 8px;
    font-size: 16px;
}

.general-acceso-privacidad {
    font-size: 12px;
    color: #888;
    margin-top: 16px;
}

/*** Notificación ***/

.general-popup-notification {
    position: fixed;
    bottom: -100px;
    left: calc(50% - 10px);
    transform: translateX(-50%);
    background-color: #fff853;
    color: #000;
    padding: 16px 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    z-index: 1100;
    width: calc(98% - 30px);
    max-width: 410px;
    font-family: 'Poppins', sans-serif;
    margin: 0px 10px;
    box-sizing: border-box;
}

.general-popup-notification-close {
    position: absolute;
    top: 0px;
    right: 10px;
    font-size: 26px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-decoration: none;
    color: #000;
}

.general-popup-notification.normal {
    background-color: #fff853;
}

.general-popup-notification.show {
    bottom: 80px;
    opacity: 1;
}

.general-popup-notification .icon {
    font-size: 24px;
    color: #4CAF50;
}

.general-popup-notification .message {
    font-size: 18px;
    font-weight: 500;
}

/*** Popup Cargando ***/

.general-ajax-process-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.general-ajax-process-overlay--show {
    opacity: 1;
    visibility: visible;
}

.general-ajax-process-indicator {
    background: white;
    border-radius: 15px;
    width: 90%;
    max-width: 300px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.general-ajax-process-overlay--show .general-ajax-process-indicator {
    transform: scale(1);
}

.general-ajax-process-spinner {
    width: 60px;
    height: 60px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #a076d5;
    border-radius: 50%;
    animation: general-ajax-process-spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes general-ajax-process-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.general-ajax-process-text {
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.general-ajax-process-subtext {
    color: #666;
    font-size: 0.9rem;
}

/*** Toast Bienvenida ***/

.general-login-welcome-toast {
    position: fixed;
    top: 50px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    width: 95%;
    max-width: 380px;
    background: white;
    border-radius: 15px;
    padding: 10px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: all 0.5s ease;
    font-family: 'Poppins', sans-serif;
    z-index: 1001;
    display: none;
    box-sizing: border-box;
}

.general-login-welcome-toast--show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    display: inline-block;
}

.general-login-welcome-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    animation: general-login-welcome-pulse 1.5s infinite;
}

@keyframes general-login-welcome-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.general-login-welcome-toast-title {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.general-login-welcome-toast-message {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.general-login-welcome-username {
    color: #6a11cb;
    font-weight: bold;
}

/*** Efectos de Confeti ***/

.general-login-welcome-confetti {
    position: fixed;
    width: 8px;
    height: 8px;
    opacity: 0;
    pointer-events: none;
    z-index: 999;
}

@keyframes general-login-welcome-confetti-fall {
    0% {
        transform: translateY(-20px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/*** Modal PopUp ***/

.general-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 1000;
}

.general-popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.general-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;
    font-size: 30px;
    cursor: pointer;
    background: rgba(0,0,0,0.5);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.general-popup-image {
    max-width: 90vw;
    max-height: 90vh;
}

/*** Botón Whatsapp ***/
.general-btn-whatsapp {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    padding: 12px 18px 12px 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

.general-btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.general-btn-whatsapp-icon-container {
    position: relative;
    width: 45px;
    height: 45px;
    margin-right: 15px;
}

.general-btn-whatsapp-icon {
    width: 100%;
    height: 100%;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: general-btn-whatsapp-pulse 2s infinite;
}

.general-btn-whatsapp-icon i {
    font-size: 22px;
    color: white;
}

.general-btn-whatsapp-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #FF3B30;
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    animation: general-btn-whatsapp-badge-pulse 1.5s infinite;
    border: 2px solid white;
}

.general-btn-whatsapp-text {
    font-weight: 600;
    font-size: 16px;
    color: #333;
    margin-right: 10px;
}

.general-btn-whatsapp-action {
    background: #25D366;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.general-btn-whatsapp:hover .general-btn-whatsapp-action {
    background: #128C7E;
    transform: scale(1.05);
}

@keyframes general-btn-whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes general-btn-whatsapp-badge-pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .general-btn-whatsapp {
        bottom: 65px;
        padding: 5px;
    }
    
    .general-btn-whatsapp-icon-container {
        width: 50px;
        height: 50px;
        margin-right: 0px;
    }
    
    .general-btn-whatsapp-icon i {
        font-size: 30px;
    }
    
    .general-btn-whatsapp-badge {
        width: 20px;
        height: 20px;
        font-size: 11px;
    }
    
    .general-btn-whatsapp-text, .general-btn-whatsapp-action  {
        display: none;
    }
    
}

/*** Cards Temáticas ***/

.tki-general-grid-categorias {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.tki-general-card {
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.tki-general-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(138, 43, 226, 0.15);
}

.tki-general-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.tki-general-card:hover .tki-general-card-img {
    transform: scale(1.1);
}

.tki-general-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
    padding: 10px 20px 10px;
    color: white;
}

.tki-general-card-titulo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #FFFFFF 0%, #E2E8FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tki-general-card-descripcion {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/*** Grid de Productos ***/

.general-categoria-body {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.general-category-section {
    padding: 20px;
    box-sizing: border-box;
}

.general-productos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.general-servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
    gap: 15px;
}

.general-list-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/*** Tarjeta de Producto ***/

.general-list-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e9ecef;
    height: max-content;
    width: calc(25% - 10px);
}

.general-list-acciones {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.general-producto-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e9ecef;
    min-width: 250px;
    height: max-content;
    display: inline-block;
}

.general-producto-card a {
    text-decoration: none;
}

.general-producto-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.general-producto-favorito {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 35px;
    height: 35px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    color: #cbcbcb;
}

.general-producto-favorito-activo {
    background-color: #ff4757;
    color: #fff;
}

.general-producto-favorito:hover {
    background: #ff4757;
    color: white;
}

.general-producto-labels {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
}

.general-producto-descuento {
    background: #dc2626;
    color: white;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 2px;
}

.general-producto-vendido {
    background: #ffdc42;
    color: #000;
    padding: 2px 4px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 2px;
}

.general-producto-combo {
    background: #0e6439;
    color: #fff;
    padding: 4px 7px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 2px;
}

.general-producto-imagen {
    width: 100%;
    height: inherit;
    object-fit: cover;
    display: block;
}

.general-servicio-imagen {
    width: 180px;
    display: inline-block;
    height: 170px;
    vertical-align: middle;
}

.general-servicio-info {
    width: calc(100% - 200px);
    display: inline-block;
    vertical-align: top;
    padding: 5px;
    box-sizing: border-box;
    vertical-align: middle;
}

.general-producto-info {
    padding: 15px;
}

.general-producto-titulo {
    font-size: calc(0.8em + 0.3vw);
    font-weight: 600;
    color: #000;
    margin: 0px 5px 10px 5px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: center;
}

.general-servicio-info .general-producto-titulo {
    text-align: left;
}

.general-producto-titulo a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.general-producto-titulo a:hover {
    color: #69495b;
}

.general-producto-precio {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    justify-content: center;
}

.general-producto-detalle {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    justify-content: center;
    color: #5a235a;
    margin-bottom: 15px;
}

.general-producto-precio-actual {
    font-size: calc(0.9em + 0.4vw);
    font-weight: 700;
    color: #5882ed;
}

.general-producto-acciones {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.general-producto-btn {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    box-sizing: border-box;
    max-width: 250px;
    margin: auto;
}

.general-producto-btn-detalle {
    background: #f8f9fa;
    color: #333333;
    border: 1px solid #e9ecef;
}

.general-producto-btn-detalle:hover {
    background: #e9ecef;
}

.general-producto-btn-comprar {
    background: #69495b;
    color: white;
    border: 1px solid #69495b;
}

.general-producto-btn-comprar:hover {
    background: #8d617b;
    transform: translateY(-2px);
}

.general-producto-btn-continuar {
    background: #27ae60;
    border: 1px solid #27ae60;
    color: #fff;
    font-size: 17.5px;
    width: 49%;
    display: inline-block;
    vertical-align: middle;
    border-radius: 5px;
}

.general-producto-btn-previo {
    background: #27ae60;
    border: 1px solid #27ae60;
    color: #fff;
    font-size: 17.5px;
    width: 100%;
    display: inline-block;
    vertical-align: middle;
    border-radius: 5px;
}

.general-producto-btn-reservar {
    background: #04b32a;
    color: white;
    border: 1px solid #04b32a;
}

/*** Footer ***/

.general-footer-completo {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    color: #e2e8f0;
    padding: 50px 0 25px;
    font-family: 'Poppins', sans-serif;
    position: relative;
}

.general-footer-completo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8A2BE2, #00CED1, #3A86FF);
}

.general-footer-ancho-maximo {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.general-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.general-footer-columna h4 {
    color: #ffbfe4;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0px;
    padding-bottom: 12px;
    position: relative;
    margin-top: 0px;
}

.general-footer-columna p {
    color: #cbd5e1;
    line-height: 1.7;
    font-size: 14px;
    margin-bottom: 18px;
}

.general-footer-lista {
    list-style: none;
    padding: 0;
    margin: 0;
}

.general-footer-lista li {
    margin-bottom: 10px;
}

.general-footer-lista a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    padding: 6px 0;
}

.general-footer-lista a:hover {
    color: #8A2BE2;
    transform: translateX(8px);
}

.general-footer-lista i {
    color: #8A2BE2;
    font-size: 10px;
    margin-right: 12px;
    transition: transform 0.3s;
}

.general-footer-lista a:hover i {
    transform: rotate(90deg);
}

.general-footer-contacto-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.general-footer-contacto-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 14px;
    line-height: 1.5;
}

.general-footer-contacto-item i {
    color: #8A2BE2;
    font-size: 16px;
    width: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.general-footer-redes-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
}

.general-footer-red-social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s;
}

.general-footer-red-social:hover {
    transform: translateY(-5px) scale(1.1);
    border-color: #8A2BE2;
}

.facebook:hover { background: #1877F2; }
.instagram:hover { background: #E4405F; }
.tiktok:hover { background: #000000; }
.youtube:hover { background: #FF0000; }
.whatsapp:hover { background: #25D366; }

.general-footer-certificaciones {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.general-footer-certificacion {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #cbd5e1;
    padding: 8px 14px;
    background: rgba(138, 43, 226, 0.15);
    border-radius: 20px;
    border: 1px solid rgba(138, 43, 226, 0.3);
}

.general-footer-certificacion i {
    color: #8A2BE2;
    font-size: 14px;
}

.general-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 25px;
    text-align: center;
    display: inline-block;
    width: 100%;
}

.general-footer-copyright {
    width: auto;
    display: inline-block;
    text-align: center;
}

.general-footer-copyright p {
    font-size: 13px;
    color: #94a3b8;
    margin: 0;
}

.general-footer-links {
    display: flex;
    gap: 20px;
}

.general-footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s;
    position: relative;
    padding: 0 5px;
}

.general-footer-links a:hover {
    color: #8A2BE2;
}

.general-footer-links a::after {
    content: '•';
    position: absolute;
    right: -12px;
    color: #64748b;
}

.general-footer-links a:last-child::after {
    display: none;
}

.general-footer-links i {
    font-size: 11px;
    margin-right: 6px;
}

/* ===== TOP ===== */

.general-top {
    background: #fff900;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 10px;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

.general-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.general-top-text {
    flex: 1;
    padding-right: 30px;
}

.general-top-title {
    font-size: 1rem;
    line-height: 1.4;
}

.general-top-highlight {
    color: #2A2A2A;
    font-weight: 800;
}

.general-top-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.general-top-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    min-width: 150px;
}

.general-top-tiktok {
    background-color: #000000;
    color: white;
}

.general-top-youtube {
    background-color: #FF0000;
    color: white;
}

.general-top-facebook {
    background-color: #1877F2;
    color: white;
}

.general-top-icons {
    font-size: 1.1rem;
}

/* ===== DROPDOWN IDIOMAS ===== */

.general-header-dropdown {
    position: relative;
    display: inline-block;
    border: solid 1px #ccc;
    border-radius: 20px;
}

.general-header-dropdown-btn {
    display: inline-block;
    cursor: pointer;
    padding: 11px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: none;
    border: none;
    color: inherit;
    font-family: inherit;
    background: rgba(255,255,255,0.1);
}

.general-header-dropdown-btn img {
    vertical-align: middle;
    width: 20px;
    height: 15px;
    margin-right: 5px;
}

.general-header-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    min-width: 180px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 5px;
    text-align: left;
}

.general-header-dropdown-menu.show {
    display: block;
}

.general-header-dropdown-item {
    display: block;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    background: #fff;
    cursor: pointer;
    transition: background 0.3s ease;
}

.general-header-dropdown-item:hover {
    background: #f8f9fa;
}

.general-header-dropdown-item:last-child {
    border-bottom: none;
}

.general-header-dropdown-item img {
    vertical-align: middle;
    margin-right: 10px;
    width: 20px;
    height: 15px;
}

/* ===== BREADCRUMB GENERAL ===== */

.general-breadcrumb {
    background-color: #F8F9FF;
    padding: 15px 0;
    border-bottom: 1px solid rgba(138, 43, 226, 0.1);
    margin-bottom: 15px;
}

.general-breadcrumb-contenedor {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 10px;
    box-sizing: border-box;
}

.general-breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
    font-family: 'Poppins', sans-serif;
}

.general-breadcrumb li {
    display: flex;
    align-items: center;
}

.general-breadcrumb li:not(:last-child)::after {
    content: "/";
    margin: 0 8px;
    color: #8A2BE2;
    font-weight: 400;
    font-size: 16px;
    opacity: 0.7;
}

.general-breadcrumb a {
    color: #8A2BE2;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 4px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.general-breadcrumb a:hover {
    color: white;
    background: linear-gradient(135deg, #8A2BE2 0%, #3A86FF 100%);
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(138, 43, 226, 0.2);
}

.general-breadcrumb li[aria-current="page"] {
    color: #2C2C54;
    font-weight: 600;
    font-size: 14px;
    padding: 4px 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-radius: 4px;
    padding-left: 13px;
}

.general-breadcrumb i {
    font-size: 13px;
}

/*******   CATEGORIA   *********/

.tki-seccion-categoria {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.05) 0%, rgba(0, 206, 209, 0.05) 100%);
    border-radius: 15px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.tki-categoria-imagen {
    width: 250px;
    height: 240px;
    border-radius: 15px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 15px 30px rgba(138, 43, 226, 0.2);
}

.tki-categoria-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tki-categoria-contenido {
    flex: 1;
}

.tki-categoria-titulo {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #FF6B8B 0%, #3A86FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    font-size: calc(1.4em + 0.7vw);
}

.tki-categoria-subtitulo {
    font-size: 18px;
    color: #8A2BE2;
    font-weight: 600;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tki-categoria-descripcion {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 10px;
}

.tki-boton-personalizado {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(138, 43, 226, 0.2);
    border: none;
    cursor: pointer;
}

.tki-boton-personalizado:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(138, 43, 226, 0.3);
}

.tki-muestrario {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    padding: 15px 0px;
    overflow-x: auto;
    margin-bottom: 10px;
}

.tki-color-box {
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: bold;
    flex-shrink: 0;
}

/*** Estilos TKI productos ***/

.tki-productos-seccion {
    padding: 20px 0px 50px 0px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.03) 0%, rgba(0, 206, 209, 0.03) 100%);
    position: relative;
    overflow: hidden;
}

.tki-productos-seccion:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(138, 43, 226, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(0, 206, 209, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.tki-productos-titulo-seccion {
    text-align: center;
}

.tki-productos-titulo-principal {
    font-size: calc(1.6em + 0.6vw);
    font-weight: 800;
    background: linear-gradient(135deg, #8A2BE2 0%, #00CED1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.tki-productos-subtitulo {
    font-size: 1.2rem;
    color: #6C757D;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.tki-general-acciones-contenedor-oferta {
    display: flex;
    order: 3;
    align-items: center;
    background: linear-gradient(135deg, #FF6B8B 0%, #FFA500 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    box-sizing: border-box;
    margin-top: 5px;
    margin-left: 10px;
    text-decoration: none;
}


/*** RESPONSIVE ***/

@media (max-width: 992px) {
    .tki-general-busqueda-contenedor {
        margin: 0 20px;
    }
    .tki-general-acciones-contenedor {
        gap: 5px;
    }
    .tki-general-navegacion-enlace {
        padding: 18px 15px;
        font-size: 14px;
    }
    .tki-general-hamburguesa-boton {
        display: flex;
    }
    .tki-general-menu-contenedor {
        flex-direction: column;
        align-items: flex-start;
    }
    .tki-general-navegacion-lista {
        flex-direction: column;
        width: 100%;
        display: none;
    }
    .tki-general-navegacion-lista.tki-general-activo {
        display: flex;
    }
    .tki-general-navegacion-item {
        width: 100%;
    }
    .tki-general-navegacion-enlace {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .tki-general-submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        background: rgba(255, 255, 255, 0.05);
        margin-left: 20px;
        display: none;
    }
    .tki-general-navegacion-item.tki-general-con-desplegable.tki-general-activo .tki-general-submenu {
        display: block;
    }
    .tki-general-banner-acciones {
        align-items: center;
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .mobile-only {
        display: inline-block !important;
    }
    .desktop-only {
        display: none !important;
    }
    .tki-general-grid-categorias {
        grid-template-columns: repeat(2, 1fr);
        max-height: 420px;
        overflow: auto;
    }
    .tki-categoria-titulo {
        margin: 0px;
    }
    .tki-general-logo-enlace img {
        max-height: 50px;
    }
    .tki-general-cabecera-contenedor {
        flex-wrap: wrap;
    }
    .tki-general-logo-hamburguesa {
        order: 1;
        flex: 1;
        gap: 5px;
    }
    .tki-general-busqueda-contenedor {
        order: 3;
        max-width: 100%;
        margin: 10px 0 0 0;
    }
    .tki-general-acciones-contenedor {
        order: 2;
    }
    .tki-general-accion-texto {
        display: none;
    }
    .tki-categorias-grid {
        overflow: auto;
        grid-template-columns: repeat(2, 1fr);
        max-height: 285px;
    }
    .tki-seccion-categoria {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    .tki-categoria-imagen {
        width: 250px;
        height: 250px;
    }
    .general-producto-acciones {
        flex-direction: column;
    }
    .general-producto-info {
        padding: 10px;
    }
    .general-productos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .general-producto-card {
        min-width: unset;
    }
    .general-producto-btn {
        max-width: unset;
        width: 100%;
    }
    .tki-general-card-descripcion {
        margin: 0px 5px 10px 0px;
    }
    .tki-general-card {
        max-height: 170px;
    }
    .tki-general-card-titulo {
        margin-bottom: 0px;
    }
    .tki-general-card-overlay {
        padding: 5px 10px;
    }
    .tki-general-banner-shape {
        opacity: 0.4;
    }

    .tki-general-accion-item.tki-oferta {
        display: none;
    }
    .tki-general-cabecera {
        padding-bottom: 10px;
    }
    .general-btn-whatsapp {
        bottom: 65px;
        padding: 5px;
    }
    .general-btn-whatsapp-icon i {
        font-size: 30px;
    }
    .general-btn-whatsapp-badge {
        width: 20px;
        height: 20px;
        font-size: 11px;
    }
    .general-btn-whatsapp-text, .general-btn-whatsapp-action {
        display: none;
    }
    .general-footer-completo {
        padding: 40px 0 20px;
    }
    .general-footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .general-footer-links {
        justify-content: center;
    }
    .general-footer-redes-grid {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .tki-general-logo-nombre {
        font-size: 22px;
    }
    .tki-general-banner-container {
        padding: 0 15px;
    }
    .tki-general-banner-boton {
        padding: 12px 20px;
        font-size: 14px;
        width: 100%;
    }
    .tki-general-banner-shape-1,
    .tki-general-banner-shape-2,
    .tki-general-banner-shape-3 {
        display: none;
    }
    .general-footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .general-footer-ancho-maximo {
        width: 95%;
    }
    .general-footer-links {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    .general-footer-links a::after {
        display: none;
    }
}

@media (max-width: 400px) {
    .tki-general-banner {
        height: 380px;
        padding: 30px 0;
    }
    .tki-general-banner-titulo {
        font-size: 1.6rem;
    }
}