/* IMPORTADORA CHENG - Wholesale Services 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-wholesale {
    padding: 80px 0;
    background: var(--cheng-gradient-primary);
    color: var(--cheng-white);
    text-align: center;
    margin-bottom: 80px;
}

.cheng-hero-wholesale-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

.cheng-hero-wholesale-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;
}

/* Wholesale Policy */
.cheng-wholesale-policy {
    padding: 80px 0;
    background: var(--cheng-white);
}

.cheng-policy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.cheng-policy-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-policy-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--cheng-shadow-xl);
}

.cheng-policy-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-policy-card:hover .cheng-policy-icon {
    background: var(--cheng-gradient-primary);
    transform: scale(1.1);
}

.cheng-policy-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--cheng-gray-900);
    margin-bottom: 16px;
    text-align: center;
}

.cheng-policy-card p {
    color: var(--cheng-gray-600);
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: center;
}

.cheng-policy-features {
    list-style: none;
    padding: 0;
}

.cheng-policy-features li {
    color: var(--cheng-gray-600);
    padding: 4px 0;
    position: relative;
    padding-left: 20px;
}

.cheng-policy-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--cheng-success);
    font-weight: bold;
}

/* Pricing Benefits */
.cheng-pricing-benefits {
    padding: 80px 0;
    background: var(--cheng-gray-50);
}

.cheng-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.cheng-benefit-item {
    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-benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--cheng-shadow-lg);
}

.cheng-benefit-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--cheng-primary);
    margin-bottom: 24px;
    line-height: 1;
}

.cheng-benefit-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--cheng-gray-900);
    margin-bottom: 16px;
}

.cheng-benefit-item p {
    color: var(--cheng-gray-600);
    line-height: 1.6;
}

/* Cooperation Process */
.cheng-cooperation-process {
    padding: 80px 0;
    background: var(--cheng-white);
}

.cheng-cooperation-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.cheng-cooperation-step {
    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);
    position: relative;
}

.cheng-cooperation-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--cheng-shadow-lg);
}

.cheng-step-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-cooperation-step:hover .cheng-step-icon {
    background: var(--cheng-gradient-primary);
    transform: scale(1.1);
}

.cheng-step-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--cheng-gray-900);
    margin-bottom: 12px;
    text-align: center;
}

.cheng-step-content p {
    color: var(--cheng-gray-600);
    line-height: 1.6;
    text-align: center;
}

/* Customer Rights */
.cheng-customer-rights {
    padding: 80px 0;
    background: var(--cheng-gray-50);
}

.cheng-rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.cheng-right-item {
    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-right-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--cheng-shadow-lg);
}

.cheng-right-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-right-item:hover .cheng-right-icon {
    background: var(--cheng-gradient-primary);
    transform: scale(1.1);
}

.cheng-right-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--cheng-gray-900);
    margin-bottom: 16px;
}

.cheng-right-item p {
    color: var(--cheng-gray-600);
    line-height: 1.6;
}

/* 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-wholesale-title {
        font-size: 2.5rem;
    }
    
    .cheng-section-title {
        font-size: 2rem;
    }
    
    .cheng-policy-grid,
    .cheng-benefits-grid,
    .cheng-cooperation-steps,
    .cheng-rights-grid {
        grid-template-columns: 1fr;
    }
    
    .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-wholesale-title {
        font-size: 2rem;
    }
    
    .cheng-section-title {
        font-size: 1.8rem;
    }
    
    .cheng-policy-card,
    .cheng-benefit-item,
    .cheng-cooperation-step,
    .cheng-right-item {
        padding: 24px 20px;
    }
} 