* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --disenoskessell-primary: #6366f1;
    --disenoskessell-primary-dark: #4f46e5;
    --disenoskessell-primary-light: #818cf8;
    --disenoskessell-secondary: #ec4899;
    --disenoskessell-accent: #f59e0b;
    --disenoskessell-dark: #1e293b;
    --disenoskessell-dark-light: #334155;
    --disenoskessell-gray: #64748b;
    --disenoskessell-gray-light: #94a3b8;
    --disenoskessell-bg: #f8fafc;
    --disenoskessell-white: #ffffff;
    --disenoskessell-gradient-1: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    --disenoskessell-gradient-2: linear-gradient(135deg, #f59e0b 0%, #ec4899 50%, #6366f1 100%);
    --disenoskessell-gradient-3: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    --disenoskessell-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --disenoskessell-shadow-md: 0 10px 30px rgba(0, 0, 0, 0.1);
    --disenoskessell-shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --disenoskessell-shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.2);
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--disenoskessell-dark);
    background-color: var(--disenoskessell-bg);
    overflow-x: hidden;
}

.disenoskessell-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.disenoskessell-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--disenoskessell-shadow-sm);
    z-index: 1000;
    padding: 20px 0;
}

.disenoskessell-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.disenoskessell-company-name {
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 700;
    background: var(--disenoskessell-gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.disenoskessell-nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.disenoskessell-nav-list a {
    text-decoration: none;
    color: var(--disenoskessell-dark);
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.disenoskessell-nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--disenoskessell-gradient-1);
    transition: width 0.3s ease;
}

.disenoskessell-nav-list a:hover {
    color: var(--disenoskessell-primary);
}

.disenoskessell-nav-list a:hover::after {
    width: 100%;
}

.disenoskessell-main {
    margin-top: 100px;
}

.disenoskessell-breadcrumb {
    background: var(--disenoskessell-white);
    padding: 20px 0;
    border-bottom: 1px solid var(--disenoskessell-gray-light);
}

.disenoskessell-breadcrumb-content {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.disenoskessell-breadcrumb-link {
    color: var(--disenoskessell-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.disenoskessell-breadcrumb-link:hover {
    color: var(--disenoskessell-primary);
}

.disenoskessell-breadcrumb-content .material-icons {
    font-size: 18px;
    color: var(--disenoskessell-gray-light);
}

.disenoskessell-breadcrumb-current {
    color: var(--disenoskessell-dark);
    font-weight: 600;
    font-size: 14px;
}

.disenoskessell-catalog-hero {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--disenoskessell-gradient-1);
    padding: 80px 0 60px;
}

.disenoskessell-catalog-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.disenoskessell-catalog-hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(60px);
}

.disenoskessell-catalog-shape-1 {
    width: 500px;
    height: 500px;
    background: var(--disenoskessell-white);
    top: -150px;
    right: -150px;
    animation: float 20s ease-in-out infinite;
}

.disenoskessell-catalog-shape-2 {
    width: 400px;
    height: 400px;
    background: var(--disenoskessell-accent);
    bottom: -100px;
    left: -100px;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.disenoskessell-catalog-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--disenoskessell-white);
}

.disenoskessell-catalog-hero-title {
    font-family: 'Roboto', sans-serif;
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 16px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.disenoskessell-catalog-hero-subtitle {
    font-size: 20px;
    line-height: 1.8;
    opacity: 0.95;
}

.disenoskessell-catalog-categories {
    padding: 120px 0;
    background: var(--disenoskessell-white);
}

.disenoskessell-catalog-category {
    margin-bottom: 80px;
    background: var(--disenoskessell-bg);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: var(--disenoskessell-shadow-md);
    transition: all 0.3s ease;
}

.disenoskessell-catalog-category:last-child {
    margin-bottom: 0;
}

.disenoskessell-catalog-category:hover {
    box-shadow: var(--disenoskessell-shadow-lg);
    transform: translateY(-5px);
}

.disenoskessell-catalog-category-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--disenoskessell-primary-light);
}

.disenoskessell-catalog-category-icon {
    width: 70px;
    height: 70px;
    background: var(--disenoskessell-gradient-1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--disenoskessell-shadow-sm);
}

.disenoskessell-catalog-category-icon .material-icons {
    font-size: 36px;
    color: var(--disenoskessell-white);
}

.disenoskessell-catalog-category-title {
    font-family: 'Roboto', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--disenoskessell-dark);
}

.disenoskessell-catalog-category-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--disenoskessell-gray);
    margin-bottom: 30px;
}

.disenoskessell-catalog-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.disenoskessell-catalog-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--disenoskessell-white);
    border-radius: 12px;
    box-shadow: var(--disenoskessell-shadow-sm);
    transition: all 0.3s ease;
}

.disenoskessell-catalog-item:hover {
    transform: translateX(5px);
    box-shadow: var(--disenoskessell-shadow-md);
}

.disenoskessell-catalog-item .material-icons {
    font-size: 24px;
    color: var(--disenoskessell-primary);
    flex-shrink: 0;
}

.disenoskessell-catalog-item span {
    font-size: 16px;
    color: var(--disenoskessell-dark);
    font-weight: 500;
}

