/* IMPORTADORA CHENG - Support Page Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cheng-primary: #2563eb;
    --cheng-primary-dark: #1d4ed8;
    --cheng-secondary: #7c3aed;
    --cheng-accent: #06b6d4;
    --cheng-success: #10b981;
    --cheng-warning: #f59e0b;
    --cheng-error: #ef4444;
    --cheng-gray-50: #f9fafb;
    --cheng-gray-100: #f3f4f6;
    --cheng-gray-200: #e5e7eb;
    --cheng-gray-300: #d1d5db;
    --cheng-gray-400: #9ca3af;
    --cheng-gray-500: #6b7280;
    --cheng-gray-600: #4b5563;
    --cheng-gray-700: #374151;
    --cheng-gray-800: #1f2937;
    --cheng-gray-900: #111827;
    --cheng-white: #ffffff;
    --cheng-black: #000000;
    --cheng-gradient-primary: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    --cheng-gradient-secondary: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    --cheng-gradient-dark: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    --cheng-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --cheng-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --cheng-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --cheng-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --cheng-shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--cheng-gray-800);
    background-color: var(--cheng-white);
    overflow-x: hidden;
}

.cheng-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Cookies Banner */
.cheng-cookies-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--cheng-gradient-primary);
    color: var(--cheng-white);
    padding: 16px 24px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cheng-cookies-banner.show {
    transform: translateY(0);
}

.cheng-cookies-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cheng-cookies-accept {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--cheng-white);
    padding: 8px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.cheng-cookies-accept:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
}

/* Header & Navigation */
.cheng-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 100;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.cheng-header.cheng-header-scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--cheng-shadow-lg);
}

.cheng-nav {
    padding: 16px 0;
}

.cheng-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.company-logo {
    display: flex;
    align-items: center;

    img {
        margin-right: 10px;
        width: 40px;
    }

    span {
        font-weight: 600;
        font-size: 1.2rem;
    }
}

.cheng-nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.cheng-nav-menu a {
    text-decoration: none;
    color: var(--cheng-gray-700);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.cheng-nav-menu a:hover,
.cheng-nav-menu a.cheng-active {
    color: var(--cheng-primary);
}

.cheng-nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cheng-gradient-primary);
    transition: width 0.3s ease;
}

.cheng-nav-menu a:hover::after,
.cheng-nav-menu a.cheng-active::after {
    width: 100%;
}

.cheng-mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.cheng-mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--cheng-gray-700);
    transition: all 0.3s ease;
}

/* Breadcrumb */
.cheng-breadcrumb {
    background: var(--cheng-gray-50);
    padding: 16px 0;
    margin-top: 92px;
    border-bottom: 1px solid var(--cheng-gray-200);
}

.cheng-breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.cheng-breadcrumb-nav a {
    color: var(--cheng-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.cheng-breadcrumb-nav a:hover {
    color: var(--cheng-primary-dark);
}

.cheng-breadcrumb-separator {
    color: var(--cheng-gray-400);
}

.cheng-breadcrumb-current {
    color: var(--cheng-gray-600);
    font-weight: 500;
}

/* Hero Section */
.cheng-hero-support {
    padding: 80px 0;
    background: var(--cheng-gradient-primary);
    color: var(--cheng-white);
    text-align: center;
    margin-bottom: 80px;
}

.cheng-hero-support-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

.cheng-hero-support-subtitle {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.6;
}

/* Section Headers */
.cheng-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.cheng-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--cheng-gray-900);
    margin-bottom: 16px;
    line-height: 1.2;
}

.cheng-section-subtitle {
    font-size: 1.125rem;
    color: var(--cheng-gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Support Channels */
.cheng-support-channels {
    padding: 80px 0;
    background: var(--cheng-white);
}

.cheng-channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.cheng-channel-card {
    background: var(--cheng-white);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    box-shadow: var(--cheng-shadow);
    border: 1px solid var(--cheng-gray-100);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cheng-channel-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--cheng-shadow-xl);
}

.cheng-channel-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--cheng-gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cheng-channel-card:hover .cheng-channel-icon {
    background: var(--cheng-gradient-primary);
    transform: scale(1.1);
}

.cheng-channel-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--cheng-gray-900);
    margin-bottom: 16px;
}

.cheng-channel-card p {
    color: var(--cheng-gray-600);
    margin-bottom: 20px;
    line-height: 1.6;
}

.cheng-channel-features {
    list-style: none;
    margin-bottom: 24px;
}

.cheng-channel-features li {
    color: var(--cheng-gray-600);
    padding: 4px 0;
    position: relative;
    padding-left: 20px;
}

.cheng-channel-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--cheng-success);
    font-weight: bold;
}

.cheng-channel-btn {
    display: inline-block;
    background: var(--cheng-gradient-primary);
    color: var(--cheng-white);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cheng-channel-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--cheng-shadow-lg);
}

/* FAQ Section */
.cheng-faq-section {
    padding: 80px 0;
    background: var(--cheng-gray-50);
}

.cheng-faq-grid {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 40px;
}

.cheng-faq-item {
    background: var(--cheng-white);
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: var(--cheng-shadow-sm);
    border: 1px solid var(--cheng-gray-100);
    overflow: hidden;
    transition: all 0.3s ease;
}

.cheng-faq-item:hover {
    box-shadow: var(--cheng-shadow);
}

.cheng-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cheng-faq-question:hover {
    background: var(--cheng-gray-50);
}

.cheng-faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--cheng-gray-900);
    margin: 0;
}

