/* ===== PÁGINA DE COLABORACIONES ===== */

/* Hero Section */
.collab-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
}

.collab-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #a386b1 0%, #90d4bd 50%, #a386b1 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease-in-out infinite;
    z-index: 1;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.collab-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

.collab-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: 'Quicksand', sans-serif;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.collab-hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 0;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    line-height: 1.6;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Container General */
.collab-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Sección de Introducción */
.collab-intro {
    padding: 6rem 0;
    background: #f8f9fa;
}

.intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-family: 'Quicksand', sans-serif;
}

.intro-text {
    font-size: 1.2rem;
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 4rem;
}

.intro-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #a386b1;
    font-family: 'Quicksand', sans-serif;
    margin-bottom: 0.5rem;
}

.stat-text {
    color: #6c757d;
    font-weight: 500;
}

/* Título de Sección */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 4rem;
    font-family: 'Quicksand', sans-serif;
}

/* Tipos de Colaboración */
.collab-types {
    padding: 6rem 0;
    background: white;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.type-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(163, 134, 177, 0.1);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #a386b1, #90d4bd);
    transition: left 0.4s ease;
}

.type-card:hover::before {
    left: 0;
}

.type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.type-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #a386b1, #90d4bd);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    transition: transform 0.3s ease;
}

.type-card:hover .type-icon {
    transform: scale(1.1);
}

.type-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-family: 'Quicksand', sans-serif;
}

.type-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.type-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.benefit {
    background: rgba(163, 134, 177, 0.1);
    color: #a386b1;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Pasos para Colaborar */
.collab-steps {
    padding: 6rem 0;
    background: #f8f9fa;
}

.steps-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #a386b1, #90d4bd);
    border-radius: 2px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #a386b1, #90d4bd);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    font-family: 'Quicksand', sans-serif;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(163, 134, 177, 0.3);
}

.step-content {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.step-content:hover {
    border-left-color: #a386b1;
    transform: translateX(5px);
}

.step-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-family: 'Quicksand', sans-serif;
}

.step-description {
    color: #6c757d;
    line-height: 1.6;
}

/* Testimonios */
.collab-testimonials {
    padding: 6rem 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 4px solid #a386b1;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #a386b1;
    font-family: serif;
    opacity: 0.3;
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-text {
    color: #6c757d;
    line-height: 1.7;
    font-style: italic;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.25rem;
    font-family: 'Quicksand', sans-serif;
}

.author-company {
    color: #a386b1;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Call to Action */
.collab-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #a386b1 0%, #90d4bd 50%, #a386b1 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease-in-out infinite;
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Quicksand', sans-serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.95);
    color: #2c3e50;
    border: none;
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Quicksand', sans-serif;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        0 4px 16px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.3),
        0 8px 20px rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 1);
    color: #a386b1;
}

.cta-button svg {
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .collab-container {
        padding: 0 1.5rem;
    }
    
    .types-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .collab-hero {
        height: 50vh;
        min-height: 400px;
    }
    
    .collab-hero-title {
        font-size: 2.5rem;
    }
    
    .collab-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .collab-intro,
    .collab-types,
    .collab-steps,
    .collab-testimonials,
    .collab-cta {
        padding: 4rem 0;
    }
    
    .intro-title,
    .section-title,
    .cta-title {
        font-size: 2rem;
    }
    
    .intro-text {
        font-size: 1.1rem;
    }
    
    .intro-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .types-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .type-card {
        padding: 2rem 1.5rem;
    }
    
    .type-icon {
        width: 60px;
        height: 60px;
    }
    
    .steps-timeline::before {
        left: 20px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .step-item {
        gap: 1.5rem;
    }
    
    .step-content {
        padding: 1.5rem;
    }
    
    .testimonials-grid {
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 16px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .collab-container {
        padding: 0 1rem;
    }
    
    .collab-hero {
        height: 45vh;
        min-height: 350px;
    }
    
    .collab-hero-content {
        padding: 1rem;
    }
    
    .collab-hero-title {
        font-size: 2rem;
    }
    
    .collab-hero-subtitle {
        font-size: 1rem;
    }
    
    .collab-intro,
    .collab-types,
    .collab-steps,
    .collab-testimonials,
    .collab-cta {
        padding: 3rem 0;
    }
    
    .intro-title,
    .section-title,
    .cta-title {
        font-size: 1.8rem;
    }
    
    .type-card {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .type-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1.5rem;
    }
    
    .type-title {
        font-size: 1.3rem;
    }
    
    .type-benefits {
        gap: 0.25rem;
    }
    
    .benefit {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .steps-timeline::before {
        display: none;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step-number {
        align-self: center;
    }
    
    .testimonial-card {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 14px 24px;
        font-size: 0.95rem;
        gap: 8px;
    }
}

/* Animaciones adicionales */
@media (prefers-reduced-motion: no-preference) {
    .type-card,
    .step-content,
    .testimonial-card {
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .benefit {
        transition: all 0.2s ease;
    }
    
    .benefit:hover {
        background: rgba(163, 134, 177, 0.2);
        transform: translateY(-1px);
    }
}

@media (max-width: 360px) {
    .news-navbar-logo {
        display: none;
    }
}