/* 
    CSS CABECERA ESTILO WITHINGS
    Incluye todas las animaciones y estilos del header con menús desplegables
*/

/* Variables CSS */
:root {
    --color-neutral-grayscale-800: 51, 51, 51;
    --color-neutral-grayscale-700: 102, 102, 102;
    --color-neutral-grayscale-600: 153, 153, 153;
    --color-bg: #ffffff;
    --color-primary: #2c5aa0;
    --color-accent: #2c5aa0;
    --color-secondary: #d4af37;
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-12: 3rem;
    --border-radius: 8px;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset y Utilidades */
.header-withings * {
    box-sizing: border-box;
}

.header-withings .flex {
    display: flex;
}

.header-withings .items-center {
    align-items: center;
}

.header-withings .gap-2 {
    gap: var(--space-2);
}

.header-withings .gap-3 {
    gap: var(--space-3);
}

.header-withings .gap-lg-5 {
    gap: var(--space-5);
}

.header-withings .padding-bottom-1 {
    padding-bottom: var(--space-1);
}

.header-withings .padding-bottom-2 {
    padding-bottom: var(--space-2);
}

.header-withings .padding-top-2 {
    padding-top: var(--space-2);
}

.header-withings .padding-right-6 {
    padding-right: var(--space-6);
}

.header-withings .padding-left-6 {
    padding-left: var(--space-6);
}

.header-withings .padding-right-lg-0 {
    padding-right: 0;
}

.header-withings .padding-left-lg-0 {
    padding-left: 0;
}

.header-withings .margin-top-lg-8 {
    margin-top: var(--space-8);
}

.header-withings .txt-body-large {
    font-size: 1.125rem;
    line-height: 1.5;
}

.header-withings .txt-caption {
    font-size: 0.875rem;
    line-height: 1.5;
}

.header-withings .txt-note {
    font-size: 0.75rem;
    line-height: 1.5;
}

.header-withings .txt-medium {
    font-weight: 600;
}

.header-withings .txt-uppercase {
    text-transform: uppercase;
}

.header-withings .opacity-80 {
    opacity: 0.8;
}

.header-withings .hidden-lg {
    display: none;
}

.header-withings .hidden-mobile {
    display: inline;
}

/* Header Principal */
.header-withings {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #0d6efd;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.header-withings.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-withings {
    width: 100%;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--space-2) var(--space-8);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    gap: var(--space-6);
}

/* Logo */
.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    z-index: 10;
    margin-right: var(--space-4);
    flex-shrink: 0;
}

.logo-withings {
    height: 40px;
    display: flex;
    align-items: center;
}

.logo-withings img {
    height: 38px;
    width: auto;
    margin-right: 0.5rem;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

/* Navigation Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-6);
    flex: 1;
    justify-content: center;
}

/* Categories */
.categories {
    position: relative;
}

.category-items {
    display: flex;
    gap: var(--space-2);
    align-items: center;
}

.category-box {
    position: relative;
}

.category-key {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    padding: var(--space-1) var(--space-3);
    display: inline-block;
    transition: var(--transition-base);
    position: relative;
}

.category-key:hover {
    color: rgba(255, 255, 255, 0.8);
}

.pcOpacity {
    opacity: 1;
}

.reverse-arrow {
    display: none;
}

/* Category Value (Dropdown) */
.category-value {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius);
    padding: var(--space-8);
    min-width: 800px;
    max-width: 1200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    margin-top: var(--space-2);
    pointer-events: none;
}

.category-box:hover .category-value {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
}

/* Grid Container */
.grid-container {
    display: grid;
}

.col2 {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
}

