.creditos-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.creditos-header {
    text-align: center;
    margin-bottom: 20px;
}

.creditos-header h2 {
    font-size: 2.5rem;
    color: #18516b;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.creditos-header h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 3px;
    background: #00a4a6;
    border-radius: 3px;
}

.creditos-content {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: stretch;
}

.creditos-image {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #346b87 10%, #00a4a6 100%);
    min-height: 600px;
}

.creditos-image-content {
    padding: 40px;
    color: white;
    text-align: center;
}

.creditos-image-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.creditos-image-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.creditos-cards-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: relative;
    max-height: 600px;
    overflow-y: auto;
    padding-right: 10px;
}

/* Scrollbar personalizado */
.creditos-cards-container::-webkit-scrollbar {
    width: 6px;
}

.creditos-cards-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.creditos-cards-container::-webkit-scrollbar-thumb {
    background: #00a4a6;
    border-radius: 10px;
}

.creditos-cards-container::-webkit-scrollbar-thumb:hover {
    background: #008688;
}

.creditos-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #00a4a6;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.creditos-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.creditos-card.active {
    border-left: 4px solid #18516b;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.creditos-icon {
    width: 50px;
    height: 50px;
    background: #18516b;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    color: white;
    flex-shrink: 0;
}

.creditos-card.active .creditos-icon {
    background: #00a4a6;
}

.card-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #18516b;
}

.creditos-card.active .card-header h3 {
    color: #00a4a6;
}

.creditos-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Indicadores de progreso */
.progress-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.progress-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.progress-dot.active {
    background: #00a4a6;
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 992px) {
    .creditos-content {
        flex-direction: column;
    }

    .creditos-image {
        min-height: 300px;
    }

    .creditos-cards-container {
        max-height: none;
        overflow-y: visible;
    }
}

@media (max-width: 768px) {
    .creditos-section {
        margin: 40px auto;
        gap: 40px;
    }

    .creditos-header h2 {
        font-size: 2rem;
    }

    .creditos-card {
        padding: 20px;
    }

    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}