        body {
            font-family: 'Hanken Grotesk', sans-serif;
        }

        .glass-ios {
            background: rgba(255, 255, 255, 0.65);
            backdrop-filter: blur(2px);
            -webkit-backdrop-filter: blur(2px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
        }
        .dark .glass-ios {
            background: rgba(0, 0, 0, 0.4);
            border-color: rgba(255, 255, 255, 0.1);
        }
        .glass-panel {
            background: rgba(255, 255, 255, 0.45);
            backdrop-filter: blur(40px);
            -webkit-backdrop-filter: blur(40px);
            border: 1px solid rgba(255, 255, 255, 0.5);
        }
        .glass-panel-dark {
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(40px);
            -webkit-backdrop-filter: blur(40px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

    /* Portfolio */

        .portfolio-item {
            transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .portfolio-item.hidden-filter {
            opacity: 0;
            transform: scale(0.95);
            pointer-events: none;
            position: absolute;
        }

    /* Acordeon FAQ */

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
        }

        .accordion-item.active .accordion-content {
            max-height: 1000px;
            transition: max-height 0.8s cubic-bezier(1, 0, 1, 0);
        }

    /* Legal sections */

        .legal-section {
            border-bottom: 1px solid #E5E5E5;
            padding-top: 64px;
            padding-bottom: 64px;
        }
        .legal-section:last-child {
            border-bottom: none;
        }

/* Cookie Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}
.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}
.cookie-toggle .slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #ccc;
    border-radius: 24px;
    transition: 0.3s;
}
.cookie-toggle .slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: 0.3s;
}
.cookie-toggle input:checked + .slider {
    background-color: #000000;
}
.cookie-toggle input:disabled + .slider {
    opacity: 0.5;
    cursor: not-allowed;
}
.cookie-toggle input:checked + .slider:before {
    transform: translateX(20px);
}

/* Sombra estilo iOS */
.ios-shadow {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
}
/* Efecto hover lift */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.16), 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Accordion chevron rotation */
.accordion-item.active .icon-chevron {
    transform: rotate(180deg);
}