.cheng-faq-toggle {
    font-size: 1.5rem;
    color: var(--cheng-primary);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.cheng-faq-item.active .cheng-faq-toggle {
    transform: rotate(45deg);
}

.cheng-faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cheng-faq-item.active .cheng-faq-answer {
    padding: 0 24px 24px;
    max-height: 200px;
}

.cheng-faq-answer p {
    color: var(--cheng-gray-600);
    line-height: 1.6;
    margin: 0;
}

/* Troubleshooting */
.cheng-troubleshooting {
    padding: 80px 0;
    background: var(--cheng-white);
}

.cheng-troubleshooting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.cheng-troubleshooting-card {
    background: var(--cheng-white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--cheng-shadow);
    border: 1px solid var(--cheng-gray-100);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cheng-troubleshooting-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--cheng-shadow-lg);
}

.cheng-troubleshooting-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--cheng-gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cheng-troubleshooting-card:hover .cheng-troubleshooting-icon {
    background: var(--cheng-gradient-primary);
    transform: scale(1.1);
}

.cheng-troubleshooting-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--cheng-gray-900);
    margin-bottom: 12px;
    text-align: center;
}

.cheng-troubleshooting-card p {
    color: var(--cheng-gray-600);
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: center;
}

.cheng-troubleshooting-steps {
    list-style: none;
    counter-reset: step-counter;
}

.cheng-troubleshooting-steps li {
    color: var(--cheng-gray-600);
    padding: 8px 0;
    position: relative;
    padding-left: 40px;
    counter-increment: step-counter;
}

.cheng-troubleshooting-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 8px;
    width: 24px;
    height: 24px;
    background: var(--cheng-primary);
    color: var(--cheng-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Support Resources */
.cheng-support-resources {
    padding: 80px 0;
    background: var(--cheng-gray-50);
}

.cheng-resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.cheng-resource-card {
    background: var(--cheng-white);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    box-shadow: var(--cheng-shadow);
    border: 1px solid var(--cheng-gray-100);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cheng-resource-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--cheng-shadow-lg);
}

.cheng-resource-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--cheng-gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cheng-resource-card:hover .cheng-resource-icon {
    background: var(--cheng-gradient-primary);
    transform: scale(1.1);
}

.cheng-resource-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--cheng-gray-900);
    margin-bottom: 16px;
}

.cheng-resource-card p {
    color: var(--cheng-gray-600);
    margin-bottom: 24px;
    line-height: 1.6;
}

.cheng-resource-link {
    display: inline-block;
    background: var(--cheng-gradient-primary);
    color: var(--cheng-white);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cheng-resource-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--cheng-shadow-lg);
}

/* Support Contact */
.cheng-support-contact {
    padding: 80px 0;
    background: var(--cheng-white);
}

.cheng-support-contact-content {
    background: var(--cheng-gray-50);
    border-radius: 16px;
    padding: 48px;
    text-align: center;
    margin-top: 40px;
}

.cheng-support-contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--cheng-gray-900);
    margin-bottom: 16px;
}

.cheng-support-contact-info p {
    color: var(--cheng-gray-600);
    margin-bottom: 32px;
    line-height: 1.6;
}

.cheng-support-contact-methods {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.cheng-support-contact-method {
    color: var(--cheng-gray-600);
    font-size: 1rem;
}

.cheng-support-contact-action {
    margin-top: 32px;
}

.cheng-support-contact-btn {
    display: inline-block;
    background: var(--cheng-gradient-primary);
    color: var(--cheng-white);
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.cheng-support-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--cheng-shadow-lg);
}

/* Footer */
.cheng-footer {
    background: var(--cheng-gray-900);
    color: var(--cheng-white);
    padding: 80px 0 32px;
}

.cheng-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.cheng-footer-section h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--cheng-white);
}

.cheng-footer-section p {
    color: var(--cheng-gray-400);
    margin-bottom: 12px;
}

.cheng-footer-section ul {
    list-style: none;
}

.cheng-footer-section ul li {
    margin-bottom: 12px;
}

.cheng-footer-section ul li a {
    color: var(--cheng-gray-400);
    text-decoration: none;
    transition: color 0.3s ease;
}

.cheng-footer-section ul li a:hover {
    color: var(--cheng-primary);
}

.cheng-footer-bottom {
    border-top: 1px solid var(--cheng-gray-800);
    padding-top: 32px;
    text-align: center;
    color: var(--cheng-gray-500);
}

/* Responsive Design */
@media (max-width: 768px) {
    .cheng-nav-menu {
        display: none;
    }
    
    .cheng-mobile-menu-toggle {
        display: flex;
    }
    
    .cheng-hero-support-title {
        font-size: 2.5rem;
    }
    
    .cheng-section-title {
        font-size: 2rem;
    }
    
    .cheng-channels-grid,
    .cheng-troubleshooting-grid,
    .cheng-resources-grid {
        grid-template-columns: 1fr;
    }
    
    .cheng-support-contact-methods {
        flex-direction: column;
        gap: 16px;
    }
    
    .cheng-cookies-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .cheng-footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .cheng-container {
        padding: 0 16px;
    }
    
    .cheng-hero-support-title {
        font-size: 2rem;
    }
    
    .cheng-section-title {
        font-size: 1.8rem;
    }
    
    .cheng-channel-card,
    .cheng-troubleshooting-card,
    .cheng-resource-card {
        padding: 24px 20px;
    }
    
    .cheng-support-contact-content {
        padding: 32px 24px;
    }
} 