/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
}

/* Imagen fija del slider */
.fixed-slider-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    pointer-events: none;
}

.fixed-slider-image img {
    width: 100%;
    height: 80%;
    object-fit: contain;
    object-position: right;
    margin-top: 60px;
    margin-right: 60px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.1);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide-content {
    z-index: 15;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 8%;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}

.slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.slide-title {
    text-align: left;
}

.colaboraciones-title {
    font-family: 'Druk Wide', sans-serif;
    font-weight: 900;
    font-size: 85px;
    color: #FFFFFF;
    background-color: #D40032;
    padding: 0;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    line-height: 1;
    display: inline-block;
}

.hero-subtitle-link {
    text-decoration: none;
    display: inline-block;
}

.hero-subtitle-link:hover .hero-subtitle {
    opacity: 0.8;
}

.hero-subtitle {
    font-family: 'Druk Text', sans-serif;
    font-weight: 900;
    font-size: 64px;
    color: #FFFFFF;
    margin: 0;
    text-transform: uppercase;
    line-height: 1.2;
    transition: opacity 0.3s ease;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 20;
    padding: 20px;
    transition: opacity 0.3s ease;
}

.slider-arrow:hover {
    opacity: 0.7;
}

.slider-arrow img {
    width: 40px;
    height: auto;
}

.slider-arrow-left {
    left: 20px;
}

.slider-arrow-right {
    right: 20px;
}

/* Pagination Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 20;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #FFFFFF;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #D40032;
}

/* ===== COLLABORATIONS SECTION ===== */
.column {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    margin: 0;
    gap: 0;
    min-height: 100vh;
    position: relative;
    background: none;
}

.collaborations-section {
    padding: 80px 5%;
    background: #FFFFFF;
}

.section-title {
    font-family: 'Druk Wide', sans-serif;
    font-weight: 900;
    font-size: 85px;
    color: #000000;
    margin-bottom: 64px;
    text-transform: uppercase;
    line-height: 1;
}

.section-title .druk-text {
    font-family: 'Druk Text', 'Arial Narrow', 'Arial', sans-serif !important;
    font-weight: 700 !important;
    font-stretch: condensed !important;
    letter-spacing: -0.02em !important;
}

.section-title .druk-wide {
    font-family: 'Druk Wide', 'Arial Black', 'Arial', sans-serif !important;
    font-weight: 700 !important;
    font-stretch: expanded !important;
    letter-spacing: 0.05em !important;
}

.collaborations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto 60px auto;
}

.collaboration-card {
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    margin-bottom: 40px;
    height: 100%;
}

.collaboration-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    transition: transform 0.3s ease;
}

.collaboration-card-link:hover {
    transform: translateY(-8px);
}

.card-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center;
}

.card-content {
    background: #000000;
    padding: 15px 20px;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.card-date {
    background: #D40032;
    padding: 8px 15px;
    margin: 0;
    width: fit-content;
}

.card-date time {
    font-family: 'Druk Text', sans-serif;
    font-size: 32px;
    color: #FFFFFF;
    font-weight: 900;
    text-transform: uppercase;
}

.card-title {
    font-family: 'Druk Text', sans-serif;
    font-weight: 900;
    font-size: 32px;
    color: #FFFFFF;
    text-align: center;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0;
}

.show-more-container {
    text-align: center;
    padding-top: 40px;
    position: relative;
    margin-bottom: 0;
}

.show-more-container::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: #000000;
    z-index: 1;
}

.show-more-btn {
    background: #000000;
    color: #FFFFFF;
    border: none;
    padding: 0px 40px;
    font-family: 'Druk Text', sans-serif;
    font-weight: 900;
    font-size: 32px;
    font-style: italic;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    display: inline-block;
}

.show-more-btn:hover {
    background: #D40032;
}

.show-more-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 1200px) {
    .collaborations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .collaborations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .section-title {
        font-size: 64px;
    }
    
    .colaboraciones-title {
        font-size: 64px;
    }
    
    .hero-subtitle {
        font-size: 48px;
    }
}

@media (max-width: 480px) {
    .collaborations-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 48px;
    }
    
    .colaboraciones-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 36px;
    }
}
