* {
    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,
.disenoskessell-nav-list a.active {
    color: var(--disenoskessell-primary);
}

.disenoskessell-nav-list a:hover::after,
.disenoskessell-nav-list a.active::after {
    width: 100%;
}

.disenoskessell-main {
    margin-top: 100px;
}

.disenoskessell-contact-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--disenoskessell-gradient-1);
    padding: 120px 0 80px;
}

.disenoskessell-contact-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.disenoskessell-contact-hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(60px);
}

.disenoskessell-contact-shape-1 {
    width: 500px;
    height: 500px;
    background: var(--disenoskessell-white);
    top: -150px;
    right: -150px;
    animation: float 20s ease-in-out infinite;
}

.disenoskessell-contact-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-contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--disenoskessell-white);
}

.disenoskessell-contact-hero-title {
    font-family: 'Roboto', sans-serif;
    font-size: 64px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.disenoskessell-contact-hero-subtitle {
    font-size: 20px;
    line-height: 1.8;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
}

.disenoskessell-contact-info {
    padding: 120px 0;
    background: var(--disenoskessell-white);
}

.disenoskessell-contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.disenoskessell-contact-info-card {
    background: var(--disenoskessell-bg);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--disenoskessell-shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.disenoskessell-contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--disenoskessell-shadow-xl);
    border-color: var(--disenoskessell-primary-light);
}

.disenoskessell-contact-info-icon {
    width: 80px;
    height: 80px;
    background: var(--disenoskessell-gradient-1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: var(--disenoskessell-shadow-sm);
}

.disenoskessell-contact-info-icon .material-icons {
    font-size: 40px;
    color: var(--disenoskessell-white);
}

.disenoskessell-contact-info-title {
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--disenoskessell-dark);
    margin-bottom: 20px;
}

.disenoskessell-contact-info-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--disenoskessell-gray);
    margin-bottom: 8px;
}

.disenoskessell-contact-info-text a {
    color: var(--disenoskessell-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.disenoskessell-contact-info-text a:hover {
    color: var(--disenoskessell-primary-dark);
    text-decoration: underline;
}

.disenoskessell-contact-info-note {
    font-size: 14px;
    color: var(--disenoskessell-gray-light);
    font-style: italic;
    margin-top: 12px;
}

.disenoskessell-contact-form-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--disenoskessell-bg) 0%, var(--disenoskessell-white) 100%);
}

.disenoskessell-contact-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.disenoskessell-contact-form-header {
    text-align: center;
    margin-bottom: 60px;
}

.disenoskessell-section-title {
    font-family: 'Roboto', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--disenoskessell-dark);
    margin-bottom: 16px;
}

.disenoskessell-contact-form-subtitle {
    font-size: 18px;
    line-height: 1.8;
    color: var(--disenoskessell-gray);
}

.disenoskessell-contact-form {
    background: var(--disenoskessell-white);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: var(--disenoskessell-shadow-lg);
}

.disenoskessell-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.disenoskessell-form-group {
    display: flex;
    flex-direction: column;
}

.disenoskessell-form-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--disenoskessell-dark);
    margin-bottom: 8px;
}

.disenoskessell-form-input,
.disenoskessell-form-textarea {
    padding: 16px 20px;
    border: 2px solid var(--disenoskessell-gray-light);
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    color: var(--disenoskessell-dark);
    background: var(--disenoskessell-white);
    transition: all 0.3s ease;
    width: 100%;
}

.disenoskessell-form-input:focus,
.disenoskessell-form-textarea:focus {
    outline: none;
    border-color: var(--disenoskessell-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.disenoskessell-form-textarea {
    resize: vertical;
    min-height: 150px;
}

.disenoskessell-form-submit {
    width: 100%;
    padding: 18px 40px;
    background: var(--disenoskessell-gradient-1);
    color: var(--disenoskessell-white);
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--disenoskessell-shadow-md);
    margin-top: 8px;
}

.disenoskessell-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--disenoskessell-shadow-lg);
}

.disenoskessell-form-submit:active {
    transform: translateY(0);
}

.disenoskessell-contact-map {
    padding: 120px 0;
    background: var(--disenoskessell-white);
}

.disenoskessell-map-header {
    text-align: center;
    margin-bottom: 60px;
}

.disenoskessell-section-title-center {
    font-family: 'Roboto', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--disenoskessell-dark);
    margin-bottom: 16px;
}

.disenoskessell-section-subtitle {
    font-size: 20px;
    color: var(--disenoskessell-gray);
}

.disenoskessell-map-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--disenoskessell-shadow-lg);
    margin-bottom: 30px;
}

.disenoskessell-map-image {
    width: 100%;
    height: auto;
    display: block;
}

.disenoskessell-map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.disenoskessell-map-marker {
    width: 60px;
    height: 60px;
    background: var(--disenoskessell-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--disenoskessell-shadow-xl);
    animation: pulse 2s ease-in-out infinite;
}

.disenoskessell-map-marker .material-icons {
    font-size: 32px;
    color: var(--disenoskessell-primary);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.disenoskessell-map-info {
    text-align: center;
}

.disenoskessell-map-address {
    font-size: 18px;
    color: var(--disenoskessell-gray);
    font-weight: 500;
}

.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-contact-info-grid {
        grid-template-columns: 1fr;
    }

    .disenoskessell-form-row {
        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-contact-hero {
        padding: 100px 0 60px;
    }

    .disenoskessell-contact-hero-title {
        font-size: 36px;
    }

    .disenoskessell-contact-hero-subtitle {
        font-size: 18px;
    }

    .disenoskessell-section-title,
    .disenoskessell-section-title-center {
        font-size: 36px;
    }

    .disenoskessell-contact-form {
        padding: 40px 30px;
    }

    .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%;
    }
}