.col3 {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

/* Valuebox */
.valuebox {
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-box:hover .valuebox {
    opacity: 1;
    transform: translateX(0);
}

/* Delays para animaciones escalonadas */
.delay-0-1 {
    transition-delay: 0.1s;
}

.delay-0-2 {
    transition-delay: 0.2s;
}

.delay-0-3 {
    transition-delay: 0.3s;
}

.delay-0-4 {
    transition-delay: 0.4s;
}

.delay-0-5 {
    transition-delay: 0.5s;
}

/* Fade In Right Small Animation */
.fadeInRightSmall {
    animation: fadeInRightSmall 0.5s ease-out forwards;
}

@keyframes fadeInRightSmall {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Product Box */
.productBox {
    padding: var(--space-4) 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition-base);
}

.productBox:last-child {
    border-bottom: none;
}

.productBox:hover {
    background: rgba(0,0,0,0.02);
    border-radius: var(--border-radius);
    padding-left: var(--space-2);
    padding-right: var(--space-2);
}

.isProduct {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(44, 90, 160, 0.1);
    border-radius: var(--border-radius);
    flex-shrink: 0;
}

.productText {
    flex: 1;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.125rem var(--space-2);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge.best {
    background: var(--color-secondary);
    color: white;
}

.badge.new {
    background: var(--color-primary);
    color: white;
}

.txt-label {
    font-size: 0.75rem;
}

/* Subtitle */
.subtitle {
    margin-bottom: var(--space-4);
    padding-left: 0;
    margin-left: 0;
}

/* Valuebox específico para categorías - sin padding izquierdo */
.swipers .valuebox,
.productosBox .swipers .valuebox {
    padding-left: 0 !important;
    margin-left: 0 !important;
}

/* Asegurar que el contenedor swipers no tenga padding izquierdo */
.productosBox .swipers {
    padding-left: 0;
    margin-left: 0;
}

/* Categories List - Tienda Online Menu */
.categories-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-height: 500px;
    overflow-y: auto;
    padding-right: var(--space-2);
    padding-left: 0;
    margin-left: 0;
}

.categories-list::-webkit-scrollbar {
    width: 6px;
}

.categories-list::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 3px;
}

.categories-list::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

.categories-list::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3);
}

.category-item {
    position: relative;
    margin-bottom: 0;
}

.category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-2) var(--space-3);
    padding-left: 0;
    text-decoration: none;
    color: #333;
    border-radius: var(--border-radius);
    transition: all 0.2s ease;
    margin-bottom: 1px;
    margin-left: 0;
}

.category-link:hover {
    background: rgba(13, 110, 253, 0.08);
    color: #0d6efd;
}

.category-name {
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.5;
    flex: 1;
}

.category-arrow {
    font-size: 1.25rem;
    color: #999;
    margin-left: var(--space-2);
    transition: transform 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
}

.category-link:hover .category-arrow {
    color: #0d6efd;
    transform: translateX(3px);
}

/* Subcategories List */
.subcategories-list {
    display: none;
    flex-direction: column;
    padding-left: var(--space-3);
    margin-top: var(--space-1);
    margin-bottom: var(--space-2);
    margin-left: 0;
    gap: 0;
    border-left: 2px solid rgba(13, 110, 253, 0.15);
    background: rgba(13, 110, 253, 0.02);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    padding-top: var(--space-1);
    padding-bottom: var(--space-1);
}

.category-item:hover .subcategories-list,
.category-item.active .subcategories-list {
    display: flex;
    animation: slideDownFade 0.25s ease-out;
}

@keyframes slideDownFade {
    from {
        opacity: 0;
        transform: translateY(-8px);
        max-height: 0;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        max-height: 500px;
    }
}

.subcategory-link {
    display: block;
    padding: var(--space-1) var(--space-3);
    padding-left: var(--space-2);
    text-decoration: none;
    color: #555;
    font-size: 0.875rem;
    line-height: 1.6;
    border-radius: var(--border-radius);
    transition: all 0.2s ease;
    margin-left: 0;
    margin-right: var(--space-2);
    position: relative;
}

