/* Import Base Styles */
@import url('base.css');

/* ============================================
   PARCERIAS PAGE - Premium Styles (Cleaner Version)
   ============================================ */

/* Hero Partnerships Section */
.hero-partnerships {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    background:
        radial-gradient(ellipse at top, rgba(255, 51, 51, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(139, 92, 246, 0.15) 0%, transparent 40%),
        var(--dark-bg);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-partnerships::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(90deg, transparent 0%, rgba(255, 51, 51, 0.05) 50%, transparent 100%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {

    0%,
    100% {
        transform: translateX(-100%);
    }

    50% {
        transform: translateX(100%);
    }
}

.hero-partnerships .hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-partnerships .hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 51, 51, 0.1);
    border: 1px solid rgba(255, 51, 51, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-partnerships h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-partnerships .highlight {
    color: var(--primary-red);
    position: relative;
    display: inline-block;
}

.hero-partnerships p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* How it Works Section */
.how-it-works {
    padding: var(--spacing-xl) 2rem;
    background: var(--darker-bg);
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
}

.steps-timeline {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    transition: all var(--transition-normal);
}

.step-item:hover {
    border-color: var(--primary-red);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(255, 51, 51, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red), #FF6B6B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 51, 51, 0.3);
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-content>p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.step-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.step-features li {
    padding: 0.5rem 1rem;
    background: rgba(255, 51, 51, 0.1);
    border: 1px solid rgba(255, 51, 51, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.step-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    width: 100%;
    position: relative;
}

.step-divider::after {
    content: 'ĵ';
    position: absolute;
    right: 50%;
    top: 50%;
    transform: translate(50%, -50%);
    background: var(--darker-bg);
    padding: 0 1rem;
    color: var(--primary-red);
    font-size: 1.5rem;
}

/* Canal PriMe Section - Cleaner Design */
.prime-section {
    padding: var(--spacing-xl) 2rem;
    background: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.prime-section::before {
    content: '⭐';
    position: absolute;
    top: 20px;
    right: 50%;
    transform: translateX(50%);
    font-size: 3rem;
    opacity: 1;
}

.prime-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.prime-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: #FFD700;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 2rem;
}

.prime-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.prime-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.prime-stat {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #FFD700;
}

.stat-label {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

/* Workshop Section */
.workshop-section {
    padding: var(--spacing-xl) 2rem;
    background: linear-gradient(135deg, #2d0a1a 0%, #0a0a0a 100%);
    position: relative;
}

.workshop-container {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 2px solid var(--primary-red);
    border-radius: var(--radius-lg);
    padding: 3rem;
}

.workshop-content h2 {
    margin-bottom: 1rem;
}

.workshop-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.workshop-topics {
    margin-bottom: 2rem;
}

.workshop-topics h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.topics-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.topics-list li {
    padding: 1rem;
    background: rgba(255, 51, 51, 0.05);
    border-left: 3px solid var(--primary-red);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
}

.workshop-cta {
    text-align: center;
}

.workshop-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Benefits Section */
.benefits-section {
    padding: var(--spacing-xl) 2rem;
    background: var(--darker-bg);
}

.benefits-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-normal);
}

.benefit-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 51, 51, 0.1);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9375rem;
}

/* CTA Partnerships Section */
.cta-partnerships {
    padding: var(--spacing-xl) 2rem;
    text-align: center;
    background:
        radial-gradient(ellipse at center, rgba(255, 51, 51, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse at bottom left, rgba(139, 92, 246, 0.1) 0%, transparent 40%),
        var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.cta-partnerships .cta-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.cta-partnerships h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.cta-partnerships .highlight {
    color: var(--primary-red);
}

.cta-partnerships p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-trust {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.cta-trust span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Active nav link */
.nav-menu a.active {
    color: var(--primary-red);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .steps-timeline {
        flex-direction: column;
    }

    .step-divider::after {
        content: '↓';
    }
}

@media (max-width: 768px) {
    .hero-partnerships {
        padding: 6rem 1.5rem 3rem;
        min-height: 60vh;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin: 0 auto;
    }

    .step-features {
        justify-content: center;
    }

    .prime-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .topics-list {
        grid-template-columns: 1fr;
    }

    .workshop-container {
        padding: 2rem 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons button {
        width: 100%;
    }

    .cta-trust {
        flex-direction: column;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .stat-number {
        font-size: 2.5rem;
    }

    .step-item:hover {
        transform: translateY(-3px) translateX(0);
    }
}