.disenoskessell-catalog-cta {
    padding: 120px 0;
    background: var(--disenoskessell-gradient-2);
    position: relative;
    overflow: hidden;
}

.disenoskessell-catalog-cta-background-shape {
    position: absolute;
    width: 800px;
    height: 800px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -400px;
    right: -400px;
    filter: blur(80px);
}

.disenoskessell-catalog-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.disenoskessell-catalog-cta-title {
    font-family: 'Roboto', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--disenoskessell-white);
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.disenoskessell-catalog-cta-description {
    font-size: 20px;
    line-height: 1.8;
    color: var(--disenoskessell-white);
    margin-bottom: 40px;
    opacity: 0.95;
}

.disenoskessell-catalog-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.disenoskessell-btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.disenoskessell-btn-primary {
    background: var(--disenoskessell-white);
    color: var(--disenoskessell-primary);
    box-shadow: var(--disenoskessell-shadow-md);
}

.disenoskessell-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--disenoskessell-shadow-lg);
}

.disenoskessell-btn-outline {
    background: transparent;
    color: var(--disenoskessell-white);
    border-color: var(--disenoskessell-white);
}

.disenoskessell-btn-outline:hover {
    background: var(--disenoskessell-white);
    color: var(--disenoskessell-primary);
}

.disenoskessell-btn-large {
    padding: 20px 40px;
    font-size: 18px;
}

.disenoskessell-footer {
    background: var(--disenoskessell-dark);
    color: var(--disenoskessell-white);
    padding: 80px 0 40px;
}

.disenoskessell-footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.disenoskessell-footer-brand {
    max-width: 300px;
}

.disenoskessell-footer-company-name {
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--disenoskessell-white);
}

.disenoskessell-footer-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--disenoskessell-gray-light);
    margin-top: 20px;
}

.disenoskessell-footer-title {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--disenoskessell-white);
}

.disenoskessell-footer-list {
    list-style: none;
}

.disenoskessell-footer-list li {
    margin-bottom: 12px;
}

.disenoskessell-footer-list a {
    color: var(--disenoskessell-gray-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.disenoskessell-footer-list a:hover {
    color: var(--disenoskessell-white);
}

.disenoskessell-footer-contact a {
    color: var(--disenoskessell-gray-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.disenoskessell-footer-contact a:hover {
    color: var(--disenoskessell-white);
}

.disenoskessell-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    text-align: center;
}

.disenoskessell-footer-copyright {
    font-size: 14px;
    color: var(--disenoskessell-gray-light);
}

.disenoskessell-privacy-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--disenoskessell-dark);
    color: var(--disenoskessell-white);
    padding: 20px 40px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.disenoskessell-privacy-banner.show {
    transform: translateY(0);
}

.disenoskessell-privacy-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.disenoskessell-privacy-banner-text {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    min-width: 300px;
}

.disenoskessell-privacy-banner-text .material-icons {
    font-size: 24px;
    color: var(--disenoskessell-primary-light);
    flex-shrink: 0;
}

.disenoskessell-privacy-banner-text p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    color: var(--disenoskessell-gray-light);
}

.disenoskessell-privacy-banner-text a {
    color: var(--disenoskessell-primary-light);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.disenoskessell-privacy-banner-text a:hover {
    color: var(--disenoskessell-white);
}

.disenoskessell-privacy-banner-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-shrink: 0;
}

.disenoskessell-privacy-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.disenoskessell-privacy-btn-accept {
    background: var(--disenoskessell-gradient-1);
    color: var(--disenoskessell-white);
    box-shadow: var(--disenoskessell-shadow-sm);
}

.disenoskessell-privacy-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: var(--disenoskessell-shadow-md);
}

.disenoskessell-privacy-btn-link {
    background: transparent;
    color: var(--disenoskessell-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.disenoskessell-privacy-btn-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--disenoskessell-white);
}

@media (max-width: 1024px) {
    .disenoskessell-catalog-items {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .disenoskessell-container {
        padding: 0 20px;
    }

    .disenoskessell-header-container {
        padding: 0 20px;
        flex-direction: column;
        gap: 20px;
    }

    .disenoskessell-nav-list {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .disenoskessell-catalog-hero {
        padding: 60px 0 40px;
    }

    .disenoskessell-catalog-hero-title {
        font-size: 32px;
    }

    .disenoskessell-catalog-hero-subtitle {
        font-size: 18px;
    }

    .disenoskessell-catalog-category {
        padding: 40px 30px;
    }

    .disenoskessell-catalog-category-title {
        font-size: 28px;
    }

    .disenoskessell-catalog-cta-title {
        font-size: 36px;
    }

    .disenoskessell-footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .disenoskessell-privacy-banner {
        padding: 16px 20px;
    }

    .disenoskessell-privacy-banner-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .disenoskessell-privacy-banner-text {
        min-width: auto;
        width: 100%;
    }

    .disenoskessell-privacy-banner-buttons {
        width: 100%;
        flex-direction: column;
    }

    .disenoskessell-privacy-btn {
        width: 100%;
    }
}