.subcategory-link::before {
    content: '';
    position: absolute;
    left: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: #0d6efd;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.subcategory-link:hover {
    color: #0d6efd;
    background: rgba(13, 110, 253, 0.08);
    padding-left: var(--space-4);
    text-decoration: underline;
}

.subcategory-link:hover::before {
    opacity: 1;
}

.subcategory-link.view-more {
    color: #0d6efd;
    font-weight: 500;
    font-style: italic;
    margin-top: var(--space-1);
}

.subcategory-link.view-more:hover {
    text-decoration: underline;
}

/* View All Categories Link */
.view-all-categories {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-top: var(--space-4);
    margin-left: 0;
    padding-top: var(--space-4);
    padding-left: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: #0d6efd;
    transition: all 0.2s ease;
}

.view-all-categories:hover {
    color: #0b5ed7;
    text-decoration: underline;
}

/* Swipers en Dropdown */
.swipers {
    margin-top: var(--space-8);
}

.swiper_slider {
    overflow: hidden;
    border-radius: var(--border-radius);
}

.header-withings .swiper-wrapper {
    display: flex;
    gap: var(--space-4);
}

.header-withings .swiper-slide {
    min-width: 300px;
    background: var(--color-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.header-withings .swiper-slide:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.swiper-texts {
    padding: var(--space-6);
}

.swiper-image-placeholder {
    width: 100%;
    height: 150px;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

/* Category Others (Right Side) */
.category-others {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-left: auto;
}

.btn-phone-link {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-1) var(--space-3);
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition-base);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
    font-size: 0.875rem;
}

.btn-phone-link:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

.phone-icon {
    font-size: 1.25rem;
}

.btn-primary-nav {
    padding: var(--space-1) var(--space-4);
    background: #ffffff;
    color: #0d6efd;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition-base);
    white-space: nowrap;
    border: 1px solid transparent;
    font-size: 0.875rem;
}

.btn-primary-nav:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #0b5ed7;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Mobile Navigation Background */
.mobile-nav-bg {
    display: none;
}

/* Botón cerrar menú móvil - Oculto en escritorio */
.mobile-menu-close {
    display: none;
}

/* Burger Menu */
#navButtonBurger {
    display: none;
    cursor: pointer;
    padding: var(--space-2);
    z-index: 1001;
}

#navBurgerWrapper {
    width: 24px;
    height: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.burger-line {
    width: 100%;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: var(--transition-base);
    transform-origin: center;
}

#navButtonBurger.active .burger-line-1 {
    transform: rotate(45deg) translate(6px, 6px);
}

#navButtonBurger.active .burger-line-2 {
    opacity: 0;
}

#navButtonBurger.active .burger-line-3 {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Placeholder Header */
.placeholder-header {
    height: 0;
    margin: 0;
    padding: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .category-value {
        min-width: 600px;
    }
    
    .col2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hidden-lg {
        display: block;
    }
    
    .hidden-mobile {
        display: none;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100vw;
        max-width: 100%;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: calc(var(--space-8) + 65px) var(--space-4) var(--space-8);
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        z-index: 1002;
        box-sizing: border-box;
        pointer-events: auto;
    }
    
    /* Botón cerrar menú móvil - Visible solo en móvil */
    .mobile-menu-close {
        display: flex !important;
        position: absolute;
        top: var(--space-4);
        right: var(--space-4);
        width: 40px;
        height: 40px;
        background: transparent;
        border: 2px solid #333;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 1003;
        transition: all 0.3s ease;
        color: #333;
        padding: 0;
    }
    
    .mobile-menu-close:hover {
        background: #f0f0f0;
        border-color: #0d6efd;
        color: #0d6efd;
        transform: rotate(90deg);
    }
    
    .mobile-menu-close svg {
        width: 20px;
        height: 20px;
    }
    
    .nav-links.active {
        transform: translateX(0);
    }
    
    .mobile-nav-bg {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100vw;
        max-width: 100%;
        height: 100vh;
        background: rgba(0,0,0,0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s;
        z-index: 1001;
        box-sizing: border-box;
        pointer-events: none;
    }
    
    .mobile-nav-bg.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    
    .category-items {
        flex-direction: column;
        width: 100%;
        gap: 0;
        margin: 0;
        padding: 0;
    }
    
    .category-box {
        width: 100%;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        margin: 0;
        padding: 0;
    }
    
    .category-key {
        width: 100%;
        padding: var(--space-4);
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-sizing: border-box;
        color: #333;
        font-size: 1rem;
        transition: all 0.3s ease;
    }
    
    .category-key:hover,
    .category-key:active,
    .category-box.active .category-key {
        background: rgba(13, 110, 253, 0.1);
        color: #0d6efd;
    }
    
    .reverse-arrow {
        display: block;
    }
    
    .category-value {
        position: static;
        min-width: 100%;
        box-shadow: none;
        padding: 0;
        margin: 0;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        transform: none;
        transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
        background: transparent;
        border-radius: 0;
        display: flex;
        flex-direction: column;
    }
    
    .category-box.active .category-value {
        opacity: 1;
        max-height: 2000px;
        padding: var(--space-4);
        margin-top: var(--space-2);
        margin-left: var(--space-4);
        margin-right: var(--space-4);
        border-left: 3px solid #0d6efd;
    }
    
    /* Mejorar organización de submenús en móvil - Estética unificada */
    .category-value .grid-container,
    .category-value > .grid-container {
        display: flex !important;
        flex-direction: column !important;
        gap: var(--space-4) !important;
        width: 100% !important;
    }
    
    .category-value .col2,
    .category-value .col3,
    .category-value > .col2,
    .category-value > .col3 {
        grid-template-columns: 1fr !important;
        display: flex !important;
        flex-direction: column !important;
        gap: var(--space-4) !important;
    }
    
    /* Wrapper de padding para Tienda Online - eliminar en móvil */
    .category-value .padding-right-6,
    .category-value .padding-left-6,
    .category-value > .padding-right-6,
    .category-value > .padding-left-6 {
        padding: 0 !important;
        width: 100% !important;
        margin: 0 !important;
    }
    
    /* Estilo unificado para todos los valuebox */
    .category-value .valuebox,
    .category-value > .valuebox,
    .category-box.serviciosBox .valuebox,
    .category-box.blogBox .valuebox,
    .category-box.productosBox .valuebox,
    .serviciosBox .category-value .valuebox,
    .blogBox .category-value .valuebox,
    .productosBox .category-value .valuebox {
        opacity: 1 !important;
        transform: none !important;
        margin-bottom: var(--space-4) !important;
        padding: var(--space-4) !important;
        background: rgba(255,255,255,0.9) !important;
        border-radius: var(--border-radius) !important;
        border: 1px solid rgba(0,0,0,0.08) !important;
        width: 100% !important;
        box-sizing: border-box !important;
        box-shadow: 0 2px 4px rgba(0,0,0,0.05) !important;
    }
    
    .category-value .valuebox:last-child {
        margin-bottom: 0;
    }
    
    /* Swipers también debe tener el mismo estilo */
    .category-value .swipers,
    .category-value > .swipers {
        margin-top: 0 !important;
        width: 100% !important;
    }
    
    .category-value .swipers .valuebox {
        margin-bottom: var(--space-4) !important;
    }
    
    /* ProductBox unificado */
    .category-value .productBox,
    .category-box.serviciosBox .productBox,
    .category-box.blogBox .productBox,
    .category-box.productosBox .productBox,
    .serviciosBox .category-value .productBox,
    .blogBox .category-value .productBox,
    .productosBox .category-value .productBox {
        padding: var(--space-3) 0 !important;
        border-bottom: 1px solid rgba(0,0,0,0.05) !important;
        transition: all 0.3s ease !important;
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
        gap: var(--space-3) !important;
    }
    
    .category-value .productBox:last-child {
        border-bottom: none;
    }
    
    .category-value .productBox:hover {
        background: rgba(13, 110, 253, 0.05);
        padding-left: var(--space-2);
        border-radius: var(--border-radius);
    }
    
    .category-value .isProduct {
        display: block;
        text-decoration: none;
        color: inherit;
        width: 100%;
    }
    
    .category-value .isProduct:hover {
        color: #0d6efd;
    }
    
    /* Subtítulos */
    .category-value .subtitle {
        margin-bottom: var(--space-3);
        padding-bottom: var(--space-2);
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }
    
    /* Enlaces "Ver todos" */
    .category-value .flex.items-center.gap-2 {
        padding: var(--space-2) 0;
        color: #0d6efd;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: var(--space-2);
    }
    
    .category-value .flex.items-center.gap-2:hover {
        text-decoration: underline;
    }
    
    /* Iconos de productos - tamaño unificado */
    .category-value .product-icon,
    .category-box.serviciosBox .product-icon,
    .category-box.blogBox .product-icon,
    .category-box.productosBox .product-icon,
    .serviciosBox .category-value .product-icon,
    .blogBox .category-value .product-icon,
    .productosBox .category-value .product-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 2rem !important;
        flex-shrink: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    /* Imágenes de productos - tamaño unificado */
    .category-value figure,
    .category-box.serviciosBox figure,
    .category-box.blogBox figure,
    .category-box.productosBox figure,
    .serviciosBox .category-value figure,
    .blogBox .category-value figure,
    .productosBox .category-value figure {
        margin: 0 !important;
        flex-shrink: 0 !important;
    }
    
    .category-value figure img,
    .category-box.serviciosBox figure img,
    .category-box.blogBox figure img,
    .category-box.productosBox figure img,
    .serviciosBox .category-value figure img,
    .blogBox .category-value figure img,
    .productosBox .category-value figure img {
        width: 50px !important;
        height: 50px !important;
        object-fit: cover !important;
        border-radius: var(--border-radius) !important;
        flex-shrink: 0 !important;
    }
    
    /* ProductText */
    .category-value .productText,
    .category-box.serviciosBox .productText,
    .category-box.blogBox .productText,
    .category-box.productosBox .productText,
    .serviciosBox .category-value .productText,
    .blogBox .category-value .productText,
    .productosBox .category-value .productText {
        flex: 1 !important;
        min-width: 0 !important;
    }
    
    .category-others {
        flex-direction: column;
        width: 100%;
        margin-top: var(--space-8);
        gap: var(--space-4);
        padding: 0;
        box-sizing: border-box;
        pointer-events: auto;
    }
    
    .btn-phone-link,
    .btn-primary-nav {
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
        margin: 0;
        pointer-events: auto;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .btn-phone-link {
        background: rgba(13, 110, 253, 0.1);
        color: #0d6efd;
        border: 1px solid rgba(13, 110, 253, 0.2);
    }
    
    .btn-phone-link:hover,
    .btn-phone-link:active,
    .btn-phone-link:focus {
        background: rgba(13, 110, 253, 0.2);
        color: #0b5ed7;
        border-color: rgba(13, 110, 253, 0.4);
    }
    
    .btn-primary-nav {
        background: #0d6efd;
        color: white;
    }
    
    .btn-primary-nav:hover,
    .btn-primary-nav:active,
    .btn-primary-nav:focus {
        background: #0b5ed7;
        color: white;
    }
    
    #navButtonBurger {
        display: block;
    }
    
    .col2,
    .col3 {
        grid-template-columns: 1fr;
    }
    
    .swiper-slide {
        min-width: 100%;
    }
}

/* Animaciones adicionales */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.category-box:hover .category-value {
    animation: slideDown 0.4s ease-out;
}

/* Smooth transitions */
.header-withings * {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

